*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{

    background:#050b16;
    color:white;
    font-family:"Manrope","Inter","Segoe UI",Arial,sans-serif;

}


.container{

    width:1200px;
    max-width:90%;
    margin:auto;

}



/* ================= HEADER ================= */


.header{

    background:
    linear-gradient(
        180deg,
        rgba(8,18,35,0.95),
        rgba(5,11,22,0.85)
    );

    backdrop-filter:blur(15px);

    border-bottom:
    1px solid rgba(255,255,255,0.08);

}



.nav{

    height:140px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}



/* LOGO AREA */


.logo-area{

    display:flex;

    align-items:center;

    gap:18px;

}



.cerp-logo{

    width:130px;

    height:130px;

    object-fit:contain;

}



.logo-text span{


    display:block;

    font-size:32px;

    font-weight:800;

    letter-spacing:1px;

    color:white;

    font-family:"Manrope",sans-serif;


}



.logo-text small{


    display:block;

    margin-top:6px;

    font-size:15px;

    letter-spacing:.8px;

    font-weight:500;

    color:#9ca9bd;

    font-family:"Manrope",sans-serif;


}




/* MENU */


nav a{


    color:#c5d0df;

    text-decoration:none;

    margin:0 15px;

    font-size:15px;

    transition:.3s;


}


nav a:hover{

    color:white;

}




/* BUTTON */


.btn{


    background:
    linear-gradient(
        135deg,
        #1670ff,
        #0056e8
    );


    padding:14px 28px;

    border-radius:30px;

    color:white;

    text-decoration:none;

    font-weight:bold;

}




/* ================= HERO ================= */



.hero{


padding:120px 0;


position:relative;

overflow:hidden;



background:


radial-gradient(
circle at 85% 20%,
rgba(0,180,255,0.20),
transparent 35%
),


radial-gradient(
circle at 10% 70%,
rgba(20,100,255,0.15),
transparent 35%
),


linear-gradient(
180deg,
#08182d 0%,
#050b16 100%
);



}



/* soft technology glow */


.hero::before{


content:"";

position:absolute;


width:900px;

height:900px;


right:-350px;

top:-250px;


background:

radial-gradient(
circle,
rgba(0,190,255,0.12),
transparent 65%
);


filter:blur(40px);


}




.hero-content{


display:flex;

align-items:center;

justify-content:space-between;


position:relative;

z-index:2;


}




.hero-text{


width:50%;


}




.hero h1{


font-size:90px;

line-height:.95;

font-weight:800;



background:

linear-gradient(
90deg,
#ffffff,
#9bc8ff
);



-webkit-background-clip:text;

color:transparent;


}




.hero p{


margin-top:35px;

font-size:18px;

line-height:1.7;

color:#afbdd2;


}




.hero-buttons{


margin-top:40px;


}



.secondary{


margin-left:15px;

background:none;

border:1px solid #42506a;


}



/* ================= DASHBOARD ================= */


.hero-card{


width:45%;


}




.dashboard{


padding:25px;


border-radius:25px;


background:


linear-gradient(
145deg,
rgba(35,60,100,.65),
rgba(10,20,40,.85)
);



border:

1px solid rgba(255,255,255,.12);



box-shadow:

0 25px 70px rgba(0,0,0,.35);



}




.dashboard div{


background:


linear-gradient(
135deg,
#172b4d,
#14223a
);



padding:22px;


margin-bottom:16px;


border-radius:15px;


color:#9db2d0;



}



.dashboard div:last-child{

margin-bottom:0;

}



.dashboard strong{


display:block;

font-size:18px;

color:white;

margin-top:10px;

font-weight:700;


}



.dashboard span{


color:#9db2d0;

font-size:16px;


}



.dashboard p{


margin-top:8px;

color:#8fa3c2;

font-size:13px;

line-height:1.4;


}





/* ================= MODULES ================= */


.modules{

    padding:100px 0;

    position:relative;

    overflow:hidden;


    background:

    linear-gradient(
        180deg,
        rgba(3,12,28,0.75),
        rgba(2,8,20,0.92)
    ),

    url("/assets/images/technology-bg.jpg");


    background-size:cover;
    background-position:center;


}



/* BLUE ATMOSPHERE */


.modules::after{


content:"";

position:absolute;

inset:0;


background:

radial-gradient(
circle at 20% 30%,
rgba(0,170,255,.18),
transparent 35%
),


radial-gradient(
circle at 80% 60%,
rgba(0,90,255,.22),
transparent 40%
);


pointer-events:none;


}




