/* HERO SECTION */

.hero{
    position: relative;
    padding:40px 20px 60px;
}

/* GRID BACKGROUND */

.hero::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);

    background-size:60px 60px;
    pointer-events:none;
}

.hero-container{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin:auto;
    max-width:1100px;
    padding:0 20px;
}

/* LEFT SIDE */

.hero-left{
    max-width:720px;
}

/* BADGE */

.hero-badge{
    position:absolute;
    top:40px;
    left:50%;
    transform:translateX(-50%);

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:8px 20px;
    border-radius:30px;

    background:rgba(16,185,129,0.08);
    border:1px solid rgba(16,185,129,0.35);

    color:#34d399;
    font-size:14px;
}

.badge-dot{
    width:6px;
    height:6px;
    background:#34d399;
    border-radius:50%;
}

/* TITLE */

.hero-title{
    font-size:clamp(40px,6vw,85px);
    font-weight:900;
    line-height:1.05;
    letter-spacing:-2px;
}

.hero-description{
    margin-top:25px;
    max-width:520px;
    font-size:18px;
    line-height:1.7;
    color:var(--text-secondary);
}

.text-blue{
    color:#3b82f6;
}

.text-green{
    color:#10b981;
}

/* RIGHT SIDE CARD */

.hero-right{
    margin-top:160px;
}

.erp-card{
    width:320px;
    background:var(--bg-card);
    border-radius:20px;
    padding:24px;
    border:1px solid var(--border-color);
}

.card-title{
    font-weight:700;
    margin-bottom:20px;
}

.card-row{
    display:flex;
    justify-content:space-between;
    color:var(--text-secondary);
}

.divider{
    height:1px;
    background:var(--border-color);
    margin:14px 0;
}

.green{
    color:#34d399;
    font-weight:600;
}


/* STATS SECTION */

.stats-section{
    padding:40px 20px 60px;
}

.stats-container{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.stat-box{
    text-align:center;
    flex:1;
    min-width:180px;
}

.stat-box h2{
    font-size:42px;
    font-weight:800;
    color:#3b82f6;
}

.stat-box p{
    margin-top:8px;
    color:var(--text-secondary);
    font-size:16px;
}


/* ERP SECTION */

.erp-section{
    padding:40px 20px 60px;
    text-align:center;
}

.erp-title{
    font-size:20px;
    font-weight:600;
    margin-bottom:40px;
    color:var(--text-main);
}

.erp-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:24px;

    color:var(--text-secondary);
    font-weight:600;
}

.erp-container span{
    font-size:18px;
    transition:0.3s;
}

.erp-container span:hover{
    color:var(--text-main);
}


/* TABLET */

@media (max-width:1024px){

.hero-container{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.hero-right{
    margin-top:40px;
}

.hero-description{
    margin-left:auto;
    margin-right:auto;
}

}


/* MOBILE */

@media (max-width:768px){

.hero-container{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

/* Fix badge overlap */
.hero-badge{
    position:relative;
    top:auto;
    left:auto;
    transform:none;
    margin-bottom:20px;
}

/* Give space above title */
.hero-title{
    margin-top:10px;
    line-height:1.15;
}

/* Keep text readable */
.hero-description{
    font-size:16px;
    padding:0 10px;
}

}