/*====================================================

HERO SECTION

====================================================*/

.hero{

    position:relative;

    overflow:hidden;

    padding:170px 0 120px;

    background:
        linear-gradient(180deg,#f8fbff 0%,#eef5ff 100%);

}

/* Grid Background */

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(37,99,235,.05) 1px,transparent 1px),

    linear-gradient(90deg,rgba(37,99,235,.05) 1px,transparent 1px);

    background-size:64px 64px;

    pointer-events:none;

}

/* Blur Glow */

.hero::after{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-250px;

    top:-120px;

    background:radial-gradient(circle,#dbeafe 0%,transparent 70%);

    pointer-events:none;

}

.hero-container{

    width:min(92%,1320px);

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    position:relative;

    z-index:2;

}

/*====================================

LEFT

====================================*/

.hero-left{

    max-width:620px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 18px;

    border-radius:50px;

    background:#eef4ff;

    border:1px solid #c7d2fe;

    color:#2563eb;

    font-size:12px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:30px;

}

.hero h1{

    font-size:68px;

    line-height:1.08;

    font-weight:800;

    color:#0f172a;

    margin-bottom:24px;

}

.hero h1 span{

    display:block;

    background:linear-gradient(90deg,#2563eb,#7c3aed);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero p{

    font-size:18px;

    line-height:1.9;

    color:#64748b;

    margin-bottom:30px;

}

/*====================================

TECH TAGS

====================================*/

.hero-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:40px;

}

.hero-tags span{

    padding:10px 18px;

    background:#fff;

    border-radius:30px;

    border:1px solid #edf2f7;

    font-size:14px;

    font-weight:600;

    color:#475569;

    transition:.3s;

}

.hero-tags span:hover{

    background:#2563eb;

    color:#fff;

}

/*====================================

BUTTONS

====================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:35px;

}

.hero-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 28px;

    border-radius:14px;

    font-weight:600;

    transition:.35s;

}

.hero-btn.primary{

    background:linear-gradient(135deg,#2563eb,#7c3aed);

    color:#fff;

    box-shadow:0 20px 35px rgba(37,99,235,.25);

}

.hero-btn.primary:hover{

    transform:translateY(-4px);

}

.hero-btn.secondary{

    background:#fff;

    color:#2563eb;

    border:2px solid #2563eb;

}

.hero-btn.secondary:hover{

    background:#2563eb;

    color:#fff;

}

/*====================================

FEATURES

====================================*/

.hero-features{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:8px;

    color:#475569;

    font-size:15px;

}

.hero-features i{

    color:#10b981;

}

/*====================================

STATS

====================================*/

.hero-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.hero-stats h2{

    font-size:34px;

    color:#2563eb;

    margin-bottom:8px;

}

.hero-stats span{

    color:#64748b;

    font-size:14px;

}

/*====================================

RIGHT

====================================*/

.hero-right{

    position:relative;

    height:700px;

}

/* Platform */

.platform{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

}

.platform-circle{

    width:220px;

    height:220px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563eb,#7c3aed);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:#fff;

    box-shadow:0 40px 80px rgba(37,99,235,.28);

}

.platform-circle i{

    font-size:52px;

    margin-bottom:12px;

}

.platform-circle h3{

    margin:0;

    font-size:26px;

}

.platform-circle p{

    margin-top:6px;

    color:#fff;

}
/*====================================================
ORBIT RINGS
====================================================*/

.ring{

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    border:2px dashed rgba(37,99,235,.08);

}

.ring1{

    width:320px;
    height:320px;

}

.ring2{

    width:430px;
    height:430px;

}

.ring3{

    width:540px;
    height:540px;

}

/* Glow */

.platform::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    background:radial-gradient(circle,
        rgba(99,102,241,.22),
        transparent 70%);

    z-index:-1;

}
/*====================================================
FLOATING CARDS
====================================================*/

.floating-card{

    position:absolute;

    background:#fff;

    border-radius:18px;

    padding:16px 20px;

    display:flex;

    align-items:center;

    gap:14px;

    min-width:200px;

    box-shadow:
    0 18px 45px rgba(15,23,42,.08);

    border:1px solid #edf2f7;

    transition:.35s;

}

.floating-card:hover{

    transform:translateY(-6px);

}

.floating-card i{

    width:52px;

    height:52px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:16px;

    font-size:24px;

}

.floating-card small{

    display:block;

    color:#64748b;

    font-size:12px;

}

.floating-card strong{

    display:block;

    margin-top:4px;

    font-size:16px;

    color:#0f172a;

}
.card-web i{

background:#eef4ff;
color:#2563eb;

}

.card-ai i{

background:#f3e8ff;
color:#7c3aed;

}

.card-growth i{

background:#dcfce7;
color:#16a34a;

}

.card-commerce i{

background:#ecfccb;
color:#65a30d;

}

.card-cloud i{

background:#ecfeff;
color:#0891b2;

}

.card-rating i{

background:#dbeafe;
color:#2563eb;

}
/*====================================================
CARD POSITIONS
====================================================*/

.card-web{

top:70px;
right:70px;

}

.card-ai{

top:180px;
right:-10px;

}

.card-growth{

left:30px;
top:260px;

}

.card-commerce{

left:40px;
top:110px;

}

.card-cloud{

left:90px;
bottom:80px;

}

.card-rating{

right:40px;
bottom:70px;

}
.hero-wave{

position:absolute;

left:0;

bottom:0;

width:100%;

line-height:0;

}

.hero-wave svg{

display:block;

width:100%;

height:90px;

}