/* ==========================================================
   AGILA WORKSPACE
   Design System
========================================================== */

:root{

    --primary:#0057FF;
    --primary-dark:#0039A6;

    --secondary:#2563EB;

    --accent:#14B8A6;

    --success:#16C784;

    --warning:#F59E0B;

    --danger:#EF4444;

    --dark:#071626;

    --dark-2:#0D223C;

    --light:#F8FAFC;

    --gray:#94A3B8;

    --white:#FFFFFF;

    --glass:rgba(255,255,255,.08);

    --glass-border:rgba(255,255,255,.15);

    --radius:24px;

    --radius-sm:18px;

    --shadow:

        0 40px 80px rgba(0,0,0,.12);

    --transition:.35s cubic-bezier(.4,0,.2,1);

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--light);

    color:#1E293B;

    overflow-x:hidden;

}

section{

    position:relative;

    padding:120px 0;

}

.container{

    position:relative;

    z-index:2;

}

img{

    max-width:100%;

}

a{

    text-decoration:none;

}

/* ==========================================================
BACKGROUND
========================================================== */

.background{

    position:fixed;

    inset:0;

    overflow:hidden;

    z-index:1;

    background:

    radial-gradient(circle at top left,#0E5BFF 0%,transparent 40%),

    radial-gradient(circle at bottom right,#00C9A7 0%,transparent 30%),

    linear-gradient(180deg,#081426,#081426);

}

.hero,
.section,
.platform-section,
.pricing-section,
.academy-section,
.stats-section,
.testimonial-section,
.faq-section,
.cta-section,
footer{

    position:relative;
    z-index:2;

}

.blob{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:.35;

    animation:blobMove 18s infinite alternate;

}

.blob1{

    width:500px;

    height:500px;

    background:#0B63FF;

    top:-150px;

    left:-100px;

}

.blob2{

    width:450px;

    height:450px;

    background:#00D0B5;

    right:-120px;

    bottom:-120px;

}

.blob3{

    width:300px;

    height:300px;

    background:#4F46E5;

    left:45%;

    top:35%;

}

/* ==========================================================
NAVBAR
========================================================== */

.navbar{

    transition:.4s;

    padding:22px 0;

    background:transparent;

}

.navbar.scrolled{

    background:rgba(8,20,38,.80);

    backdrop-filter:blur(18px);

    box-shadow:

    0 10px 40px rgba(0,0,0,.18);

}

.navbar-brand{

    display:flex;

    align-items:center;

    gap:15px;

    color:white;

    font-size:1.35rem;

    font-weight:800;

}

.navbar-brand span{

    display:flex;

    flex-direction:column;

}

.navbar-brand small{

    font-size:.65rem;

    letter-spacing:2px;

    color:#9FB7E9;

    text-transform:uppercase;

}

.logo{

    width:48px;

}

.nav-link{

    color:white;

    margin-left:28px;

    font-weight:600;

    opacity:.85;

    transition:var(--transition);

}

.nav-link:hover{

    opacity:1;

    color:white;

}

.nav-buttons{

    display:flex;

    gap:14px;

    margin-left:30px;

}

/* ==========================================================
BUTTONS
========================================================== */

.btn-primary-custom{

    background:

    linear-gradient(

    135deg,

    var(--primary),

    var(--secondary));

    color:white;

    border:none;

    padding:15px 34px;

    border-radius:50px;

    font-weight:700;

    transition:var(--transition);

    box-shadow:

    0 20px 45px rgba(0,87,255,.35);

}

.btn-primary-custom:hover{

    transform:translateY(-5px);

    box-shadow:

    0 30px 60px rgba(0,87,255,.55);

}

.btn-secondary-custom{

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

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    color:white;

    border-radius:50px;

    padding:15px 34px;

    transition:var(--transition);

}

.btn-secondary-custom:hover{

    background:white;

    color:#081426;

}

.btn-login{

    color:white;

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

    padding:13px 24px;

    border-radius:50px;

}

.btn-login:hover{

    background:white;

    color:#081426;

}

/*==========================================================
HERO
==========================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    color:white;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at 20% 20%,
    rgba(0,87,255,.28),
    transparent 45%),

    radial-gradient(circle at 80% 80%,
    rgba(20,184,166,.18),
    transparent 35%),

    radial-gradient(circle at 50% 10%,
    rgba(255,255,255,.05),
    transparent 60%);

    pointer-events:none;

}

.hero-label{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.08);

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

    backdrop-filter:blur(15px);

    margin-bottom:28px;

    letter-spacing:1px;

    font-size:.85rem;

    font-weight:600;

}

.hero h1{

    font-size:clamp(3.8rem,7vw,6rem);

    line-height:1.02;

    font-weight:900;

    letter-spacing:-3px;

    margin-bottom:28px;

}

.hero h1 span{

    background:linear-gradient(
        90deg,
        #FFFFFF,
        #7DD3FC,
        #14B8A6);

    background-clip:text;          /* Standard */

    -webkit-background-clip:text;  /* Chrome, Edge, Safari */

    color:transparent;

    -webkit-text-fill-color:transparent;

}

.hero p{

    font-size:1.2rem;

    line-height:1.9;

    max-width:620px;

    color:#C7D8F8;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-stats{

    display:flex;

    gap:50px;

    margin-top:65px;

    flex-wrap:wrap;

}

.hero-stats h2{

    font-size:2.4rem;

    font-weight:800;

    color:white;

}

.hero-stats small{

    color:#A9BDD9;

    text-transform:uppercase;

    letter-spacing:1px;

}

/*==========================================================
DASHBOARD
==========================================================*/

.dashboard{

    position:relative;

    padding:35px;

    border-radius:32px;

    background:

    rgba(255,255,255,.08);

    backdrop-filter:blur(30px);

    border:

    1px solid rgba(255,255,255,.10);

    box-shadow:

    0 60px 120px rgba(0,0,0,.35);

    overflow:hidden;

    animation:

    floating 7s ease-in-out infinite;

}

.dashboard::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    145deg,

    rgba(255,255,255,.12),

    transparent 60%);

    pointer-events:none;

}