.modules .container{

position:relative;
z-index:2;

}



.modules h2{


font-size:40px;

margin-bottom:45px;


}



.modules h2::after{


content:"";

display:block;

width:80px;

height:3px;

background:#00aaff;

margin-top:18px;

border-radius:10px;


}



/* GRID */


.module-grid{


display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;


}




/* CARDS */


.card{


position:relative;

padding:35px;


min-height:170px;



background:

linear-gradient(
145deg,
rgba(15,45,80,.75),
rgba(5,15,35,.85)
);



border-radius:22px;



border:

1px solid rgba(0,170,255,.35);



backdrop-filter:blur(12px);



box-shadow:

0 20px 60px rgba(0,0,0,.45);



transition:.3s;


}



.card:hover{


transform:translateY(-8px);



box-shadow:

0 25px 70px rgba(0,150,255,.25);



}




.card h3{


font-size:22px;

margin-bottom:15px;


color:white;


}




.card p{


font-size:16px;

line-height:1.6;

color:#9fc7ef;


}



/* ================= FOOTER ================= */



footer{


padding:60px 0;

text-align:center;


border-top:

1px solid #1c2638;


}




.case-logo{


width:220px;

max-width:80%;

height:auto;


}



footer p{


margin-top:20px;

color:#9ca9bd;


}



/* HEADER CONTACT */

.header-contact{

display:flex;

flex-direction:column;

align-items:flex-end;

gap:10px;

}



.contact-info{

display:flex;

flex-direction:column;

align-items:flex-end;

font-size:13px;

line-height:1.5;

}



.contact-info span:first-child{

color:#00b7ff;

font-weight:600;

}



.contact-info span:last-child{

color:#b7c7dd;

}




.header-contact .btn{


box-shadow:

0 0 25px rgba(0,120,255,.35);


transition:.3s;


}



.header-contact .btn:hover{


transform:translateY(-3px);


box-shadow:

0 0 40px rgba(0,170,255,.6);


}







/* ================= WHY CERP ================= */


.why-cerp{


padding:110px 0;


background:


linear-gradient(
180deg,
#f5f8fc,
#ffffff
);


color:#071426;


}



.section-title{


text-align:center;

max-width:800px;

margin:auto;

}



.section-title span{


display:inline-block;

padding:8px 18px;

border-radius:30px;

background:#e8efff;

color:#1769ff;

font-weight:700;

font-size:14px;


}



.section-title h2{


margin-top:25px;

font-size:42px;

font-weight:800;


}



.section-title p{


margin-top:20px;

font-size:18px;

color:#607089;

line-height:1.6;


}




.why-grid{


margin-top:60px;


display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;


}




.why-card{


background:white;


padding:35px;


border-radius:25px;


border:1px solid #e3eaf5;


box-shadow:

0 20px 50px rgba(0,0,0,.08);


transition:.3s;


}




.why-card:hover{


transform:translateY(-8px);


box-shadow:

0 25px 60px rgba(0,100,255,.15);


}




.icon{


width:55px;

height:55px;

display:flex;

align-items:center;

justify-content:center;


border-radius:15px;


background:#e9f3ff;


color:#009dff;


font-size:25px;


margin-bottom:25px;


}



.why-card h3{


font-size:22px;

margin-bottom:15px;


}



.why-card p{


color:#607089;

line-height:1.6;

font-size:15px;


}

/*================ LIFECYCLE ================*/

.lifecycle{

    padding:140px 0;

    position:relative;

    overflow:hidden;

    background:

    radial-gradient(
    circle at 15% 20%,
    rgba(0,140,255,.10),
    transparent 35%
    ),

    radial-gradient(
    circle at 85% 80%,
    rgba(23,105,255,.08),
    transparent 40%
    ),

    linear-gradient(
    180deg,
    #edf3fb 0%,
    #dfe9f6 100%
    );

}


/* Blur Effects */

.lifecycle::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    left:-220px;
    top:-180px;

    background:radial-gradient(
    circle,
    rgba(0,150,255,.16),
    transparent 70%
    );

    filter:blur(80px);

}

.lifecycle::after{

    content:"";

    position:absolute;

    width:850px;
    height:850px;

    right:-250px;
    bottom:-250px;

    background:radial-gradient(
    circle,
    rgba(23,105,255,.10),
    transparent 70%
    );

    filter:blur(90px);

}


