/*=========================================
Hero
=========================================*/

/*=========================================
Global Layout
=========================================*/

:root{

    --container-width:1320px;

    --section-space:140px;

    --radius:24px;

    --primary:#0057D9;

    --secondary:#00BFA6;

    --dark:#0F172A;

    --text:#64748B;

}

*{

    box-sizing:border-box;

}

.container{

    width:100%;

    max-width:1320px;

    margin:0 auto;

    padding-left:32px;

    padding-right:32px;

}

.hero{

    position:relative;

    overflow:hidden;

    background:#081C3A;

    padding:180px 0 120px;

}

.hero-gradient{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(0,191,166,.18),
    transparent 30%),

    radial-gradient(circle at bottom left,
    rgba(0,87,217,.25),
    transparent 35%);

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-layout{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.hero-left h1{

    color:#fff;

    font-size:68px;

    line-height:1.05;

    margin:25px 0;

    font-weight:800;

}

.hero-left h1 span{

    color:#49C5FF;

}

.hero-left p{

    color:rgba(255,255,255,.82);

    font-size:18px;

    line-height:1.9;

    max-width:620px;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    padding:12px 22px;

    background:rgba(255,255,255,.08);

    color:#7FD6FF;

    border:1px solid rgba(255,255,255,.08);

    border-radius:40px;

    font-size:14px;

    letter-spacing:1px;

    font-weight:700;

}

.hero-actions{

    display:flex;

    gap:20px;

    margin:45px 0;

}

.btn-primary{

    padding:18px 34px;

    border-radius:50px;

    background:#0D6EFD;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-primary:hover{

    background:#0B5ED7;

    transform:translateY(-4px);

}

.btn-secondary{

    padding:18px 34px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.18);

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.btn-secondary:hover{

    background:#fff;

    color:#081C3A;

}

.hero-tags{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}

.hero-tags span{

    color:#fff;

    display:flex;

    gap:10px;

    align-items:center;

    font-size:15px;

}

.hero-tags i{

    color:#49C5FF;

}

.dashboard-window{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 35px 80px rgba(0,0,0,.30);

}

.window-header{

    height:55px;

    background:#0F172A;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 20px;

}

.window-header small{

    color:#fff;

    letter-spacing:.5px;

}

.window-dots{

    display:flex;

    gap:8px;

}

.window-dots span{

    width:12px;

    height:12px;

    border-radius:50%;

}

.window-dots span:nth-child(1){

    background:#EF4444;

}

.window-dots span:nth-child(2){

    background:#FACC15;

}

.window-dots span:nth-child(3){

    background:#22C55E;

}

.dashboard-window img{

    width:100%;

    display:block;

}

/* Responsive */

@media(max-width:992px){

.hero{

padding:140px 0 80px;

}

.hero-layout{

grid-template-columns:1fr;

}

.hero-left h1{

font-size:48px;

}

.hero-actions{

flex-direction:column;

}

}

/*=========================================
Overview
=========================================*/

.overview-section{

    padding:140px 0;

    background:#fff;

}

.overview-layout{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.image-card{

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 30px 80px rgba(15,23,42,.12);

}

.image-card img{

    width:100%;

    display:block;

}

.section-label{

    display:inline-flex;

    align-items:center;

    padding:10px 20px;

    border-radius:40px;

    background:#EEF5FF;

    color:#0D6EFD;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

}

.overview-content h2{

    font-size:52px;

    font-weight:800;

    line-height:1.15;

    color:#0F172A;

    margin:25px 0;

}

.overview-content>p{

    font-size:18px;

    color:#64748B;

    line-height:1.9;

    margin-bottom:45px;

}

.overview-list{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.overview-item{

    display:flex;

    gap:20px;

    padding:28px;

    border-radius:22px;

    background:#fff;

    border:1px solid #EDF2F7;

    transition:.35s;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.overview-item:hover{

    transform:translateX(10px);

    box-shadow:0 25px 60px rgba(15,23,42,.10);

}

.overview-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:linear-gradient(135deg,#0057D9,#00BFA6);

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.overview-icon i{

    color:#fff;

    font-size:30px;

}

.overview-item h4{

    font-size:22px;

    color:#0F172A;

    margin-bottom:8px;

}

.overview-item p{

    color:#64748B;

    line-height:1.8;

    margin:0;

}

@media(max-width:992px){

.overview-layout{

grid-template-columns:1fr;

gap:50px;

}

.overview-content h2{

font-size:40px;

}

}

/*=========================================
Features
=========================================*/

.features-section{

    padding:140px 0;

    background:#F7FAFC;

}

.features-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.features-header h2{

    font-size:50px;

    font-weight:800;

    color:#0F172A;

    margin:20px 0;

}

.features-header p{

    color:#64748B;

    font-size:18px;

    line-height:1.9;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.feature-card{

    background:#fff;

    padding:35px 30px;

    border-radius:22px;

    transition:.35s;

    border:1px solid #EDF2F7;

    box-shadow:0 15px 35px rgba(15,23,42,.05);

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(15,23,42,.10);

}

.feature-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:linear-gradient(135deg,#0057D9,#00BFA6);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.feature-icon i{

    font-size:30px;

    color:#fff;

}

.feature-card h3{

    font-size:22px;

    margin-bottom:15px;

    color:#0F172A;

}

.feature-card p{

    color:#64748B;

    line-height:1.8;

}

@media(max-width:1200px){

.features-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.features-grid{

grid-template-columns:1fr;

}

.features-header h2{

font-size:38px;

}

}

/*=========================================
Benefits
=========================================*/

.benefits-section{

    padding:140px 0;

    background:#ffffff;

}

.benefits-layout{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:start;

}

.benefits-left{

    position:sticky;

    top:120px;

}

.benefits-left h2{

    font-size:48px;

    line-height:1.15;

    margin:20px 0;

    color:#0F172A;

    font-weight:800;

}

.benefits-left p{

    color:#64748B;

    line-height:1.9;

    margin-bottom:40px;

}

.benefits-btn{

    display:inline-block;

    padding:18px 34px;

    background:#0057D9;

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.benefits-btn:hover{

    background:#0048B5;

}

.benefits-right{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.benefit-card{

    display:flex;

    gap:18px;

    padding:30px;

    background:#F8FAFC;

    border-radius:22px;

    transition:.35s;

    border:1px solid #EDF2F7;

}

.benefit-card:hover{

    transform:translateY(-8px);

    background:#fff;

    box-shadow:0 20px 50px rgba(15,23,42,.08);

}

.benefit-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:linear-gradient(135deg,#0057D9,#00BFA6);

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.benefit-icon i{

    color:#fff;

    font-size:30px;

}

.benefit-card h4{

    margin-bottom:10px;

    color:#0F172A;

    font-size:22px;

}

.benefit-card p{

    color:#64748B;

    line-height:1.8;

    margin:0;

}

@media(max-width:992px){

.benefits-layout{

grid-template-columns:1fr;

}

.benefits-left{

position:static;

}

.benefits-right{

grid-template-columns:1fr;

}

}

/*=========================================
Preview
=========================================*/

.preview-section{

    padding:140px 0;

    background:#F7FAFC;

}

.preview-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.preview-header h2{

    font-size:52px;

    font-weight:800;

    margin:20px 0;

    color:#0F172A;

}

.preview-header p{

    font-size:18px;

    color:#64748B;

    line-height:1.9;

}

.preview-layout{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:45px;

    align-items:start;

}

.dashboard-window{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 30px 80px rgba(15,23,42,.10);

}

.dashboard-top{

    height:60px;

    background:#0F172A;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 24px;

}

.dashboard-top small{

    color:#fff;

    letter-spacing:.5px;

}

.dashboard-dots{

    display:flex;

    gap:8px;

}

.dashboard-dots span{

    width:12px;

    height:12px;

    border-radius:50%;

}

.dashboard-dots span:nth-child(1){

    background:#EF4444;

}

.dashboard-dots span:nth-child(2){

    background:#FACC15;

}

.dashboard-dots span:nth-child(3){

    background:#22C55E;

}

.dashboard-window img{

    width:100%;

    display:block;

}

.dashboard-features{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.dashboard-card{

    display:flex;

    gap:18px;

    padding:28px;

    background:#fff;

    border-radius:22px;

    border:1px solid #EDF2F7;

    transition:.35s;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

}

.dashboard-card:hover{

    transform:translateX(8px);

    box-shadow:0 25px 60px rgba(15,23,42,.10);

}

.card-icon{

    width:65px;

    height:65px;

    border-radius:18px;

    background:linear-gradient(135deg,#0057D9,#00BFA6);

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.card-icon i{

    color:#fff;

    font-size:28px;

}

.dashboard-card h4{

    font-size:22px;

    color:#0F172A;

    margin-bottom:10px;

}

.dashboard-card p{

    margin:0;

    color:#64748B;

    line-height:1.8;

}

@media(max-width:992px){

.preview-layout{

grid-template-columns:1fr;

}

.preview-header h2{

font-size:40px;

}

}

/*=========================================
Workflow
=========================================*/

.workflow-section{

    padding:140px 0;

    background:#ffffff;

}

.workflow-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 80px;

}

.workflow-header h2{

    font-size:52px;

    font-weight:800;

    color:#0F172A;

    margin:20px 0;

}

.workflow-header p{

    color:#64748B;

    font-size:18px;

    line-height:1.9;

}

.workflow-process{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

.workflow-item{

    flex:1;

    background:#F8FAFC;

    border-radius:24px;

    padding:35px;

    text-align:center;

    transition:.35s;

    border:1px solid #EDF2F7;

}

.workflow-item:hover{

    transform:translateY(-10px);

    background:#fff;

    box-shadow:0 20px 50px rgba(15,23,42,.08);

}

.workflow-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:22px;

    background:linear-gradient(135deg,#0057D9,#00BFA6);

    display:flex;

    justify-content:center;

    align-items:center;

}

.workflow-icon i{

    color:#fff;

    font-size:38px;

}

.workflow-item h4{

    font-size:24px;

    margin-bottom:15px;

    color:#0F172A;

}

.workflow-item p{

    color:#64748B;

    line-height:1.8;

}

.workflow-arrow{

    font-size:34px;

    color:#0057D9;

    flex-shrink:0;

}

@media(max-width:992px){

.workflow-process{

flex-direction:column;

}

.workflow-arrow{

transform:rotate(90deg);

}

.workflow-header h2{

font-size:40px;

}

}

/*=========================================
Deployment
=========================================*/

.deployment-section{

    padding:140px 0;

    background:#081C3A;

    color:#fff;

}

.deployment-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 80px;

}

.deployment-header .section-label{

    background:rgba(255,255,255,.08);

    color:#7FD6FF;

}

.deployment-header h2{

    font-size:52px;

    margin:20px 0;

    font-weight:800;

    color:#fff;

}

.deployment-header p{

    color:rgba(255,255,255,.82);

    line-height:1.9;

    font-size:18px;

}

.deployment-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.deployment-card{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.10);

    border-radius:24px;

    padding:40px;

    transition:.35s;

    backdrop-filter:blur(8px);

}

.deployment-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.10);

}

.featured{

    grid-column:span 3;

    display:flex;

    align-items:center;

    gap:35px;

}

.deployment-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    background:linear-gradient(135deg,#0057D9,#00BFA6);

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.deployment-icon i{

    color:#fff;

    font-size:36px;

}

.deployment-card h3{

    font-size:32px;

    margin-bottom:15px;

}

.deployment-card h4{

    font-size:22px;

    margin-top:25px;

    color:#fff;

}

.deployment-card p{

    color:rgba(255,255,255,.82);

    line-height:1.8;

}

@media(max-width:992px){

.deployment-grid{

grid-template-columns:1fr;

}

.featured{

grid-column:span 1;

flex-direction:column;

text-align:center;

}

.deployment-header h2{

font-size:40px;

}

}