.dashboard-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

}

.dashboard-title{

    color:white;

    font-size:1.15rem;

    font-weight:700;

    letter-spacing:2px;

}

.dashboard-status{

    background:#16C784;

    color:white;

    padding:8px 16px;

    border-radius:30px;

    font-size:.8rem;

    font-weight:700;

}

.dashboard-body{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.dashboard-card{

    display:flex;

    align-items:center;

    gap:18px;

    padding:20px;

    border-radius:18px;

    transition:.35s;

    background:

    rgba(255,255,255,.05);

    border:

    1px solid rgba(255,255,255,.08);

}

.dashboard-card:hover{

    transform:

    translateY(-6px)

    scale(1.02);

    background:

    rgba(255,255,255,.10);

}

.dashboard-card i{

    font-size:1.6rem;

}

.dashboard-card strong{

    display:block;

    color:white;

    font-weight:700;

}

.dashboard-card small{

    color:#C2D5F5;

}

.dashboard-card.success i{

    color:#16C784;

}

.dashboard-card.warning i{

    color:#F59E0B;

}

/*==========================================================
SCROLL INDICATOR
==========================================================*/

.scroll-indicator{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:35px;

    color:white;

    font-size:1.8rem;

    animation:

    bounce 2.5s infinite;

    opacity:.7;

}

/*==========================================================
SECTION TITLES
==========================================================*/

.section-title{

    max-width:760px;

    margin:auto;

    margin-bottom:80px;

}

.section-title span{

    display:inline-block;

    margin-bottom:18px;

    padding:8px 18px;

    border-radius:30px;

    background:#EEF4FF;

    color:var(--primary);

    font-size:.8rem;

    font-weight:700;

    letter-spacing:2px;

}

.section-title h2{

    font-size:clamp(2.6rem,5vw,4.5rem);

    font-weight:900;

    line-height:1.1;

    color:#081426;

    margin-bottom:20px;

    letter-spacing:-2px;

}

#services .section-title h2{
    color:white;
}