/*================ TITLE ================*/

.lifecycle .section-title{

    position:relative;

    z-index:5;

    text-align:center;

    max-width:900px;

    margin:0 auto 90px;

}

.lifecycle .badge{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:#dce9ff;

    color:#1769ff;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:24px;

}

.lifecycle .section-title h2{

    color:#101827;

    font-size:64px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:28px;

}

.lifecycle .section-title p{

    color:#5d6f88;

    font-size:23px;

    line-height:1.7;

}


/*================ GRID ================*/

.life-grid{

    position:relative;

    z-index:5;

    display:grid;

    grid-template-columns:1fr 60px 1fr 60px 1fr 60px 1fr 60px 1fr;

    align-items:center;

    gap:0;

}


/*================ CARD ================*/

.life-card{

    background:#ffffff;

    border:1px solid #dbe7f5;

    border-radius:22px;

    padding:35px;

    min-height:280px;

    transition:.35s;

    box-shadow:0 18px 45px rgba(0,0,0,.06);

}

.life-card:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 80px rgba(23,105,255,.16);

}


/*================ NUMBER ================*/

.number{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#1769ff;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:700;

    margin-bottom:28px;

}


/*================ TEXT ================*/

.life-card h3{

    color:#0f172a;

    font-size:30px;

    font-weight:700;

    margin-bottom:20px;

}

.life-card p{

    color:#667085;

    font-size:17px;

    line-height:1.8;

}


/*================ ARROW ================*/

.arrow{

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    color:#1769ff;

    font-weight:700;

}




/*================ DEMO REQUEST ================*/

.demo-request{

    padding:140px 0;

    background:

    radial-gradient(circle at 15% 20%,
    rgba(0,180,255,.12),
    transparent 35%),

    radial-gradient(circle at 85% 80%,
    rgba(23,105,255,.12),
    transparent 40%),

    linear-gradient(
    135deg,
    #0a1424,
    #102445,
    #155fbf
    );

}


.demo-wrapper{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:80px;

    align-items:center;

}


.demo-left h2{

    font-size:58px;

    line-height:1.15;

    margin:25px 0;

    color:white;

}


.demo-left p{

    font-size:20px;

    line-height:1.8;

    color:#d3def1;

    margin-bottom:35px;

}


.demo-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    color:#9fd2ff;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

}


.demo-left ul{

    list-style:none;

    margin-top:30px;

}


.demo-left li{

    color:white;

    font-size:18px;

    margin-bottom:18px;

}


/* FORM */

.demo-form{

    background:white;

    border-radius:28px;

    padding:45px;

    box-shadow:0 35px 80px rgba(0,0,0,.25);

}


.demo-form form{

    display:flex;

    flex-direction:column;

    gap:18px;

}


.demo-form input{

    height:58px;

    border-radius:14px;

    border:1px solid #d9e4f2;

    padding:0 18px;

    font-size:16px;

    outline:none;

    transition:.3s;

}


.demo-form input:focus{

    border-color:#1769ff;

    box-shadow:0 0 0 4px rgba(23,105,255,.15);

}


.demo-form button{

    margin-top:12px;

    height:60px;

    border:none;

    border-radius:16px;

    background:linear-gradient(
    90deg,
    #1769ff,
    #3b8cff
    );

    color:white;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}


.demo-form button:hover{

    transform:translateY(-3px);

    box-shadow:0 20px 50px rgba(23,105,255,.35);

}

/* Response Box */

.response-box{

    display:flex;

    align-items:center;

    gap:18px;

    background:linear-gradient(
    135deg,
    #1769ff,
    #4b8cff
    );

    border-radius:18px;

    padding:18px 22px;

    margin-bottom:25px;

    color:#fff;

    box-shadow:0 15px 35px rgba(23,105,255,.25);

}

.response-icon{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.18);

    font-size:24px;

}

.response-text{

    display:flex;

    flex-direction:column;

}

.response-text small{

    font-size:12px;

    opacity:.85;

    letter-spacing:.5px;

}

.response-text strong{

    font-size:24px;

    font-weight:800;

}










select{

padding:10px;

border-radius:8px;

border:1px solid #ddd;

font-size:15px;

}


button{

background:#1769ff;

color:white;

border:none;

padding:10px 20px;

border-radius:8px;

cursor:pointer;

margin-left:10px;

}




textarea{

width:100%;

height:120px;

padding:12px;

border-radius:10px;

border:1px solid #ddd;

font-size:15px;

resize:none;

}


