﻿*{
margin:0;
padding:0;
box-sizing:border-box;

}

html{
scroll-behavior:smooth;
}

body{
background:#ffffff;
color:#111827;
overflow-x:hidden;
}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
width:100%;
z-index:999;
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 8%;
background:rgba(255,255,255,0.95);
backdrop-filter:blur(18px);
box-shadow:0 2px 20px rgba(0,0,0,0.04);
}

.logo{
font-size:28px;
font-weight:800;
color:#0f172a;
}

.logo span{
color:#2563eb;
}

.nav-links{
display:flex;
gap:35px;
}

.nav-links a{
text-decoration:none;
font-weight:600;
font-size:15px;
color:#0f172a;
transition:0.3s;
}

.nav-links a:hover{
color:#2563eb;
}

.demo-btn{
padding:12px 24px;
border:none;
border-radius:10px;
background:#2563eb;
color:white;
font-weight:600;
cursor:pointer;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
padding:0 8%;
background:
radial-gradient(circle at top left,#dbeafe 0%, transparent 30%),
radial-gradient(circle at bottom right,#eff6ff 0%, transparent 30%),
linear-gradient(135deg,#ffffff,#f8fbff);
overflow:hidden;
}

.hero-left{
width:55%;
}

.hero-badge{
display:inline-block;
padding:8px 18px;
background:#eff6ff;
border-radius:40px;
font-size:13px;
font-weight:700;
color:#2563eb;
margin-bottom:24px;
}

.hero h1{
font-size:68px;
font-weight:800;
line-height:1.05;
color:#0f172a;
margin-bottom:28px;
}

.hero h1 span{
color:#2563eb;
}

.hero p{
font-size:20px;
color:#64748b;
line-height:1.8;
max-width:700px;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:18px;
margin-bottom:45px;
}

.primary-btn{
padding:14px 24px;
border:none;
background:#2563eb;
color:white;
border-radius:10px;
font-weight:700;
cursor:pointer;
}

.secondary-btn{
padding:14px 24px;
background:white;
border:1px solid #dbeafe;
border-radius:10px;
font-weight:700;
cursor:pointer;
}

/* KPI */

.kpi-row{
display:flex;
gap:40px;
}

.kpi h3{
font-size:32px;
margin-bottom:6px;
color:#0f172a;
}

.kpi p{
font-size:14px;
color:#64748b;
}

/* DASHBOARD */

.hero-right{
width:45%;
position:relative;
height:700px;
}

.dashboard{
position:absolute;
right:0;
top:120px;
width:540px;
height:400px;
background:white;
border-radius:26px;
box-shadow:0 25px 60px rgba(0,0,0,0.1);
padding:30px;
animation:float 6s infinite ease-in-out;
}

.dashboard h3{
margin-bottom:25px;
font-size:20px;
}

.dashboard-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.widget{
height:130px;
border-radius:18px;
background:linear-gradient(135deg,#eff6ff,#ffffff);
padding:18px;
border:1px solid #dbeafe;
}

.widget h4{
font-size:14px;
margin-bottom:14px;
}

.bar{
height:10px;
background:#dbeafe;
border-radius:20px;
}

.fill{
height:100%;
background:#2563eb;
border-radius:20px;
}

.floating{
position:absolute;
width:220px;
padding:22px;
background:white;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,0.06);
}

.card1{
top:50px;
left:20px;
animation:float 5s infinite ease-in-out;
}

.card2{
bottom:90px;
left:-20px;
animation:float 7s infinite ease-in-out;
}

.card3{
bottom:20px;
right:40px;
animation:float 6s infinite ease-in-out;
}

.floating h4{
margin-bottom:10px;
font-size:14px;
}

.progress{
height:10px;
background:#e2e8f0;
border-radius:20px;
overflow:hidden;
}

.progress span{
display:block;
height:100%;
background:#2563eb;
}

/* INTRO SECTION */

.intro{
padding:120px 8%;
background:white;
}

.intro-container{
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.intro-left h2{
font-size:48px;
font-weight:800;
margin-bottom:25px;
color:#0f172a;
}

.intro-left p{
font-size:18px;
line-height:1.9;
color:#64748b;
margin-bottom:20px;
}

.intro-right{
background:linear-gradient(135deg,#0f172a,#2563eb);
padding:50px;
border-radius:28px;
color:white;
}

.intro-right h3{
font-size:34px;
margin-bottom:25px;
}

.intro-right ul{
list-style:none;
}

.intro-right li{
padding:10px 0;
font-size:16px;
}

/* ANIMATION */

@keyframes float{
0%{transform:translateY(0px);}
50%{transform:translateY(-18px);}
100%{transform:translateY(0px);}
}

/* RESPONSIVE */

@media(max-width:1100px){

.hero{
flex-direction:column;
padding-top:120px;
}

.hero-left{
width:100%;
text-align:center;
}

.hero-right{
width:100%;
margin-top:60px;
}

.hero-buttons{
justify-content:center;
}

.kpi-row{
justify-content:center;
}

.intro-container{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:20px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:42px;
}

.dashboard{
width:100%;
position:relative;
}

}

/* ====================================== */
/* MES MODULES SECTION */
/* ====================================== */

.modules-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#f8fbff,#eef4ff);
}

.modules-container{
    max-width:1500px;
    margin:auto;
}

.modules-header{
    text-align:center;
    margin-bottom:70px;
}

.modules-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.modules-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.modules-description{
    max-width:950px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#64748b;
}

/* GRID */

.modules-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

/* CARD */

.module-card{
    background:white;
    padding:35px;
    border-radius:24px;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.module-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.module-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
}

.module-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:22px;
}

.module-card h3{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:14px;
}

.module-card p{
    color:#64748b;
    font-size:15px;
    line-height:1.8;
    margin-bottom:18px;
}

.module-list{
    list-style:none;
}

.module-list li{
    padding:5px 0;
    font-size:14px;
    color:#334155;
}

/* FLOW SECTION */

.execution-flow{
    margin-top:90px;
    padding:60px;
    border-radius:30px;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
}

.execution-flow h2{
    text-align:center;
    font-size:42px;
    margin-bottom:22px;
}

.execution-flow p{
    text-align:center;
    max-width:1000px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
    margin-bottom:45px;
}

.flow-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.flow-box{
    background:rgba(255,255,255,0.08);
    padding:28px;
    border-radius:18px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.flow-box h4{
    margin-bottom:10px;
    font-size:18px;
}

.flow-box span{
    font-size:13px;
    opacity:0.85;
}

@media(max-width:1000px){

    .flow-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .modules-title{
        font-size:36px;
    }

    .flow-grid{
        grid-template-columns:1fr;
    }

    .execution-flow{
        padding:35px;
    }

}

/* ====================================== */
/* CONNECTIVITY SECTION */
/* ====================================== */

.connectivity-section{
    padding:120px 8%;
    background:#ffffff;
}

.connectivity-container{
    max-width:1500px;
    margin:auto;
}

.connectivity-header{
    text-align:center;
    margin-bottom:70px;
}

.connectivity-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.connectivity-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.connectivity-description{
    max-width:1000px;
    margin:auto;
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

/* GRID */

.connectivity-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

/* CARD */

.connect-card{
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.connect-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.connect-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
}

.connect-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:22px;
}

.connect-card h3{
    font-size:24px;
    margin-bottom:14px;
    color:#0f172a;
}

.connect-card p{
    color:#64748b;
    line-height:1.8;
    font-size:15px;
    margin-bottom:18px;
}

.connect-list{
    list-style:none;
}

.connect-list li{
    padding:5px 0;
    color:#334155;
    font-size:14px;
}

/* ARCHITECTURE */

.architecture{
    margin-top:90px;
    padding:70px;
    border-radius:30px;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
}

.architecture h2{
    text-align:center;
    font-size:42px;
    margin-bottom:25px;
}

.architecture p{
    text-align:center;
    max-width:1000px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
    margin-bottom:50px;
}

.arch-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:15px;
    align-items:center;
}

.arch-box{
    background:rgba(255,255,255,0.08);
    padding:25px;
    border-radius:18px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.arch-box h4{
    font-size:16px;
    margin-bottom:8px;
}

.arch-arrow{
    text-align:center;
    font-size:28px;
}

@media(max-width:1100px){

    .arch-grid{
        grid-template-columns:1fr;
    }

    .arch-arrow{
        transform:rotate(90deg);
    }

}

@media(max-width:768px){

    .connectivity-title{
        font-size:36px;
    }

    .architecture{
        padding:35px;
    }

    .architecture h2{
        font-size:30px;
    }

}

/* ====================================== */
/* ANALYTICS SECTION */
/* ====================================== */

.analytics-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#f8fbff,#eef4ff);
}

.analytics-header{
    text-align:center;
    margin-bottom:70px;
}

.analytics-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.analytics-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
}

.analytics-description{
    max-width:950px;
    margin:auto;
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

/* DASHBOARDS */

.analytics-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.analytics-card{
    background:white;
    padding:35px;
    border-radius:24px;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.4s ease;
}

.analytics-card:hover{
    transform:translateY(-10px);
}

.analytics-card h3{
    margin-bottom:15px;
    font-size:24px;
    color:#0f172a;
}

.analytics-card p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:20px;
}

.graph{
    height:14px;
    background:#dbeafe;
    border-radius:20px;
    overflow:hidden;
}

.graph span{
    display:block;
    height:100%;
    background:#2563eb;
}

/* INDUSTRIES */

.support-section{
    padding:120px 8%;
    background:white;
}

.support-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.support-card{
    padding:30px;
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:22px;
    text-align:center;
}

.support-card h4{
    margin-bottom:10px;
    color:#2563eb;
    font-size:22px;
}

.support-card p{
    color:#64748b;
    line-height:1.7;
    font-size:14px;
}

/* DEMO */

.demo-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
    text-align:center;
}

.demo-section h2{
    font-size:48px;
    margin-bottom:20px;
}

.demo-section p{
    max-width:900px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
    margin-bottom:35px;
}

.demo-btn-large{
    padding:18px 30px;
    background:#2563eb;
    border:none;
    color:white;
    border-radius:12px;
    font-weight:700;
    cursor:pointer;
    font-size:16px;
}

/* FOOTER */

.footer{
    background:#0f172a;
    color:white;
    padding:70px 8%;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}

.footer h3{
    margin-bottom:18px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    padding:8px 0;
    color:#cbd5e1;
}

.footer-bottom{
    margin-top:40px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    color:#94a3b8;
}

@media(max-width:1000px){

    .support-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .analytics-title{
        font-size:36px;
    }

    .support-grid{
        grid-template-columns:1fr;
    }

}

*{
margin:0;
padding:0;
box-sizing:border-box;

}

html{
scroll-behavior:smooth;
}

body{
background:#ffffff;
color:#111827;
overflow-x:hidden;
}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
width:100%;
z-index:999;
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 8%;
background:rgba(255,255,255,0.95);
backdrop-filter:blur(18px);
box-shadow:0 2px 20px rgba(0,0,0,0.04);
}

