/* ===================================
GLOBAL
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --primary:#081b8f;
    --secondary:#1354e8;
    --accent:#ffd400;
    --white:#ffffff;
    --light:#f6f8ff;
    --text:#1d2555;

}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    color:var(--text);
    background:#fff;

}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

section{
    padding:100px 0;
}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title span{

    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#eef3ff;
    color:var(--secondary);
    font-weight:600;
    margin-bottom:15px;

}

.section-title h2{

    font-size:48px;
    font-weight:800;
    line-height:1.2;

}

.light h2{
    color:#fff;
}

/* ===================================
NAVBAR
=================================== */

.custom-navbar{

    padding:18px 0;
    background:rgba(5,17,80,.92);
    backdrop-filter:blur(20px);
    transition:.3s;
    z-index:9999;

}

.navbar-brand img{

    height:45px;

}

.nav-link{

    color:#fff !important;
    margin:0 12px;
    font-weight:500;

}

.btn-trial{

    background:var(--accent);
    color:#000;
    padding:12px 24px;
    border-radius:50px;
    font-weight:700;

}

.btn-trial:hover{

    background:#ffe24a;

}

/* ===================================
HERO
=================================== */

.hero-section{

    min-height:100vh;
    display:flex;
    align-items:center;

    background:
    linear-gradient(
    135deg,
    #081b8f 0%,
    #1457eb 100%
    );

    position:relative;
    overflow:hidden;

}

.hero-section::before{

    content:'';
    width:700px;
    height:700px;

    position:absolute;
    right:-250px;
    top:-150px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

}

.hero-content{

    color:#fff;
    position:relative;
    z-index:2;

}

.hero-badge{

    display:inline-block;

    padding:10px 20px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.2);

    border-radius:50px;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:72px;
    font-weight:800;
    line-height:1.05;

}

.hero-content h1 span{

    display:block;
    color:var(--accent);

}

.hero-content p{

    font-size:18px;
    opacity:.9;

    margin-top:25px;
    margin-bottom:35px;

    max-width:550px;

}

.hero-buttons{

    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;

}

.btn-yellow{

    background:var(--accent);

    color:#000;

    padding:15px 28px;

    border-radius:50px;

    font-weight:700;

}

.hero-buttons img{

    height:52px;

}

.learners{

    display:flex;
    align-items:center;
    gap:15px;

    margin-top:40px;

}

.learners img{

    width:120px;

}

.learners strong{

    display:block;
    color:#fff;

}

.learners span{

    color:#d9e4ff;
    font-size:14px;

}

/* ===================================
PHONE MOCKUP
=================================== */

.hero-phone{

    position:relative;
    text-align:center;

}

.hero-phone img{

    width:420px;
    position:relative;
    z-index:2;

    animation:floatPhone 4s ease-in-out infinite;

}

.ai-ring{

    width:300px;
    height:300px;

    position:absolute;
    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(255,212,0,.35),
    transparent 70%
    );

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    font-weight:700;
    font-size:24px;

}

@keyframes floatPhone{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}

/* ===================================
FEATURES
=================================== */

.features-section{

    background:#fff;

}

