/*========================================
AI HERO
========================================*/

.ai-hero{

    height:620px;

    background:
            url("../images/ai-banner.jpg")
            center center/cover no-repeat;

    position:relative;

    overflow:hidden;
}

.ai-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
            linear-gradient(
                    135deg,
                    rgba(2,19,45,.92),
                    rgba(5,35,80,.82),
                    rgba(2,19,45,.95));
}

.hero-overlay{

    width:100%;
    height:100%;

    display:flex;

    align-items:center;

    position:relative;

    z-index:2;
}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(37,99,235,.18);

    border:1px solid rgba(78,161,255,.25);

    color:#4ea1ff;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:30px;
}

.hero-badge i{

    font-size:18px;
}

.ai-hero h1{

    color:#fff;

    font-size:68px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;
}

.ai-hero p{

    color:#d6e3ff;

    font-size:20px;

    line-height:1.9;

    max-width:700px;

    margin-bottom:45px;
}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

.hero-buttons a{

    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;
}

.primary-btn{

    color:#fff;

    background:
            linear-gradient(
                    135deg,
                    #2563eb,
                    #06b6d4);

    box-shadow:
            0 18px 35px rgba(37,99,235,.35);
}

.primary-btn:hover{

    color:#fff;

    transform:translateY(-5px);
}

.secondary-btn{

    color:#fff;

    border:1px solid rgba(255,255,255,.15);

    background:
            rgba(255,255,255,.05);
}

.secondary-btn:hover{

    color:#fff;

    background:
            rgba(255,255,255,.08);

    transform:translateY(-5px);
}

/*========================================
COMMON SECTION
========================================*/

.ai-features{

    padding:110px 0;

    background:#02132d;
}

.section-title{

    text-align:center;

    margin-bottom:70px;
}

.section-title span{

    display:inline-block;

    padding:8px 22px;

    border-radius:40px;

    color:#4ea1ff;

    background:rgba(37,99,235,.15);

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;
}

.section-title h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

    margin-bottom:18px;
}

.section-title p{

    color:#c8d7f5;

    font-size:18px;

    line-height:1.9;

    max-width:760px;

    margin:auto;
}

/*========================================
AI GRID
========================================*/

.ai-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(330px,1fr));

    gap:30px;
}

/*========================================
AI CARD
========================================*/

.ai-card{

    padding:40px 35px;

    border-radius:28px;

    background:
            rgba(255,255,255,.05);

    border:
            1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.35s;

    position:relative;

    overflow:hidden;
}

.ai-card::before{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:#2563eb;

    filter:blur(120px);

    opacity:.08;

    top:-80px;
    right:-80px;

    transition:.35s;
}

.ai-card:hover{

    transform:translateY(-10px);

    border-color:#2563eb;

    box-shadow:
            0 25px 45px rgba(0,0,0,.35);
}

.ai-card:hover::before{

    opacity:.18;
}

.ai-card .icon{

    width:78px;
    height:78px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    margin-bottom:28px;

    background:
            linear-gradient(
                    135deg,
                    #2563eb,
                    #06b6d4);

    color:#fff;

    font-size:34px;

    box-shadow:
            0 15px 30px rgba(37,99,235,.30);
}

.ai-card h3{

    color:#fff;

    font-size:28px;

    font-weight:700;

    margin-bottom:18px;
}

.ai-card p{

    color:#c8d7f5;

    font-size:16px;

    line-height:1.9;
}
/*========================================
AI DASHBOARD
========================================*/

.ai-dashboard{

    padding:110px 0;

    background:#031633;
}

.dashboard-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;
}

.dashboard-card{

    padding:35px;

    text-align:center;

    border-radius:26px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.35s;
}

.dashboard-card:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.dashboard-card h4{

    color:#8bbcff;

    margin-bottom:25px;

    font-size:18px;
}

.dashboard-card h2{

    color:#fff;

    font-size:42px;

    margin-bottom:15px;
}

.dashboard-card p{

    color:#c8d7f5;

    line-height:1.8;
}

.progress-circle{

    width:130px;

    height:130px;

    margin:20px auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    font-weight:700;

    color:#fff;

    border:10px solid #2563eb;

    box-shadow:0 0 25px rgba(37,99,235,.35);
}

/*========================================
PLAYER COMPARISON
========================================*/

.player-comparison{

    padding:110px 0;

    background:#02132d;
}

.comparison-card{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:50px;

    align-items:center;

    padding:60px;

    border-radius:30px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);
}

.comparison-left h3{

    color:#fff;

    font-size:40px;

    margin-bottom:20px;
}

.comparison-left p{

    color:#c8d7f5;

    margin-bottom:35px;
}

.bar{

    margin-bottom:22px;
}

.bar span{

    color:#fff;

    display:block;

    margin-bottom:10px;
}

.progress{

    height:10px;

    border-radius:30px;

    overflow:hidden;

    background:rgba(255,255,255,.08);
}

.fill{

    height:100%;

    border-radius:30px;

    background:linear-gradient(90deg,#2563eb,#06b6d4);
}

.player-score{

    width:250px;

    height:250px;

    margin:auto;

    border-radius:50%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#2563eb,#06b6d4);

    color:#fff;

    box-shadow:0 25px 50px rgba(37,99,235,.35);
}

.player-score h1{

    font-size:80px;

    margin-bottom:10px;
}

.player-score span{

    font-size:18px;
}

/*========================================
TIMELINE
========================================*/

.ai-timeline{

    padding:110px 0;

    background:#031633;
}

.timeline{

    max-width:900px;

    margin:auto;
}

.timeline-item{

    display:flex;

    gap:30px;

    margin-bottom:45px;

    align-items:flex-start;
}

.number{

    width:70px;

    height:70px;

    min-width:70px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    font-weight:700;

    color:#fff;

    background:linear-gradient(135deg,#2563eb,#06b6d4);
}

.timeline-item h3{

    color:#fff;

    margin-bottom:10px;

    font-size:26px;
}

.timeline-item p{

    color:#c8d7f5;

    line-height:1.8;
}

/*========================================
CTA
========================================*/

.ai-cta{

    padding:120px 0;

    background:#02132d;
}

.cta-card{

    padding:70px;

    text-align:center;

    border-radius:32px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);
}

.cta-card h2{

    color:#fff;

    font-size:54px;

    margin-bottom:20px;
}

.cta-card p{

    color:#c8d7f5;

    max-width:700px;

    margin:0 auto 40px;

    line-height:1.9;
}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

/*========================================
RESPONSIVE
========================================*/

@media(max-width:992px){

    .comparison-card{

        grid-template-columns:1fr;

        text-align:center;
    }

    .player-score{

        width:200px;

        height:200px;
    }

    .player-score h1{

        font-size:60px;
    }

    .ai-hero{

        height:500px;
    }

    .ai-hero h1{

        font-size:50px;
    }

}

@media(max-width:768px){

    .ai-hero{

        height:450px;
    }

    .ai-hero h1{

        font-size:38px;
    }

    .section-title h2{

        font-size:34px;
    }

    .comparison-card{

        padding:35px 25px;
    }

    .timeline-item{

        flex-direction:column;

        text-align:center;

        align-items:center;
    }

    .dashboard-card{

        padding:28px;
    }

    .cta-card{

        padding:45px 25px;
    }

    .cta-card h2{

        font-size:36px;
    }

}

@media(max-width:576px){

    .hero-buttons{

        flex-direction:column;
    }

    .hero-buttons a{

        width:100%;

        text-align:center;
    }

    .player-score{

        width:170px;

        height:170px;
    }

    .player-score h1{

        font-size:48px;
    }

}