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

.automation-hero{
   padding:170px 0 120px;
   background:
   radial-gradient(circle at top right,#C7F7EF 0%,transparent 35%),
   radial-gradient(circle at bottom left,#D9ECFF 0%,transparent 40%),
   linear-gradient(180deg,#A7C4EB,#C2E2FF);

}

.automation-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.hero-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:30px;

    background:#E0F2FE;

    color:#2563EB;

    font-weight:700;

}

.automation-content h1{

    font-size:56px;

    line-height:1.35;

    margin:25px 0;

}

.automation-content h1 span{

    color:#2563EB;

}

.automation-content p{

    font-size:18px;

    color:#667085;

    line-height:2;

    margin-bottom:40px;

}

.hero-actions{

    display:flex;

    gap:18px;

}

.btn-ghost-dark{

    padding:14px 28px;

    border:1.5px solid #488EE2;

    border-radius:12px;

    color:#1E293B;

    font-weight:700;

}

.btn-ghost-dark:hover{

    border-color:#2563EB;

}

.automation-window{

    background:white;

    border-radius:24px;

    overflow:hidden;

    border:1px solid #E5E7EB;

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

}

.window-top{

    height:60px;

    display:flex;

    align-items:center;

    gap:8px;

    padding:0 20px;

    background:#F9FAFB;

}

.window-top span{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#CBD5E1;

}

.window-body{

    padding:40px;

}

.flow-card{

    background:#BDF;

    border-radius:16px;

    padding:20px;

    text-align:center;

    font-weight:700;

}

.start{

    background:#DBEAFE;

}

.success{

    background:#9FFABE;

}

.flow-arrow{

    text-align:center;

    font-size:30px;

    margin:15px 0;

    color:#2563EB;

}


/*================ WORKFLOW ================*/

.workflow-section{

    padding:120px 0;

    background:#0F172A;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.workflow-section::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#28D9C4;

    filter:blur(180px);

    opacity:.12;

    top:-150px;

    right:-150px;

}

.workflow-grid{

    display:grid;

    grid-template-columns:520px 1fr;

    gap:90px;

    align-items:center;

}

.workflow-image{

    display:flex;

    justify-content:center;

}

.builder{

    width:420px;

    padding:35px;

    border-radius:30px;

    background:#1E293B;

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

    box-shadow:none;

}

.node{

    padding:18px;

    text-align:center;

    border-radius:16px;

    border:1px solid #D6E0F0;

    font-weight:700;

    background:#334155;

    border:none;

    color:white;

}

.node.blue{

    background:linear-gradient(135deg,#2563EB,#3B82F6);

}

.node.green{

    background:linear-gradient(135deg,#10B981,#34D399);

}

.line{

    width:3px;

    height:40px;

    background:#2563EB;

    margin:auto;

}

.workflow-content{

    text-align:right;

}

.section-badge{

    display:inline-block;

    padding:8px 18px;

    background:#E0F2FE;

    color:#2563EB;

    border-radius:30px;

    font-weight:700;

    margin-bottom:20px;

}

.workflow-content h2{

    font-size:48px;

    line-height:1.5;

    margin-bottom:25px;
    color:#fff;

}

.workflow-content h2 span{

    color:#28D9C4;

}

.workflow-content p{

    font-size:18px;

    color:#CBD5E1;

    line-height:2;

    margin-bottom:35px;

}

.workflow-features{

    display:grid;

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

    gap:18px;

}

.feature{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;
    color:#fff;

}

.feature i{

    width:34px;

    height:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#28D9C4;

    color:white;

    font-size:13px;

}
.features-section{

    padding:130px 0;

    background:#F8FAFC;

}

.section-title{

    max-width:700px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    padding:8px 18px;

    background:#E6FFFB;

    color:#14B8A6;

    border-radius:30px;

    font-weight:700;

    margin-bottom:20px;

}

.section-title h2{

    font-size:46px;

    color:#0F172A;

    margin-bottom:20px;

}

.section-title p{

    font-size:18px;

    color:#64748B;

    line-height:2;

}

.features-grid{

    display:grid;

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

    gap:30px;

}

.feature-card{

    background:white;

    padding:45px 35px;

    border-radius:24px;

    transition:.35s;

    border:1px solid #E2E8F0;

}

.feature-card:hover{

    transform:translateY(-10px);

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

}

.feature-card i{

    width:65px;

    height:65px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#14B8A6,#06B6D4);

    color:white;

    font-size:28px;

    margin-bottom:25px;

}

.feature-card h3{

    font-size:22px;

    margin-bottom:15px;

}

.feature-card p{

    color:#64748B;

    line-height:1.9;

}
/*==========================
      Automation Stats
==========================*/

.automation-stats{

    padding:120px 0;

    background:linear-gradient(135deg,#08111f,#0d1f39);

    color:#fff;

    position:relative;

    overflow:hidden;

}

.automation-stats::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(40,217,196,.08);

    top:-180px;

    right:-180px;

    filter:blur(40px);

}

.automation-stats::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

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

    bottom:-180px;

    left:-180px;

    filter:blur(60px);

}

.stats-title{

    max-width:700px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

    position:relative;

    z-index:2;

}

.stats-title h2{

    font-size:42px;

    margin:20px 0;

    line-height:1.5;

}

.stats-title p{

    color:#C7D2E4;

    font-size:17px;

}

.stats-grid{

    display:grid;

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

    gap:30px;

    position:relative;

    z-index:2;

}

.stat-card{

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

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

    backdrop-filter:blur(20px);

    border-radius:24px;

    padding:45px 25px;

    text-align:center;

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

    border-color:#28D9C4;

    box-shadow:0 20px 45px rgba(40,217,196,.18);

}

.stat-card h3{

    font-size:52px;

    color:#28D9C4;

    margin-bottom:18px;

    font-weight:800;

}

.stat-card span{

    color:#DCE6F8;

    font-size:16px;

}

@media(max-width:992px){

.stats-grid{

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

}

}

@media(max-width:600px){

.stats-grid{

grid-template-columns:1fr;

}

.stats-title h2{

font-size:30px;

}

}
/*==========================
        CTA Section
===========================*/

.automation-cta{

    padding:120px 0;

    background:linear-gradient(135deg,#07111F,#0F2745);

    position:relative;

    overflow:hidden;

}

.automation-cta::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(40,217,196,.10);

    top:-150px;

    left:-150px;

    filter:blur(60px);

}

.automation-cta::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

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

    bottom:-120px;

    right:-120px;

    filter:blur(70px);

}

.cta-box{

    max-width:900px;

    margin:auto;

    text-align:center;

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

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

    backdrop-filter:blur(25px);

    border-radius:32px;

    padding:70px 60px;

    position:relative;

    z-index:2;

}

.cta-box h2{

    color:#fff;

    font-size:44px;

    margin:25px 0;

    line-height:1.5;

}

.cta-box p{

    color:#C8D5E6;

    font-size:18px;

    max-width:700px;

    margin:auto;

    margin-bottom:45px;

    line-height:2;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-outline{

    padding:15px 34px;

    border-radius:12px;

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

    color:#fff;

    transition:.3s;

    font-weight:600;

}

.btn-outline:hover{

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

    border-color:#28D9C4;

}

@media(max-width:768px){

.cta-box{

padding:45px 25px;

}

.cta-box h2{

font-size:32px;

}

.cta-box p{

font-size:16px;

}

}