.section-title p{

    font-size:1.15rem;

    color:#64748B;

    line-height:1.9;

}

/*==========================================================
SERVICES
==========================================================*/

.services-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:28px;

}

.service-large{

    background:linear-gradient(145deg,#0B63FF,#0050D8);

    color:white;

    border-radius:32px;

    padding:45px;

    min-height:420px;

    position:relative;

    overflow:hidden;

    transition:all .45s ease;

    box-shadow:0 35px 70px rgba(0,87,255,.30);

}

.service-large::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    right:-80px;

    top:-80px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.service-large:hover{

    transform:translateY(-12px);

    box-shadow:0 60px 120px rgba(0,87,255,.45);

}

.service-card{

    background:white;

    border-radius:28px;

    padding:34px;

    transition:.35s;

    box-shadow:0 18px 45px rgba(15,23,42,.08);

    border:1px solid rgba(15,23,42,.05);

    position:relative;

    overflow:hidden;

}

.service-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        145deg,

        rgba(0,87,255,.05),

        transparent

    );

    opacity:0;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 70px rgba(15,23,42,.15);

}

.service-card:hover::after{

    opacity:1;

}

.service-wide{

    grid-column:span 2;

    background:#081426;

    color:white;

    border-radius:32px;

    padding:45px;

    position:relative;

    overflow:hidden;

}

.service-wide::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        radial-gradient(circle at right,

        rgba(20,184,166,.18),

        transparent 40%);

}

.service-icon{

    width:82px;

    height:82px;

    border-radius:22px;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

    backdrop-filter:blur(10px);

}

.service-icon i{

    font-size:2rem;

}

.service-large h3,

.service-wide h3{

    font-size:2rem;

    font-weight:800;

    margin-bottom:18px;

}

.service-card h4{

    font-size:1.45rem;

    margin:18px 0;

    font-weight:700;

}

.service-card p,

.service-large p,

.service-wide p{

    line-height:1.9;

    color:inherit;

    opacity:.92;

}

.service-large ul{

    margin-top:30px;

    padding-left:20px;

}

.service-large li{

    margin-bottom:10px;

}

.service-large a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:30px;

    color:white;

    font-weight:700;

}

.tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:28px;

}

.tags span{

    background:rgba(255,255,255,.08);

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

    padding:10px 18px;

    border-radius:999px;

    font-size:.85rem;

}

.service-number{

    font-size:8rem;

    font-weight:900;

    text-align:right;

    color:rgba(255,255,255,.05);

}

.gradient{

    background:

    linear-gradient(

        135deg,

        #0057FF,

        #14B8A6

    );

    color:white;

}

.coming{

    position:absolute;

    top:22px;

    right:22px;

    padding:6px 12px;

    border-radius:999px;

    background:white;

    color:#0057FF;

    font-size:.7rem;

    font-weight:700;

}

/*==========================================================
PLATFORM
==========================================================*/

.platform-section{

    background:#081426;

    color:white;

}

.platform-section h2{

    font-size:3.5rem;

    font-weight:900;

    margin-bottom:25px;

}

.platform-section p{

    color:#AFC3DD;

    line-height:2;

    margin-bottom:40px;

}

.platform-list{

    display:grid;

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

    gap:20px;

}

.platform-list div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.platform-list i{

    color:#16C784;

}

.mockup-window{

    background:white;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 50px 100px rgba(0,0,0,.30);

}

.window-header{

    display:flex;

    gap:10px;

    padding:18px;

    background:#EEF2F7;

}

.window-header span{

    width:12px;

    height:12px;

    border-radius:50%;

}

.window-header span:nth-child(1){

    background:#FF5F57;

}

.window-header span:nth-child(2){

    background:#FEBB2E;

}

.window-header span:nth-child(3){

    background:#28C840;

}

.window-body{

    padding:35px;

}

.progress-item{

    margin-bottom:28px;

}

.progress-item label{

    display:block;

    margin-bottom:10px;

    font-weight:700;

}

.progress{

    height:12px;

    border-radius:999px;

    overflow:hidden;

}