.logo{
font-size:28px;
font-weight:800;
color:#0f172a;
}

.logo span{
color:#2563eb;
}

.nav-links{
display:flex;
gap:35px;
}

.nav-links a{
text-decoration:none;
font-weight:600;
font-size:15px;
color:#0f172a;
transition:0.3s;
}

.nav-links a:hover{
color:#2563eb;
}

.demo-btn{
padding:12px 24px;
border:none;
border-radius:10px;
background:#2563eb;
color:white;
font-weight:600;
cursor:pointer;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
padding:0 8%;
background:
radial-gradient(circle at top left,#dbeafe 0%, transparent 30%),
radial-gradient(circle at bottom right,#eff6ff 0%, transparent 30%),
linear-gradient(135deg,#ffffff,#f8fbff);
overflow:hidden;
}

.hero-left{
width:55%;
}

.hero-badge{
display:inline-block;
padding:8px 18px;
background:#eff6ff;
border-radius:40px;
font-size:13px;
font-weight:700;
color:#2563eb;
margin-bottom:24px;
}

.hero h1{
font-size:66px;
font-weight:800;
line-height:1.05;
color:#0f172a;
margin-bottom:28px;
}

.hero h1 span{
color:#2563eb;
}

.hero p{
font-size:20px;
color:#64748b;
line-height:1.8;
max-width:700px;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:18px;
margin-bottom:45px;
}

.primary-btn{
padding:14px 24px;
border:none;
background:#2563eb;
color:white;
border-radius:10px;
font-weight:700;
cursor:pointer;
}

.secondary-btn{
padding:14px 24px;
background:white;
border:1px solid #dbeafe;
border-radius:10px;
font-weight:700;
cursor:pointer;
}

/* KPI */

.kpi-row{
display:flex;
gap:40px;
}

.kpi h3{
font-size:32px;
margin-bottom:6px;
color:#0f172a;
}

.kpi p{
font-size:14px;
color:#64748b;
}

/* DASHBOARD */

.hero-right{
width:45%;
position:relative;
height:700px;
}

.dashboard{
position:absolute;
right:0;
top:120px;
width:550px;
height:410px;
background:white;
border-radius:26px;
box-shadow:0 25px 60px rgba(0,0,0,0.1);
padding:30px;
animation:float 6s infinite ease-in-out;
}

.dashboard h3{
margin-bottom:25px;
font-size:20px;
}

.dashboard-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.widget{
height:130px;
border-radius:18px;
background:linear-gradient(135deg,#eff6ff,#ffffff);
padding:18px;
border:1px solid #dbeafe;
}

.widget h4{
font-size:14px;
margin-bottom:14px;
}

.bar{
height:10px;
background:#dbeafe;
border-radius:20px;
}

.fill{
height:100%;
background:#2563eb;
border-radius:20px;
}

.floating{
position:absolute;
width:220px;
padding:22px;
background:white;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,0.06);
}

.card1{
top:50px;
left:20px;
animation:float 5s infinite ease-in-out;
}

.card2{
bottom:90px;
left:-20px;
animation:float 7s infinite ease-in-out;
}

.card3{
bottom:20px;
right:40px;
animation:float 6s infinite ease-in-out;
}

.floating h4{
margin-bottom:10px;
font-size:14px;
}

.progress{
height:10px;
background:#e2e8f0;
border-radius:20px;
overflow:hidden;
}

.progress span{
display:block;
height:100%;
background:#2563eb;
}

/* INTRO */

.intro{
padding:120px 8%;
background:white;
}

.intro-container{
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.intro-left h2{
font-size:48px;
font-weight:800;
margin-bottom:25px;
color:#0f172a;
}

.intro-left p{
font-size:18px;
line-height:1.9;
color:#64748b;
margin-bottom:20px;
}

.intro-right{
background:linear-gradient(135deg,#0f172a,#2563eb);
padding:50px;
border-radius:28px;
color:white;
}

.intro-right h3{
font-size:34px;
margin-bottom:25px;
}

.intro-right ul{
list-style:none;
}

.intro-right li{
padding:10px 0;
font-size:16px;
}

/* ANIMATION */

@keyframes float{
0%{transform:translateY(0px);}
50%{transform:translateY(-18px);}
100%{transform:translateY(0px);}
}

/* RESPONSIVE */

@media(max-width:1100px){

.hero{
flex-direction:column;
padding-top:120px;
}

.hero-left{
width:100%;
text-align:center;
}

.hero-right{
width:100%;
margin-top:60px;
}

.hero-buttons{
justify-content:center;
}

.kpi-row{
justify-content:center;
}

.intro-container{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:20px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:42px;
}

.dashboard{
width:100%;
position:relative;
}

}

/* ====================================== */
/* ERP MODULES SECTION */
/* ====================================== */

.modules-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#f8fbff,#eef4ff);
}

.modules-container{
    max-width:1500px;
    margin:auto;
}

.modules-header{
    text-align:center;
    margin-bottom:70px;
}

.modules-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.modules-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.modules-description{
    max-width:950px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#64748b;
}

/* GRID */

.modules-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

/* CARD */

.module-card{
    background:white;
    padding:35px;
    border-radius:24px;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.module-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.module-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
}

.module-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:22px;
}

.module-card h3{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:14px;
}

.module-card p{
    color:#64748b;
    font-size:15px;
    line-height:1.8;
    margin-bottom:18px;
}

.module-list{
    list-style:none;
}

.module-list li{
    padding:5px 0;
    font-size:14px;
    color:#334155;
}

/* BUSINESS FLOW */

.business-flow{
    margin-top:90px;
    padding:60px;
    border-radius:30px;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
}

.business-flow h2{
    text-align:center;
    font-size:42px;
    margin-bottom:22px;
}

.business-flow p{
    text-align:center;
    max-width:1000px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
    margin-bottom:45px;
}

.flow-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.flow-box{
    background:rgba(255,255,255,0.08);
    padding:28px;
    border-radius:18px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.flow-box h4{
    margin-bottom:10px;
    font-size:18px;
}

.flow-box span{
    font-size:13px;
    opacity:0.85;
}

@media(max-width:1000px){

    .flow-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .modules-title{
        font-size:36px;
    }

    .flow-grid{
        grid-template-columns:1fr;
    }

    .business-flow{
        padding:35px;
    }

}

/* ====================================== */
/* ERP INTEGRATIONS SECTION */
/* ====================================== */

.integration-section{
    padding:120px 8%;
    background:#ffffff;
}

.integration-container{
    max-width:1500px;
    margin:auto;
}

.integration-header{
    text-align:center;
    margin-bottom:70px;
}

.integration-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.integration-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.integration-description{
    max-width:1000px;
    margin:auto;
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

/* GRID */

.integration-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

/* CARD */

.integration-card{
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.integration-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.integration-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
}

.integration-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:22px;
}

.integration-card h3{
    font-size:24px;
    margin-bottom:14px;
    color:#0f172a;
}

.integration-card p{
    color:#64748b;
    line-height:1.8;
    font-size:15px;
    margin-bottom:18px;
}

.integration-list{
    list-style:none;
}

.integration-list li{
    padding:5px 0;
    color:#334155;
    font-size:14px;
}

/* EXECUTIVE DASHBOARD */

.executive-panel{
    margin-top:90px;
    padding:70px;
    border-radius:30px;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
}

.executive-panel h2{
    text-align:center;
    font-size:42px;
    margin-bottom:25px;
}

.executive-panel p{
    text-align:center;
    max-width:1000px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
    margin-bottom:50px;
}

.exec-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.exec-card{
    background:rgba(255,255,255,0.08);
    padding:30px;
    border-radius:18px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.exec-card h4{
    margin-bottom:12px;
    font-size:18px;
}

.exec-card span{
    font-size:13px;
    opacity:0.9;
}

.exec-bar{
    margin-top:15px;
    height:10px;
    background:rgba(255,255,255,0.15);
    border-radius:20px;
    overflow:hidden;
}

.exec-fill{
    height:100%;
    background:#60a5fa;
}

/* ARCHITECTURE */

.architecture-box{
    margin-top:50px;
    padding:35px;
    background:#eff6ff;
    border-radius:20px;
    text-align:center;
}

.architecture-box h3{
    color:#0f172a;
    margin-bottom:18px;
    font-size:28px;
}

.arch-flow{
    font-size:20px;
    font-weight:700;
    color:#2563eb;
    line-height:1.8;
}

@media(max-width:1000px){

    .exec-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .integration-title{
        font-size:36px;
    }

    .exec-grid{
        grid-template-columns:1fr;
    }

    .executive-panel{
        padding:35px;
    }

}

/* ====================================== */
/* INDUSTRIES + DEMO + FOOTER */
/* ====================================== */

.industry-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#f8fbff,#eef4ff);
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.section-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
}

.section-desc{
    max-width:950px;
    margin:auto;
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

/* INDUSTRY GRID */

.industry-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.industry-card{
    padding:30px;
    background:white;
    border-radius:22px;
    border:1px solid #e2e8f0;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.3s;
}

.industry-card:hover{
    transform:translateY(-10px);
}

.industry-card h4{
    margin-bottom:12px;
    font-size:22px;
    color:#2563eb;
}

.industry-card p{
    color:#64748b;
    font-size:14px;
    line-height:1.7;
}

/* DEMO */

.demo-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
    text-align:center;
}

.demo-section h2{
    font-size:48px;
    margin-bottom:20px;
}

.demo-section p{
    max-width:900px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.demo-btn-large{
    padding:18px 30px;
    background:#2563eb;
    border:none;
    color:white;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

/* FOOTER */

.footer{
    background:#0f172a;
    color:white;
    padding:70px 8%;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}

.footer h3{
    margin-bottom:18px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    padding:8px 0;
    color:#cbd5e1;
}

.footer-bottom{
    margin-top:40px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    color:#94a3b8;
}

@media(max-width:1000px){

    .industry-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .section-title{
        font-size:36px;
    }

    .industry-grid{
        grid-template-columns:1fr;
    }

}

*{
margin:0;
padding:0;
box-sizing:border-box;

}

html{
scroll-behavior:smooth;
}

body{
background:#ffffff;
color:#111827;
overflow-x:hidden;
}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
width:100%;
z-index:999;
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 8%;
background:rgba(255,255,255,0.95);
backdrop-filter:blur(18px);
box-shadow:0 2px 20px rgba(0,0,0,0.04);
}

.logo{
font-size:28px;
font-weight:800;
color:#0f172a;
}

.logo span{
color:#2563eb;
}

.nav-links{
display:flex;
gap:35px;
}

.nav-links a{
text-decoration:none;
font-weight:600;
font-size:15px;
color:#0f172a;
transition:0.3s;
}

.nav-links a:hover{
color:#2563eb;
}

.demo-btn{
padding:12px 24px;
border:none;
border-radius:10px;
background:#2563eb;
color:white;
font-weight:600;
cursor:pointer;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
padding:0 8%;
background:
radial-gradient(circle at top left,#dbeafe 0%, transparent 30%),
radial-gradient(circle at bottom right,#eff6ff 0%, transparent 30%),
linear-gradient(135deg,#ffffff,#f8fbff);
overflow:hidden;
}

.hero-left{
width:55%;
}

.hero-badge{
display:inline-block;
padding:8px 18px;
background:#eff6ff;
border-radius:40px;
font-size:13px;
font-weight:700;
color:#2563eb;
margin-bottom:24px;
}

.hero h1{
font-size:66px;
font-weight:800;
line-height:1.05;
color:#0f172a;
margin-bottom:28px;
}

.hero h1 span{
color:#2563eb;
}

.hero p{
font-size:20px;
color:#64748b;
line-height:1.8;
max-width:700px;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:18px;
margin-bottom:45px;
}

.primary-btn{
padding:14px 24px;
border:none;
background:#2563eb;
color:white;
border-radius:10px;
font-weight:700;
cursor:pointer;
}

.secondary-btn{
padding:14px 24px;
background:white;
border:1px solid #dbeafe;
border-radius:10px;
font-weight:700;
cursor:pointer;
}

/* KPI */

.kpi-row{
display:flex;
gap:40px;
}

.kpi h3{
font-size:32px;
margin-bottom:6px;
color:#0f172a;
}

.kpi p{
font-size:14px;
color:#64748b;
}

/* DASHBOARD */

.hero-right{
width:45%;
position:relative;
height:700px;
}

.dashboard{
position:absolute;
right:0;
top:120px;
width:550px;
height:410px;
background:white;
border-radius:26px;
box-shadow:0 25px 60px rgba(0,0,0,0.1);
padding:30px;
animation:float 6s infinite ease-in-out;
}

.dashboard h3{
margin-bottom:25px;
font-size:20px;
}

.dashboard-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.widget{
height:130px;
border-radius:18px;
background:linear-gradient(135deg,#eff6ff,#ffffff);
padding:18px;
border:1px solid #dbeafe;
}

.widget h4{
font-size:14px;
margin-bottom:14px;
}

.bar{
height:10px;
background:#dbeafe;
border-radius:20px;
}

.fill{
height:100%;
background:#2563eb;
border-radius:20px;
}

.floating{
position:absolute;
width:220px;
padding:22px;
background:white;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,0.06);
}

.card1{
top:50px;
left:20px;
animation:float 5s infinite ease-in-out;
}

.card2{
bottom:90px;
left:-20px;
animation:float 7s infinite ease-in-out;
}

.card3{
bottom:20px;
right:40px;
animation:float 6s infinite ease-in-out;
}

.floating h4{
margin-bottom:10px;
font-size:14px;
}

.progress{
height:10px;
background:#e2e8f0;
border-radius:20px;
overflow:hidden;
}

.progress span{
display:block;
height:100%;
background:#2563eb;
}

/* INTRO */

.intro{
padding:120px 8%;
background:white;
}

.intro-container{
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.intro-left h2{
font-size:48px;
font-weight:800;
margin-bottom:25px;
color:#0f172a;
}

.intro-left p{
font-size:18px;
line-height:1.9;
color:#64748b;
margin-bottom:20px;
}

.intro-right{
background:linear-gradient(135deg,#0f172a,#2563eb);
padding:50px;
border-radius:28px;
color:white;
}

.intro-right h3{
font-size:34px;
margin-bottom:25px;
}

.intro-right ul{
list-style:none;
}

.intro-right li{
padding:10px 0;
font-size:16px;
}

/* ANIMATION */

@keyframes float{
0%{transform:translateY(0px);}
50%{transform:translateY(-18px);}
100%{transform:translateY(0px);}
}

/* RESPONSIVE */

@media(max-width:1100px){

.hero{
flex-direction:column;
padding-top:120px;
}

.hero-left{
width:100%;
text-align:center;
}

.hero-right{
width:100%;
margin-top:60px;
}

.hero-buttons{
justify-content:center;
}

.kpi-row{
justify-content:center;
}

.intro-container{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:20px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:42px;
}

.dashboard{
width:100%;
position:relative;
}

}

/* ====================================== */
/* WIMS MODULES SECTION */
/* ====================================== */

.modules-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#f8fbff,#eef4ff);
}

.modules-container{
    max-width:1500px;
    margin:auto;
}

.modules-header{
    text-align:center;
    margin-bottom:70px;
}

.modules-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.modules-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.modules-description{
    max-width:950px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#64748b;
}

/* GRID */

.modules-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

/* CARD */

.module-card{
    background:white;
    padding:35px;
    border-radius:24px;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.module-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.module-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
}

.module-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:22px;
}

.module-card h3{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:14px;
}

.module-card p{
    color:#64748b;
    font-size:15px;
    line-height:1.8;
    margin-bottom:18px;
}

.module-list{
    list-style:none;
}

.module-list li{
    padding:5px 0;
    font-size:14px;
    color:#334155;
}

/* WAREHOUSE FLOW */

.warehouse-flow{
    margin-top:90px;
    padding:60px;
    border-radius:30px;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
}

.warehouse-flow h2{
    text-align:center;
    font-size:42px;
    margin-bottom:22px;
}

.warehouse-flow p{
    text-align:center;
    max-width:1000px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
    margin-bottom:45px;
}

.flow-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.flow-box{
    background:rgba(255,255,255,0.08);
    padding:28px;
    border-radius:18px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.flow-box h4{
    margin-bottom:10px;
    font-size:18px;
}

.flow-box span{
    font-size:13px;
    opacity:0.85;
}

@media(max-width:1000px){

    .flow-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .modules-title{
        font-size:36px;
    }

    .flow-grid{
        grid-template-columns:1fr;
    }

    .warehouse-flow{
        padding:35px;
    }

}

/* ====================================== */
/* AUTOMATION + CONNECTIVITY SECTION */
/* ====================================== */

.integration-section{
    padding:120px 8%;
    background:#ffffff;
}

.integration-container{
    max-width:1500px;
    margin:auto;
}

.integration-header{
    text-align:center;
    margin-bottom:70px;
}

.integration-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.integration-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.integration-description{
    max-width:1000px;
    margin:auto;
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

/* GRID */

.integration-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

/* CARD */

.integration-card{
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.integration-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.integration-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
}

.integration-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:22px;
}

.integration-card h3{
    font-size:24px;
    margin-bottom:14px;
    color:#0f172a;
}

.integration-card p{
    color:#64748b;
    line-height:1.8;
    font-size:15px;
    margin-bottom:18px;
}

.integration-list{
    list-style:none;
}

.integration-list li{
    padding:5px 0;
    color:#334155;
    font-size:14px;
}

/* ANALYTICS */

.analytics-panel{
    margin-top:90px;
    padding:70px;
    border-radius:30px;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
}

.analytics-panel h2{
    text-align:center;
    font-size:42px;
    margin-bottom:25px;
}

.analytics-panel p{
    text-align:center;
    max-width:1000px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
    margin-bottom:50px;
}

.analytics-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.analytics-card{
    background:rgba(255,255,255,0.08);
    padding:30px;
    border-radius:18px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.analytics-card h4{
    margin-bottom:12px;
    font-size:18px;
}

.analytics-card span{
    font-size:13px;
    opacity:0.9;
}

.analytics-bar{
    margin-top:15px;
    height:10px;
    background:rgba(255,255,255,0.15);
    border-radius:20px;
    overflow:hidden;
}

.analytics-fill{
    height:100%;
    background:#60a5fa;
}

/* ARCHITECTURE */

.architecture-box{
    margin-top:50px;
    padding:35px;
    background:#eff6ff;
    border-radius:20px;
    text-align:center;
}

.architecture-box h3{
    color:#0f172a;
    margin-bottom:18px;
    font-size:28px;
}

.arch-flow{
    font-size:20px;
    font-weight:700;
    color:#2563eb;
    line-height:1.8;
}

@media(max-width:1000px){

    .analytics-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .integration-title{
        font-size:36px;
    }

    .analytics-grid{
        grid-template-columns:1fr;
    }

    .analytics-panel{
        padding:35px;
    }

}

/* ====================================== */
/* INDUSTRIES + DEMO + FOOTER */
/* ====================================== */

.industry-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#f8fbff,#eef4ff);
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.section-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
}

.section-desc{
    max-width:950px;
    margin:auto;
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

/* INDUSTRY GRID */

.industry-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.industry-card{
    padding:30px;
    background:white;
    border-radius:22px;
    border:1px solid #e2e8f0;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.3s;
}

.industry-card:hover{
    transform:translateY(-10px);
}

.industry-card h4{
    margin-bottom:12px;
    font-size:22px;
    color:#2563eb;
}

.industry-card p{
    color:#64748b;
    font-size:14px;
    line-height:1.7;
}

/* DEMO */

.demo-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
    text-align:center;
}

.demo-section h2{
    font-size:48px;
    margin-bottom:20px;
}

.demo-section p{
    max-width:900px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.demo-btn-large{
    padding:18px 30px;
    background:#2563eb;
    border:none;
    color:white;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

/* FOOTER */

.footer{
    background:#0f172a;
    color:white;
    padding:70px 8%;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}

.footer h3{
    margin-bottom:18px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    padding:8px 0;
    color:#cbd5e1;
}

.footer-bottom{
    margin-top:40px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    color:#94a3b8;
}

@media(max-width:1000px){

    .industry-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .section-title{
        font-size:36px;
    }

    .industry-grid{
        grid-template-columns:1fr;
    }

}

*{
margin:0;
padding:0;
box-sizing:border-box;

}

html{
scroll-behavior:smooth;
}

body{
background:#ffffff;
color:#111827;
overflow-x:hidden;
}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
width:100%;
z-index:999;
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 8%;
background:rgba(255,255,255,0.95);
backdrop-filter:blur(18px);
box-shadow:0 2px 20px rgba(0,0,0,0.04);
}

.logo{
font-size:28px;
font-weight:800;
color:#0f172a;
}

.logo span{
color:#2563eb;
}

.nav-links{
display:flex;
gap:35px;
}

.nav-links a{
text-decoration:none;
font-weight:600;
font-size:15px;
color:#0f172a;
transition:0.3s;
}

.nav-links a:hover{
color:#2563eb;
}

.demo-btn{
padding:12px 24px;
border:none;
border-radius:10px;
background:#2563eb;
color:white;
font-weight:600;
cursor:pointer;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
padding:0 8%;
background:
radial-gradient(circle at top left,#dbeafe 0%, transparent 30%),
radial-gradient(circle at bottom right,#eff6ff 0%, transparent 30%),
linear-gradient(135deg,#ffffff,#f8fbff);
overflow:hidden;
}

.hero-left{
width:55%;
}

.hero-badge{
display:inline-block;
padding:8px 18px;
background:#eff6ff;
border-radius:40px;
font-size:13px;
font-weight:700;
color:#2563eb;
margin-bottom:24px;
}

.hero h1{
font-size:66px;
font-weight:800;
line-height:1.05;
color:#0f172a;
margin-bottom:28px;
}

.hero h1 span{
color:#2563eb;
}

.hero p{
font-size:20px;
color:#64748b;
line-height:1.8;
max-width:700px;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:18px;
margin-bottom:45px;
}

.primary-btn{
padding:14px 24px;
border:none;
background:#2563eb;
color:white;
border-radius:10px;
font-weight:700;
cursor:pointer;
}

.secondary-btn{
padding:14px 24px;
background:white;
border:1px solid #dbeafe;
border-radius:10px;
font-weight:700;
cursor:pointer;
}

/* KPI */

.kpi-row{
display:flex;
gap:40px;
}

.kpi h3{
font-size:32px;
margin-bottom:6px;
color:#0f172a;
}

.kpi p{
font-size:14px;
color:#64748b;
}

/* DASHBOARD */

.hero-right{
width:45%;
position:relative;
height:700px;
}

.dashboard{
position:absolute;
right:0;
top:120px;
width:550px;
height:410px;
background:white;
border-radius:26px;
box-shadow:0 25px 60px rgba(0,0,0,0.1);
padding:30px;
animation:float 6s infinite ease-in-out;
}

.dashboard h3{
margin-bottom:25px;
font-size:20px;
}

.dashboard-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.widget{
height:130px;
border-radius:18px;
background:linear-gradient(135deg,#eff6ff,#ffffff);
padding:18px;
border:1px solid #dbeafe;
}

.widget h4{
font-size:14px;
margin-bottom:14px;
}

.bar{
height:10px;
background:#dbeafe;
border-radius:20px;
}

.fill{
height:100%;
background:#2563eb;
border-radius:20px;
}

.floating{
position:absolute;
width:220px;
padding:22px;
background:white;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,0.06);
}

.card1{
top:50px;
left:20px;
animation:float 5s infinite ease-in-out;
}

.card2{
bottom:90px;
left:-20px;
animation:float 7s infinite ease-in-out;
}

.card3{
bottom:20px;
right:40px;
animation:float 6s infinite ease-in-out;
}

.floating h4{
margin-bottom:10px;
font-size:14px;
}

.progress{
height:10px;
background:#e2e8f0;
border-radius:20px;
overflow:hidden;
}

.progress span{
display:block;
height:100%;
background:#2563eb;
}

/* INTRO */

.intro{
padding:120px 8%;
background:white;
}

.intro-container{
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.intro-left h2{
font-size:48px;
font-weight:800;
margin-bottom:25px;
color:#0f172a;
}

.intro-left p{
font-size:18px;
line-height:1.9;
color:#64748b;
margin-bottom:20px;
}

.intro-right{
background:linear-gradient(135deg,#0f172a,#2563eb);
padding:50px;
border-radius:28px;
color:white;
}

.intro-right h3{
font-size:34px;
margin-bottom:25px;
}

.intro-right ul{
list-style:none;
}

.intro-right li{
padding:10px 0;
font-size:16px;
}

/* ANIMATION */

@keyframes float{
0%{transform:translateY(0px);}
50%{transform:translateY(-18px);}
100%{transform:translateY(0px);}
}

/* RESPONSIVE */

@media(max-width:1100px){

.hero{
flex-direction:column;
padding-top:120px;
}

.hero-left{
width:100%;
text-align:center;
}

.hero-right{
width:100%;
margin-top:60px;
}

.hero-buttons{
justify-content:center;
}

.kpi-row{
justify-content:center;
}

.intro-container{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:20px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:42px;
}

.dashboard{
width:100%;
position:relative;
}

}

/* ====================================== */
/* CRM MODULES SECTION */
/* ====================================== */

.modules-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#f8fbff,#eef4ff);
}

.modules-container{
    max-width:1500px;
    margin:auto;
}

.modules-header{
    text-align:center;
    margin-bottom:70px;
}

.modules-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.modules-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.modules-description{
    max-width:950px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#64748b;
}

/* GRID */

.modules-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

/* CARD */

.module-card{
    background:white;
    padding:35px;
    border-radius:24px;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.module-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.module-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
}

.module-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:22px;
}

.module-card h3{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:14px;
}

.module-card p{
    color:#64748b;
    font-size:15px;
    line-height:1.8;
    margin-bottom:18px;
}

.module-list{
    list-style:none;
}

.module-list li{
    padding:5px 0;
    font-size:14px;
    color:#334155;
}

/* SALES FLOW */

.sales-flow{
    margin-top:90px;
    padding:60px;
    border-radius:30px;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
}

.sales-flow h2{
    text-align:center;
    font-size:42px;
    margin-bottom:22px;
}

.sales-flow p{
    text-align:center;
    max-width:1000px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
    margin-bottom:45px;
}

.flow-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.flow-box{
    background:rgba(255,255,255,0.08);
    padding:28px;
    border-radius:18px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.flow-box h4{
    margin-bottom:10px;
    font-size:18px;
}

.flow-box span{
    font-size:13px;
    opacity:0.85;
}

@media(max-width:1000px){

    .flow-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .modules-title{
        font-size:36px;
    }

    .flow-grid{
        grid-template-columns:1fr;
    }

    .sales-flow{
        padding:35px;
    }

}

/* ====================================== */
/* CRM AUTOMATION + INTEGRATIONS */
/* ====================================== */

.integration-section{
    padding:120px 8%;
    background:#ffffff;
}

.integration-container{
    max-width:1500px;
    margin:auto;
}

.integration-header{
    text-align:center;
    margin-bottom:70px;
}

.integration-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.integration-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.integration-description{
    max-width:1000px;
    margin:auto;
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

/* GRID */

.integration-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

/* CARD */

.integration-card{
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.integration-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.integration-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
}

.integration-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:22px;
}

.integration-card h3{
    font-size:24px;
    margin-bottom:14px;
    color:#0f172a;
}

.integration-card p{
    color:#64748b;
    line-height:1.8;
    font-size:15px;
    margin-bottom:18px;
}

.integration-list{
    list-style:none;
}

.integration-list li{
    padding:5px 0;
    color:#334155;
    font-size:14px;
}

/* ANALYTICS */

.analytics-panel{
    margin-top:90px;
    padding:70px;
    border-radius:30px;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
}

.analytics-panel h2{
    text-align:center;
    font-size:42px;
    margin-bottom:25px;
}

.analytics-panel p{
    text-align:center;
    max-width:1000px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
    margin-bottom:50px;
}

.analytics-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.analytics-card{
    background:rgba(255,255,255,0.08);
    padding:30px;
    border-radius:18px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.analytics-card h4{
    margin-bottom:12px;
    font-size:18px;
}

.analytics-card span{
    font-size:13px;
    opacity:0.9;
}

.analytics-bar{
    margin-top:15px;
    height:10px;
    background:rgba(255,255,255,0.15);
    border-radius:20px;
    overflow:hidden;
}

.analytics-fill{
    height:100%;
    background:#60a5fa;
}

/* ARCHITECTURE */

.architecture-box{
    margin-top:50px;
    padding:35px;
    background:#eff6ff;
    border-radius:20px;
    text-align:center;
}

.architecture-box h3{
    color:#0f172a;
    margin-bottom:18px;
    font-size:28px;
}

.arch-flow{
    font-size:20px;
    font-weight:700;
    color:#2563eb;
    line-height:1.8;
}

@media(max-width:1000px){

    .analytics-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .integration-title{
        font-size:36px;
    }

    .analytics-grid{
        grid-template-columns:1fr;
    }

    .analytics-panel{
        padding:35px;
    }

}

/* ====================================== */
/* INDUSTRIES + DEMO + FOOTER */
/* ====================================== */

.industry-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#f8fbff,#eef4ff);
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.section-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
}

.section-desc{
    max-width:950px;
    margin:auto;
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

/* INDUSTRY GRID */

.industry-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.industry-card{
    padding:30px;
    background:white;
    border-radius:22px;
    border:1px solid #e2e8f0;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.3s;
}

.industry-card:hover{
    transform:translateY(-10px);
}

.industry-card h4{
    margin-bottom:12px;
    font-size:22px;
    color:#2563eb;
}

.industry-card p{
    color:#64748b;
    font-size:14px;
    line-height:1.7;
}

/* DEMO */

.demo-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
    text-align:center;
}

.demo-section h2{
    font-size:48px;
    margin-bottom:20px;
}

.demo-section p{
    max-width:900px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.demo-btn-large{
    padding:18px 30px;
    background:#2563eb;
    border:none;
    color:white;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

/* FOOTER */

.footer{
    background:#0f172a;
    color:white;
    padding:70px 8%;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}

.footer h3{
    margin-bottom:18px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    padding:8px 0;
    color:#cbd5e1;
}

.footer-bottom{
    margin-top:40px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    color:#94a3b8;
}

@media(max-width:1000px){

    .industry-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .section-title{
        font-size:36px;
    }

    .industry-grid{
        grid-template-columns:1fr;
    }

}

*{
margin:0;
padding:0;
box-sizing:border-box;

}

html{
scroll-behavior:smooth;
}

body{
background:#ffffff;
color:#111827;
overflow-x:hidden;
}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
width:100%;
z-index:999;
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 8%;
background:rgba(255,255,255,0.95);
backdrop-filter:blur(18px);
box-shadow:0 2px 20px rgba(0,0,0,0.04);
}

.logo{
font-size:28px;
font-weight:800;
color:#0f172a;
}

.logo span{
color:#2563eb;
}

.nav-links{
display:flex;
gap:35px;
}

.nav-links a{
text-decoration:none;
font-weight:600;
font-size:15px;
color:#0f172a;
transition:0.3s;
}

.nav-links a:hover{
color:#2563eb;
}

.demo-btn{
padding:12px 24px;
border:none;
border-radius:10px;
background:#2563eb;
color:white;
font-weight:600;
cursor:pointer;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
padding:0 8%;
background:
radial-gradient(circle at top left,#dbeafe 0%, transparent 30%),
radial-gradient(circle at bottom right,#eff6ff 0%, transparent 30%),
linear-gradient(135deg,#ffffff,#f8fbff);
overflow:hidden;
}

.hero-left{
width:55%;
}

.hero-badge{
display:inline-block;
padding:8px 18px;
background:#eff6ff;
border-radius:40px;
font-size:13px;
font-weight:700;
color:#2563eb;
margin-bottom:24px;
}

.hero h1{
font-size:66px;
font-weight:800;
line-height:1.05;
color:#0f172a;
margin-bottom:28px;
}

.hero h1 span{
color:#2563eb;
}

.hero p{
font-size:20px;
color:#64748b;
line-height:1.8;
max-width:700px;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:18px;
margin-bottom:45px;
}

.primary-btn{
padding:14px 24px;
border:none;
background:#2563eb;
color:white;
border-radius:10px;
font-weight:700;
cursor:pointer;
}

.secondary-btn{
padding:14px 24px;
background:white;
border:1px solid #dbeafe;
border-radius:10px;
font-weight:700;
cursor:pointer;
}

/* KPI */

.kpi-row{
display:flex;
gap:40px;
}

.kpi h3{
font-size:32px;
margin-bottom:6px;
color:#0f172a;
}

.kpi p{
font-size:14px;
color:#64748b;
}

/* DASHBOARD */

.hero-right{
width:45%;
position:relative;
height:700px;
}

.dashboard{
position:absolute;
right:0;
top:120px;
width:550px;
height:410px;
background:white;
border-radius:26px;
box-shadow:0 25px 60px rgba(0,0,0,0.1);
padding:30px;
animation:float 6s infinite ease-in-out;
}

.dashboard h3{
margin-bottom:25px;
font-size:20px;
}

.dashboard-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.widget{
height:130px;
border-radius:18px;
background:linear-gradient(135deg,#eff6ff,#ffffff);
padding:18px;
border:1px solid #dbeafe;
}

.widget h4{
font-size:14px;
margin-bottom:14px;
}

.bar{
height:10px;
background:#dbeafe;
border-radius:20px;
}

.fill{
height:100%;
background:#2563eb;
border-radius:20px;
}

.floating{
position:absolute;
width:220px;
padding:22px;
background:white;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,0.06);
}

.card1{
top:50px;
left:20px;
animation:float 5s infinite ease-in-out;
}

.card2{
bottom:90px;
left:-20px;
animation:float 7s infinite ease-in-out;
}

.card3{
bottom:20px;
right:40px;
animation:float 6s infinite ease-in-out;
}

.floating h4{
margin-bottom:10px;
font-size:14px;
}

.progress{
height:10px;
background:#e2e8f0;
border-radius:20px;
overflow:hidden;
}

.progress span{
display:block;
height:100%;
background:#2563eb;
}

/* INTRO */

.intro{
padding:120px 8%;
background:white;
}

.intro-container{
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.intro-left h2{
font-size:48px;
font-weight:800;
margin-bottom:25px;
color:#0f172a;
}

.intro-left p{
font-size:18px;
line-height:1.9;
color:#64748b;
margin-bottom:20px;
}

.intro-right{
background:linear-gradient(135deg,#0f172a,#2563eb);
padding:50px;
border-radius:28px;
color:white;
}

.intro-right h3{
font-size:34px;
margin-bottom:25px;
}

.intro-right ul{
list-style:none;
}

.intro-right li{
padding:10px 0;
font-size:16px;
}

/* ANIMATION */

@keyframes float{
0%{transform:translateY(0px);}
50%{transform:translateY(-18px);}
100%{transform:translateY(0px);}
}

/* RESPONSIVE */

@media(max-width:1100px){

.hero{
flex-direction:column;
padding-top:120px;
}

.hero-left{
width:100%;
text-align:center;
}

.hero-right{
width:100%;
margin-top:60px;
}

.hero-buttons{
justify-content:center;
}

.kpi-row{
justify-content:center;
}

.intro-container{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:20px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:42px;
}

.dashboard{
width:100%;
position:relative;
}

}

/* ====================================== */
/* HRMS MODULES SECTION */
/* ====================================== */

.modules-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#f8fbff,#eef4ff);
}

.modules-container{
    max-width:1500px;
    margin:auto;
}

.modules-header{
    text-align:center;
    margin-bottom:70px;
}

.modules-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.modules-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.modules-description{
    max-width:950px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#64748b;
}

/* GRID */

.modules-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

/* CARD */

.module-card{
    background:white;
    padding:35px;
    border-radius:24px;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.module-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.module-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
}

.module-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:22px;
}

.module-card h3{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:14px;
}

.module-card p{
    color:#64748b;
    font-size:15px;
    line-height:1.8;
    margin-bottom:18px;
}

.module-list{
    list-style:none;
}

.module-list li{
    padding:5px 0;
    font-size:14px;
    color:#334155;
}

/* WORKFLOW */

.hr-flow{
    margin-top:90px;
    padding:60px;
    border-radius:30px;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
}

.hr-flow h2{
    text-align:center;
    font-size:42px;
    margin-bottom:22px;
}

.hr-flow p{
    text-align:center;
    max-width:1000px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
    margin-bottom:45px;
}

.flow-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.flow-box{
    background:rgba(255,255,255,0.08);
    padding:28px;
    border-radius:18px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.flow-box h4{
    margin-bottom:10px;
    font-size:18px;
}

.flow-box span{
    font-size:13px;
    opacity:0.85;
}

@media(max-width:1000px){
    .flow-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .modules-title{
        font-size:36px;
    }

    .flow-grid{
        grid-template-columns:1fr;
    }

    .hr-flow{
        padding:35px;
    }

}

/* ====================================== */
/* AUTOMATION + ENTERPRISE INTEGRATION */
/* ====================================== */

.integration-section{
    padding:120px 8%;
    background:#ffffff;
}

.integration-container{
    max-width:1500px;
    margin:auto;
}

.integration-header{
    text-align:center;
    margin-bottom:70px;
}

.integration-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.integration-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.integration-description{
    max-width:1000px;
    margin:auto;
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

/* GRID */

.integration-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

/* CARD */

.integration-card{
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.integration-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.integration-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
}

.integration-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:22px;
}

.integration-card h3{
    font-size:24px;
    margin-bottom:14px;
    color:#0f172a;
}

.integration-card p{
    color:#64748b;
    line-height:1.8;
    font-size:15px;
    margin-bottom:18px;
}

.integration-list{
    list-style:none;
}

.integration-list li{
    padding:5px 0;
    color:#334155;
    font-size:14px;
}

/* ANALYTICS */

.analytics-panel{
    margin-top:90px;
    padding:70px;
    border-radius:30px;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
}

.analytics-panel h2{
    text-align:center;
    font-size:42px;
    margin-bottom:25px;
}

.analytics-panel p{
    text-align:center;
    max-width:1000px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
    margin-bottom:50px;
}

.analytics-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.analytics-card{
    background:rgba(255,255,255,0.08);
    padding:30px;
    border-radius:18px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.analytics-card h4{
    margin-bottom:12px;
    font-size:18px;
}

.analytics-card span{
    font-size:13px;
    opacity:0.9;
}

.analytics-bar{
    margin-top:15px;
    height:10px;
    background:rgba(255,255,255,0.15);
    border-radius:20px;
    overflow:hidden;
}

.analytics-fill{
    height:100%;
    background:#60a5fa;
}

/* ARCHITECTURE */

.architecture-box{
    margin-top:50px;
    padding:35px;
    background:#eff6ff;
    border-radius:20px;
    text-align:center;
}

.architecture-box h3{
    color:#0f172a;
    margin-bottom:18px;
    font-size:28px;
}

.arch-flow{
    font-size:20px;
    font-weight:700;
    color:#2563eb;
    line-height:1.8;
}

@media(max-width:1000px){

    .analytics-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .integration-title{
        font-size:36px;
    }

    .analytics-grid{
        grid-template-columns:1fr;
    }

    .analytics-panel{
        padding:35px;
    }

}

/* ====================================== */
/* INDUSTRIES + DEMO + FOOTER */
/* ====================================== */

.industry-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#f8fbff,#eef4ff);
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.section-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
}

.section-desc{
    max-width:950px;
    margin:auto;
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

/* INDUSTRY GRID */

.industry-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.industry-card{
    padding:30px;
    background:white;
    border-radius:22px;
    border:1px solid #e2e8f0;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.3s;
}

.industry-card:hover{
    transform:translateY(-10px);
}

.industry-card h4{
    margin-bottom:12px;
    font-size:22px;
    color:#2563eb;
}

.industry-card p{
    color:#64748b;
    font-size:14px;
    line-height:1.7;
}

/* DEMO */

.demo-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
    text-align:center;
}

.demo-section h2{
    font-size:48px;
    margin-bottom:20px;
}

.demo-section p{
    max-width:900px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.demo-btn-large{
    padding:18px 30px;
    background:#2563eb;
    border:none;
    color:white;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

/* FOOTER */

.footer{
    background:#0f172a;
    color:white;
    padding:70px 8%;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}

.footer h3{
    margin-bottom:18px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    padding:8px 0;
    color:#cbd5e1;
}

.footer-bottom{
    margin-top:40px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    color:#94a3b8;
}

@media(max-width:1000px){

    .industry-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .section-title{
        font-size:36px;
    }

    .industry-grid{
        grid-template-columns:1fr;
    }

}

*{
margin:0;
padding:0;
box-sizing:border-box;

}

html{
scroll-behavior:smooth;
}

body{
background:#ffffff;
color:#111827;
overflow-x:hidden;
}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
width:100%;
z-index:999;
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 8%;
background:rgba(255,255,255,0.95);
backdrop-filter:blur(18px);
box-shadow:0 2px 20px rgba(0,0,0,0.04);
}

.logo{
font-size:28px;
font-weight:800;
color:#0f172a;
}

.logo span{
color:#2563eb;
}

.nav-links{
display:flex;
gap:35px;
}

.nav-links a{
text-decoration:none;
font-weight:600;
font-size:15px;
color:#0f172a;
transition:0.3s;
}

.nav-links a:hover{
color:#2563eb;
}

.demo-btn{
padding:12px 24px;
border:none;
border-radius:10px;
background:#2563eb;
color:white;
font-weight:600;
cursor:pointer;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
padding:0 8%;
background:
radial-gradient(circle at top left,#dbeafe 0%, transparent 30%),
radial-gradient(circle at bottom right,#eff6ff 0%, transparent 30%),
linear-gradient(135deg,#ffffff,#f8fbff);
overflow:hidden;
}

.hero-left{
width:55%;
}

.hero-badge{
display:inline-block;
padding:8px 18px;
background:#eff6ff;
border-radius:40px;
font-size:13px;
font-weight:700;
color:#2563eb;
margin-bottom:24px;
}

.hero h1{
font-size:66px;
font-weight:800;
line-height:1.05;
color:#0f172a;
margin-bottom:28px;
}

.hero h1 span{
color:#2563eb;
}

.hero p{
font-size:20px;
color:#64748b;
line-height:1.8;
max-width:700px;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:18px;
margin-bottom:45px;
}

.primary-btn{
padding:14px 24px;
border:none;
background:#2563eb;
color:white;
border-radius:10px;
font-weight:700;
cursor:pointer;
}

.secondary-btn{
padding:14px 24px;
background:white;
border:1px solid #dbeafe;
border-radius:10px;
font-weight:700;
cursor:pointer;
}

/* KPI */

.kpi-row{
display:flex;
gap:40px;
}

.kpi h3{
font-size:32px;
margin-bottom:6px;
color:#0f172a;
}

.kpi p{
font-size:14px;
color:#64748b;
}

/* DASHBOARD */

.hero-right{
width:45%;
position:relative;
height:700px;
}

.dashboard{
position:absolute;
right:0;
top:120px;
width:550px;
height:410px;
background:white;
border-radius:26px;
box-shadow:0 25px 60px rgba(0,0,0,0.1);
padding:30px;
animation:float 6s infinite ease-in-out;
}

.dashboard h3{
margin-bottom:25px;
font-size:20px;
}

.dashboard-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.widget{
height:130px;
border-radius:18px;
background:linear-gradient(135deg,#eff6ff,#ffffff);
padding:18px;
border:1px solid #dbeafe;
}

.widget h4{
font-size:14px;
margin-bottom:14px;
}

.bar{
height:10px;
background:#dbeafe;
border-radius:20px;
}

.fill{
height:100%;
background:#2563eb;
border-radius:20px;
}

.floating{
position:absolute;
width:220px;
padding:22px;
background:white;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,0.06);
}

.card1{
top:50px;
left:20px;
animation:float 5s infinite ease-in-out;
}

.card2{
bottom:90px;
left:-20px;
animation:float 7s infinite ease-in-out;
}

.card3{
bottom:20px;
right:40px;
animation:float 6s infinite ease-in-out;
}

.floating h4{
margin-bottom:10px;
font-size:14px;
}

.progress{
height:10px;
background:#e2e8f0;
border-radius:20px;
overflow:hidden;
}

.progress span{
display:block;
height:100%;
background:#2563eb;
}

/* INTRO */

.intro{
padding:120px 8%;
background:white;
}

.intro-container{
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.intro-left h2{
font-size:48px;
font-weight:800;
margin-bottom:25px;
color:#0f172a;
}

.intro-left p{
font-size:18px;
line-height:1.9;
color:#64748b;
margin-bottom:20px;
}

.intro-right{
background:linear-gradient(135deg,#0f172a,#2563eb);
padding:50px;
border-radius:28px;
color:white;
}

.intro-right h3{
font-size:34px;
margin-bottom:25px;
}

.intro-right ul{
list-style:none;
}

.intro-right li{
padding:10px 0;
font-size:16px;
}

/* ANIMATION */

@keyframes float{
0%{transform:translateY(0px);}
50%{transform:translateY(-18px);}
100%{transform:translateY(0px);}
}

/* RESPONSIVE */

@media(max-width:1100px){

.hero{
flex-direction:column;
padding-top:120px;
}

.hero-left{
width:100%;
text-align:center;
}

.hero-right{
width:100%;
margin-top:60px;
}

.hero-buttons{
justify-content:center;
}

.kpi-row{
justify-content:center;
}

.intro-container{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:20px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:42px;
}

.dashboard{
width:100%;
position:relative;
}

}

/* ====================================== */
/* HMS MODULES SECTION */
/* ====================================== */

.modules-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#f8fbff,#eef4ff);
}

.modules-container{
    max-width:1500px;
    margin:auto;
}

.modules-header{
    text-align:center;
    margin-bottom:70px;
}

.modules-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.modules-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.modules-description{
    max-width:950px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#64748b;
}

/* GRID */

.modules-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

/* CARD */

.module-card{
    background:white;
    padding:35px;
    border-radius:24px;
    border:1px solid #e2e8f0;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.module-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.module-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
}

.module-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:22px;
}

.module-card h3{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:14px;
}

.module-card p{
    color:#64748b;
    font-size:15px;
    line-height:1.8;
    margin-bottom:18px;
}

.module-list{
    list-style:none;
}

.module-list li{
    padding:5px 0;
    font-size:14px;
    color:#334155;
}

/* HOSPITAL FLOW */

.hospital-flow{
    margin-top:90px;
    padding:60px;
    border-radius:30px;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
}

.hospital-flow h2{
    text-align:center;
    font-size:42px;
    margin-bottom:22px;
}

.hospital-flow p{
    text-align:center;
    max-width:1000px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
    margin-bottom:45px;
}

.flow-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.flow-box{
    background:rgba(255,255,255,0.08);
    padding:28px;
    border-radius:18px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.flow-box h4{
    margin-bottom:10px;
    font-size:18px;
}

.flow-box span{
    font-size:13px;
    opacity:0.85;
}

@media(max-width:1000px){
    .flow-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .modules-title{
        font-size:36px;
    }

    .flow-grid{
        grid-template-columns:1fr;
    }

    .hospital-flow{
        padding:35px;
    }

}

/* ====================================== */
/* HEALTHCARE AUTOMATION + INTEGRATIONS */
/* ====================================== */

.integration-section{
    padding:120px 8%;
    background:#ffffff;
}

.integration-container{
    max-width:1500px;
    margin:auto;
}

.integration-header{
    text-align:center;
    margin-bottom:70px;
}

.integration-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.integration-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.integration-description{
    max-width:1000px;
    margin:auto;
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

/* GRID */

.integration-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

/* CARD */

.integration-card{
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.integration-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.integration-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
}

.integration-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:22px;
}

.integration-card h3{
    font-size:24px;
    margin-bottom:14px;
    color:#0f172a;
}

.integration-card p{
    color:#64748b;
    line-height:1.8;
    font-size:15px;
    margin-bottom:18px;
}

.integration-list{
    list-style:none;
}

.integration-list li{
    padding:5px 0;
    color:#334155;
    font-size:14px;
}

/* ANALYTICS */

.analytics-panel{
    margin-top:90px;
    padding:70px;
    border-radius:30px;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
}

.analytics-panel h2{
    text-align:center;
    font-size:42px;
    margin-bottom:25px;
}

.analytics-panel p{
    text-align:center;
    max-width:1000px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
    margin-bottom:50px;
}

.analytics-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.analytics-card{
    background:rgba(255,255,255,0.08);
    padding:30px;
    border-radius:18px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.analytics-card h4{
    margin-bottom:12px;
    font-size:18px;
}

.analytics-card span{
    font-size:13px;
    opacity:0.9;
}

.analytics-bar{
    margin-top:15px;
    height:10px;
    background:rgba(255,255,255,0.15);
    border-radius:20px;
    overflow:hidden;
}

.analytics-fill{
    height:100%;
    background:#60a5fa;
}

/* ARCHITECTURE */

.architecture-box{
    margin-top:50px;
    padding:35px;
    background:#eff6ff;
    border-radius:20px;
    text-align:center;
}

.architecture-box h3{
    color:#0f172a;
    margin-bottom:18px;
    font-size:28px;
}

.arch-flow{
    font-size:20px;
    font-weight:700;
    color:#2563eb;
    line-height:1.8;
}

@media(max-width:1000px){

    .analytics-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .integration-title{
        font-size:36px;
    }

    .analytics-grid{
        grid-template-columns:1fr;
    }

    .analytics-panel{
        padding:35px;
    }

}

/* ====================================== */
/* INDUSTRIES + DEMO + FOOTER */
/* ====================================== */

.industry-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#f8fbff,#eef4ff);
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-label{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.section-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
}

.section-desc{
    max-width:950px;
    margin:auto;
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

/* INDUSTRY GRID */

.industry-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.industry-card{
    padding:30px;
    background:white;
    border-radius:22px;
    border:1px solid #e2e8f0;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.3s;
}

.industry-card:hover{
    transform:translateY(-10px);
}

.industry-card h4{
    margin-bottom:12px;
    font-size:22px;
    color:#2563eb;
}

.industry-card p{
    color:#64748b;
    font-size:14px;
    line-height:1.7;
}

/* DEMO */

.demo-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
    text-align:center;
}

.demo-section h2{
    font-size:48px;
    margin-bottom:20px;
}

.demo-section p{
    max-width:900px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.demo-btn-large{
    padding:18px 30px;
    background:#2563eb;
    border:none;
    color:white;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

/* FOOTER */

.footer{
    background:#0f172a;
    color:white;
    padding:70px 8%;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}

.footer h3{
    margin-bottom:18px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    padding:8px 0;
    color:#cbd5e1;
}

.footer-bottom{
    margin-top:40px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    color:#94a3b8;
}

@media(max-width:1000px){

    .industry-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .section-title{
        font-size:36px;
    }

    .industry-grid{
        grid-template-columns:1fr;
    }

}
/* Product page integration fixes */
.hero h1{
    font-size:clamp(38px,5vw,58px);
}
.module-list li:before,
.industry-list li:before,
.integration-list li:before,
.support-list li:before,
.feature-list li:before{
    content:"\2713";
    display:inline-block;
    color:#16a34a;
    font-weight:900;
    margin-right:9px;
}
.module-icon,
.integration-icon,
.connect-icon,
.industry-icon,
.support-icon{
    color:#2563eb;
    font-weight:900;
    font-size:18px;
}
.module-icon:empty::before{
    content:"MOD";
}
.integration-icon:empty::before{
    content:"INT";
}
.connect-icon:empty::before{
    content:"I/O";
}
.industry-icon:empty::before,
.support-icon:empty::before{
    content:"IND";
}
main .footer,
main footer.footer{
    display:none;
}
.footer{
    padding:66px 7% 34px;
    color:#fff;
    background:#0f172a;
}
.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:38px;
}
.footer h3{
    font-size:21px;
    margin-bottom:18px;
    color:#fff;
}
.footer p,
.footer li{
    color:#cbd5e1;
    line-height:1.8;
}
.footer ul{
    list-style:none;
}
.footer a{
    color:#cbd5e1;
    text-decoration:none;
}
.footer a:hover{
    color:#fff;
}
.footer-bottom{
    margin-top:42px;
    padding-top:26px;
    border-top:1px solid rgba(255,255,255,0.1);
    color:#94a3b8;
    text-align:center;
}
@media(max-width:1180px){
    .hero{
        min-height:auto;
        padding-top:140px;
        padding-bottom:80px;
        gap:40px;
    }
}
@media(max-width:768px){
    .hero h1{
        font-size:38px;
    }
    .footer{
        padding-left:5%;
        padding-right:5%;
    }
    .footer-grid{
        grid-template-columns:1fr;
    }
}