.save-btn{

background:#1769ff;

color:white;

border:none;

padding:10px 25px;

border-radius:8px;

cursor:pointer;

margin-top:10px;

}







/*==================================================
SOLUTIONS
==================================================*/

.solutions{

    padding:120px 0;

    background:#f8fbff;

    position:relative;

    overflow:hidden;

}


.solutions::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    background:radial-gradient(circle,rgba(37,99,235,.08),transparent 70%);

    top:-250px;

    right:-250px;

}


.solutions::after{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    background:radial-gradient(circle,rgba(59,130,246,.05),transparent 70%);

    bottom:-250px;

    left:-250px;

}



.solutions .container{

    position:relative;

    z-index:2;

}



.section-header{

    max-width:800px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

}



.section-badge{

    display:inline-flex;

    align-items:center;

    padding:8px 18px;

    border-radius:50px;

    background:#dbeafe;

    color:#2563eb;

    font-size:14px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:18px;

}



.section-header h2{

    font-size:54px;

    font-weight:800;

    color:#0f172a;

    line-height:1.15;

    margin-bottom:22px;

}



.section-header p{

    font-size:20px;

    line-height:1.8;

    color:#64748b;

}



/*================ TABS =================*/


.solution-tabs{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:70px;

}



.solution-tab{

    padding:16px 28px;

    border:none;

    border-radius:60px;

    background:white;

    color:#334155;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 8px 25px rgba(15,23,42,.06);

}



.solution-tab:hover{

    transform:translateY(-4px);

}



.solution-tab.active{

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:white;

}



/*================ CONTENT =================*/


.solution-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}



.solution-label{

    display:inline-block;

    padding:7px 15px;

    border-radius:40px;

    background:#eff6ff;

    color:#2563eb;

    font-size:13px;

    font-weight:700;

    margin-bottom:20px;

}



.solution-info h3{

    font-size:48px;

    color:#0f172a;

    line-height:1.15;

    margin-bottom:20px;

}



.solution-info p{

    font-size:19px;

    line-height:1.8;

    color:#64748b;

    margin-bottom:40px;

}



/*================ FEATURES =================*/


.feature-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:45px;

}



.feature-card{

    background:white;

    padding:22px;

    border-radius:18px;

    border:1px solid #e5e7eb;

    transition:.35s;

}



.feature-card:hover{

    transform:translateY(-6px);

    border-color:#3b82f6;

    box-shadow:0 20px 40px rgba(37,99,235,.15);

}



.feature-card i{

    font-size:28px;

    color:#2563eb;

    margin-bottom:18px;

}



.feature-card h4{

    color:#0f172a;

    font-size:18px;

}



/*================ BUTTONS =================*/


.solution-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}



.btn-primary{

    background:#2563eb;

    color:white;

    padding:16px 30px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}



.btn-primary:hover{

    transform:translateY(-4px);

}



.btn-secondary{

    background:white;

    border:1px solid #dbe4ef;

    color:#0f172a;

    padding:16px 30px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

}



/*================ DASHBOARD =================*/


.dashboard-window{

    background:white;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 40px 80px rgba(15,23,42,.12);

}



.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 28px;

    background:#0f172a;

    color:white;

}



.dots{

    display:flex;

    gap:8px;

}



.dots span{

    width:11px;

    height:11px;

    border-radius:50%;

    background:white;

    opacity:.35;

}



.dashboard-body{

    padding:35px;

}



.metric{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:1px solid #eef2f7;

}



.metric span{

    color:#64748b;

}



.metric strong{

    color:#2563eb;

    font-size:26px;

}



/*================ MINI CARDS =================*/


.mini-cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:25px;

}



.mini-card{

    background:white;

    padding:22px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

}



.mini-card strong{

    display:block;

    color:#2563eb;

    font-size:28px;

    margin-bottom:10px;

}



.mini-card span{

    color:#64748b;

    font-size:15px;

}



/*================ RESPONSIVE =================*/


@media(max-width:991px){

.solution-content{

grid-template-columns:1fr;

gap:50px;

}

.section-header h2{

font-size:40px;

}

.solution-info h3{

font-size:36px;

}

}



@media(max-width:768px){

.feature-grid{

grid-template-columns:1fr;

}

.solution-tabs{

flex-direction:column;

}

.solution-tab{

width:100%;

}

.section-header h2{

font-size:34px;

}

}