/*==========================================================
PRICING
==========================================================*/

.pricing-section{

    background:#F6F9FD;

}

.pricing-grid{

    display:grid;

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

    gap:35px;

}

.price-card{

    background:white;

    border-radius:32px;

    padding:45px;

    box-shadow:0 20px 55px rgba(15,23,42,.08);

    transition:.4s;

    position:relative;

}

.price-card:hover{

    transform:translateY(-12px);

}

.price-card.featured{

    background:linear-gradient(

        180deg,

        #0057FF,

        #003CB8

    );

    color:white;

    transform:scale(1.05);

    box-shadow:0 50px 120px rgba(0,87,255,.40);

}

.price-card.featured p,

.price-card.featured li,

.price-card.featured small{

    color:rgba(255,255,255,.85);

}

.popular{

    position:absolute;

    top:-14px;

    left:50%;

    transform:translateX(-50%);

    background:#14B8A6;

    color:white;

    padding:10px 22px;

    border-radius:999px;

    font-size:.75rem;

    font-weight:700;

    letter-spacing:1px;

}

.plan-icon{

    width:78px;

    height:78px;

    border-radius:22px;

    background:#EEF4FF;

    color:#0057FF;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    margin-bottom:30px;

}

.featured .plan-icon{

    background:rgba(255,255,255,.12);

    color:white;

}

.price{

    font-size:3rem;

    font-weight:900;

    margin:20px 0;

}

.price small{

    font-size:1rem;

    color:#64748B;

}

.price-card ul{

    list-style:none;

    margin:35px 0;

    padding:0;

}

.price-card li{

    margin-bottom:16px;

    display:flex;

    gap:12px;

    align-items:center;

}

.price-card i{

    color:#16C784;

}

/*==========================================================
ACADEMY
==========================================================*/

.academy-section{

    background:
    linear-gradient(
        135deg,
        #081426,
        #0B2E6E);

    color:white;

    overflow:hidden;

}

.academy-section::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-250px;

    top:-250px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

}

.academy-section span{

    color:#7DD3FC;

    font-weight:700;

    letter-spacing:2px;

}

.academy-section h2{

    font-size:4rem;

    font-weight:900;

    margin:20px 0;

}

.academy-section p{

    color:#BFD4F3;

    line-height:2;

    margin-bottom:40px;

}

.academy-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.academy-preview{

    display:grid;

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

    gap:24px;

}

.video-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

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

    border-radius:24px;

    padding:35px;

    transition:.35s;

}

.video-card:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.12);

}

.video-card i{

    font-size:3rem;

    color:#14B8A6;

    margin-bottom:20px;

}

/*==========================================================
STATISTICS
==========================================================*/

.stats-section{

    background:white;

}

.counter{

    text-align:center;

    padding:30px;

}

.counter h2{

    font-size:4rem;

    font-weight:900;

    color:#0057FF;

}

.counter p{

    color:#64748B;

    text-transform:uppercase;

    letter-spacing:1px;

    font-size:.85rem;

}

/*==========================================================
TESTIMONIALS
==========================================================*/

.testimonial-section{

    background:#F8FAFC;

}

.testimonial-card{

    background:white;

    border-radius:30px;

    padding:40px;

    box-shadow:0 25px 60px rgba(15,23,42,.08);

    transition:.35s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.stars{

    color:#F59E0B;

    font-size:1.2rem;

    margin-bottom:25px;

}

.testimonial-card p{

    line-height:2;

    color:#475569;

    margin-bottom:30px;

}

.client{

    display:flex;

    align-items:center;

    gap:15px;

}

.client img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

}

.client strong{

    display:block;

}

.client small{

    color:#94A3B8;

}

/*==========================================================
FAQ
==========================================================*/

.faq-section{

    background:white;

}

.accordion-item{

    border:none;

    border-radius:20px!important;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:0 10px 35px rgba(15,23,42,.06);

}

.accordion-button{

    padding:25px;

    font-weight:700;

    background:white;

}

.accordion-button:not(.collapsed){

    background:#EEF4FF;

    color:#0057FF;

    box-shadow:none;

}