.feature-card{

    background:#fff;

    padding:35px;

    border-radius:25px;

    text-align:center;

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.feature-card:hover{

    transform:translateY(-12px);

}

.icon{

    width:75px;
    height:75px;

    margin:auto;
    margin-bottom:20px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    color:#fff;

}

.blue{
    background:#1457eb;
}

.purple{
    background:#7b4dff;
}

.green{
    background:#00b67a;
}

.orange{
    background:#ff8a00;
}

.feature-card h4{

    font-weight:700;
    margin-bottom:12px;

}

.feature-card p{

    color:#6b7280;

}

/* ===================================
HOW IT WORKS
=================================== */

.works-section{

    background:
    linear-gradient(
    135deg,
    #081b8f,
    #1457eb
    );

}

.works-box{

    background:rgba(255,255,255,.08);

    border-radius:35px;

    padding:70px;

    backdrop-filter:blur(10px);

}

.step-item{

    color:#fff;

}

.step-icon{

    width:90px;
    height:90px;

    margin:auto auto 20px;

    background:var(--accent);

    color:#000;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;

}

.step-item h3{

    font-size:42px;
    font-weight:800;

}

/* ===================================
GLOBAL
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --primary:#081b8f;
    --secondary:#1354e8;
    --accent:#ffd400;
    --white:#ffffff;
    --light:#f6f8ff;
    --text:#1d2555;

}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    color:var(--text);
    background:#fff;

}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

section{
    padding:100px 0;
}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title span{

    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#eef3ff;
    color:var(--secondary);
    font-weight:600;
    margin-bottom:15px;

}

.section-title h2{

    font-size:48px;
    font-weight:800;
    line-height:1.2;

}

.light h2{
    color:#fff;
}

/* ===================================
NAVBAR
=================================== */

.custom-navbar{

    padding:18px 0;
    background:rgba(5,17,80,.92);
    backdrop-filter:blur(20px);
    transition:.3s;
    z-index:9999;

}

.navbar-brand img{

    height:45px;

}

.nav-link{

    color:#fff !important;
    margin:0 12px;
    font-weight:500;

}

.btn-trial{

    background:var(--accent);
    color:#000;
    padding:12px 24px;
    border-radius:50px;
    font-weight:700;

}

.btn-trial:hover{

    background:#ffe24a;

}

/* ===================================
HERO
=================================== */

.hero-section{

    min-height:100vh;
    display:flex;
    align-items:center;

    background:
    linear-gradient(
    135deg,
    #081b8f 0%,
    #1457eb 100%
    );

    position:relative;
    overflow:hidden;

}

.hero-section::before{

    content:'';
    width:700px;
    height:700px;

    position:absolute;
    right:-250px;
    top:-150px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

}

.hero-content{

    color:#fff;
    position:relative;
    z-index:2;

}

.hero-badge{

    display:inline-block;

    padding:10px 20px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.2);

    border-radius:50px;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:72px;
    font-weight:800;
    line-height:1.05;

}

.hero-content h1 span{

    display:block;
    color:var(--accent);

}

.hero-content p{

    font-size:18px;
    opacity:.9;

    margin-top:25px;
    margin-bottom:35px;

    max-width:550px;

}

.hero-buttons{

    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;

}

.btn-yellow{

    background:var(--accent);

    color:#000;

    padding:15px 28px;

    border-radius:50px;

    font-weight:700;

}

.hero-buttons img{

    height:40px;

}

.learners{

    display:flex;
    align-items:center;
    gap:15px;

    margin-top:40px;

}

.learners img{

    width:120px;

}

.learners strong{

    display:block;
    color:#fff;

}

.learners span{

    color:#d9e4ff;
    font-size:14px;

}

/* ===================================
PHONE MOCKUP
=================================== */

.hero-phone{

    position:relative;
    text-align:center;

}

.hero-phone img{

    width:420px;
    position:relative;
    z-index:2;

    animation:floatPhone 4s ease-in-out infinite;

}

.ai-ring{

    width:300px;
    height:300px;

    position:absolute;
    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(255,212,0,.35),
    transparent 70%
    );

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    font-weight:700;
    font-size:24px;

}

@keyframes floatPhone{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}

/* ===================================
FEATURES
=================================== */

.features-section{

    background:#fff;

}

.feature-card{

    background:#fff;

    padding:35px;

    border-radius:25px;

    text-align:center;

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.feature-card:hover{

    transform:translateY(-12px);

}

.icon{

    width:75px;
    height:75px;

    margin:auto;
    margin-bottom:20px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    color:#fff;

}

.blue{
    background:#1457eb;
}

.purple{
    background:#7b4dff;
}

.green{
    background:#00b67a;
}

.orange{
    background:#ff8a00;
}

.feature-card h4{

    font-weight:700;
    margin-bottom:12px;

}

.feature-card p{

    color:#6b7280;

}

/* ===================================
HOW IT WORKS
=================================== */

.works-section{

    background:
    linear-gradient(
    135deg,
    #081b8f,
    #1457eb
    );

}

.works-box{

    background:rgba(255,255,255,.08);

    border-radius:35px;

    padding:70px;

    backdrop-filter:blur(10px);

}

.step-item{

    color:#fff;

}

.step-icon{

    width:90px;
    height:90px;

    margin:auto auto 20px;

    background:var(--accent);

    color:#000;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;

}

.step-item h3{

    font-size:42px;
    font-weight:800;

}