.accordion-body{

    padding:25px;

    line-height:2;

}

/*==========================================================
CTA
==========================================================*/

.cta-section{

    background:#081426;

}

.cta-card{

    background:
    linear-gradient(
        135deg,
        #0057FF,
        #14B8A6);

    border-radius:40px;

    padding:90px;

    text-align:center;

    color:white;

    position:relative;

    overflow:hidden;

}

.cta-card::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    right:-120px;

    top:-120px;

}

.cta-card span{

    letter-spacing:2px;

    font-size:.85rem;

}

.cta-card h2{

    font-size:4rem;

    font-weight:900;

    margin:25px 0;

}

.cta-card p{

    max-width:700px;

    margin:auto;

    color:rgba(255,255,255,.90);

    line-height:2;

}

.cta-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*==========================================================
FOOTER
==========================================================*/

footer{

    background:#050D18;

    color:white;

    padding:100px 0 40px;

}

.footer-logo{

    width:70px;

    margin-bottom:20px;

}

footer h3{

    font-weight:800;

}

footer h5{

    margin-bottom:25px;

    font-weight:700;

}

footer ul{

    list-style:none;

    padding:0;

}

footer li{

    margin-bottom:14px;

    color:#AFC3DD;

    transition:.3s;

    cursor:pointer;

}

footer li:hover{

    color:white;

    transform:translateX(6px);

}

.social{

    display:flex;

    gap:18px;

    margin-top:25px;

}

.social i{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#0D223C;

    transition:.35s;

    cursor:pointer;

}

.social i:hover{

    background:#0057FF;

    transform:translateY(-5px);

}

footer hr{

    margin:60px 0 25px;

    border-color:rgba(255,255,255,.08);

}

.copyright{

    text-align:center;

    color:#7C93B2;

}

/*==========================================================
ANIMATIONS
==========================================================*/

@keyframes floating{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0px);

    }

}

@keyframes blobMove{

    from{

        transform:translate(0,0) scale(1);

    }

    to{

        transform:translate(80px,-40px) scale(1.2);

    }

}

@keyframes bounce{

    0%,100%{

        transform:translate(-50%,0);

    }

    50%{

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

    }

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:992px){

.services-grid{

grid-template-columns:1fr;

}

.service-wide{

grid-column:auto;

}

.pricing-grid{

grid-template-columns:1fr;

}

.platform-list{

grid-template-columns:1fr;

}

.hero{

padding-top:120px;

text-align:center;

}

.hero-buttons,

.hero-stats,

.academy-buttons,

.cta-buttons{

justify-content:center;

}

.hero h1{

font-size:3.2rem;

}

.platform-section h2,

.academy-section h2,

.cta-card h2{

font-size:2.5rem;

}

.academy-preview{

grid-template-columns:1fr;

}

.cta-card{

padding:60px 30px;

}

}

@media(max-width:576px){

.hero-stats{

gap:25px;

justify-content:center;

}

.section{

padding:80px 0;

}

.counter h2{

font-size:2.8rem;

}

}

/*==========================================================
SCROLL PROGRESS
==========================================================*/

.scroll-progress{

position:fixed;

top:0;

left:0;

height:4px;

width:0;

z-index:999999;

background:

linear-gradient(

90deg,

#0057FF,

#14B8A6);

}

/*==========================================================
BUTTON RIPPLE
==========================================================*/

.btn{

position:relative;

overflow:hidden;

}

.ripple{

position:absolute;

border-radius:50%;

background:rgba(255,255,255,.35);

transform:scale(0);

animation:ripple .7s linear;

pointer-events:none;

}

@keyframes ripple{

to{

transform:scale(6);

opacity:0;

}

}

.mouse-light{

    position:fixed;

    left:0;
    top:0;

    width:500px;
    height:500px;

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

    pointer-events:none;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(0,87,255,.18) 0%,
        rgba(20,184,166,.10) 35%,
        transparent 75%
    );

    filter:blur(70px);

    z-index:0;

    transition:
        left .08s linear,
        top .08s linear;

}