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

.products-hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:white;

    position:relative;

    overflow:hidden;

    padding-top:120px;

}

/* Soft Blue Glow */

.products-hero::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    background:rgba(37,99,235,.07);

    border-radius:50%;

    right:-180px;

    top:-180px;

    filter:blur(80px);

}

.products-hero::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(96,165,250,.08);

    border-radius:50%;

    left:-250px;

    bottom:-200px;

    filter:blur(90px);

}

.products-hero-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.products-left{

    position:relative;

    z-index:2;

}

.hero-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:#EFF6FF;

    color:#2563EB;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:25px;

}

.products-left h1{

    font-size:4rem;

    line-height:1.1;

    color:#0F172A;

    margin-bottom:25px;

    font-weight:700;

}

.products-left p{

    font-size:1.1rem;

    color:#64748B;

    line-height:2;

    max-width:560px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:18px;

}

.products-right{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:center;

}

.products-right img{

    width:100%;

    max-width:760px;

    animation:float 6s ease-in-out infinite;

}

/* Floating Animation */

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0px);

    }

}

/*==============================
        Responsive
==============================*/

@media(max-width:992px){

.products-hero-content{

grid-template-columns:1fr;

text-align:center;

}

.products-left p{

margin:auto auto 40px;

}

.hero-buttons{

justify-content:center;

}

.products-right{

margin-top:40px;

}

}

@media(max-width:768px){

.products-hero{

padding:140px 0 80px;

}

.products-left h1{

font-size:2.7rem;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.products-right img{

max-width:100%;

}

}

/*====================================
        PRODUCT ECOSYSTEM
====================================*/

.ecosystem{

    padding:130px 8%;

    background:#F8FBFF;

}

.ecosystem-grid{

    margin-top:70px;

    display:grid;

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

    gap:25px;

}

.eco-card{

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

    backdrop-filter:blur(16px);

    border:1px solid rgba(59,130,246,.15);

    border-radius:26px;

    padding:35px;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 35px rgba(37,99,235,.08);

}

.eco-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(37,99,235,.15);

}

.eco-card img{

    width:62px;

    margin-bottom:20px;

}

.eco-card h3{

    color:#2563EB;

    font-size:1.2rem;

}

.featured{

    grid-column:span 2;

    grid-row:span 2;

    text-align:left;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.featured img{

    width:80px;

}

.featured h3{

    font-size:2rem;

    margin:18px 0;

}

.featured p{

    color:#64748B;

    line-height:1.8;

}

@media(max-width:992px){

.ecosystem-grid{

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

}

.featured{

grid-column:span 2;

}

}

@media(max-width:768px){

.ecosystem{

padding:90px 6%;

}

.ecosystem-grid{

grid-template-columns:1fr;

}

.featured{

grid-column:span 1;

grid-row:span 1;

}

}

/*====================================
            FEATURED ERP
====================================*/

.featured-erp{

    padding:140px 8%;

    background:#ffffff;

}

.featured-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.erp-image{

    position:relative;

}

.erp-image img{

    width:100%;

    border-radius:30px;

    box-shadow:0 35px 80px rgba(37,99,235,.12);

    transition:.4s;

}

.erp-image img:hover{

    transform:translateY(-10px);

}

.erp-content h2{

    font-size:3rem;

    color:#0F172A;

    margin:20px 0;

}

.erp-content p{

    color:#64748B;

    line-height:1.9;

    margin-bottom:35px;

}

.feature-list{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:40px;

}

.feature-chip{

    background:#EFF6FF;

    color:#2563EB;

    padding:12px 18px;

    border-radius:50px;

    font-weight:600;

    border:1px solid rgba(37,99,235,.15);

    transition:.3s;

}

.feature-chip:hover{

    background:#2563EB;

    color:white;

    transform:translateY(-4px);

}

.erp-stats{

    display:flex;

    justify-content:space-between;

    margin-bottom:40px;

    padding:25px 0;

    border-top:1px solid #E2E8F0;

    border-bottom:1px solid #E2E8F0;

}

.erp-stats h3{

    font-size:2rem;

    color:#2563EB;

    margin-bottom:8px;

}

.erp-stats span{

    color:#64748B;

    font-size:.95rem;

}

@media(max-width:992px){

.featured-grid{

grid-template-columns:1fr;

}

.erp-content{

text-align:center;

}

.feature-list{

justify-content:center;

}

.erp-stats{

justify-content:space-around;

}

}

@media(max-width:768px){

.featured-erp{

padding:90px 6%;

}

.erp-content h2{

font-size:2.3rem;

}

.erp-stats{

flex-direction:column;

gap:25px;

text-align:center;

}

}

/*====================================
        OTHER PRODUCTS
====================================*/

.other-products{

    padding:130px 8%;

    background:#F8FBFF;

}

.product-showcase{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    margin-top:90px;

}

.product-showcase.reverse{

    direction:rtl;

}

.product-showcase.reverse>*{

    direction:ltr;

}

.showcase-image img{

    width:100%;

    border-radius:24px;

    box-shadow:0 20px 45px rgba(37,99,235,.12);

}

.showcase-content span{

    color:#2563EB;

    font-size:3rem;

    font-weight:800;

}

.showcase-content h3{

    font-size:2.2rem;

    margin:15px 0;

    color:#0F172A;

}

.showcase-content p{

    color:#64748B;

    line-height:1.8;

    margin-bottom:25px;

}

.showcase-content ul{

    list-style:none;

    display:grid;

    gap:12px;

}

.showcase-content li{

    color:#334155;

    font-weight:600;

}

@media(max-width:992px){

.product-showcase,
.product-showcase.reverse{

grid-template-columns:1fr;

direction:ltr;

}

}

/*====================================
        PRODUCT STATS
====================================*/

.product-stats{

    padding:130px 8%;

    background:#ffffff;

}

.stats-grid{

    display:grid;

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

    gap:30px;

    margin-top:70px;

}

.stat-card{

    background:linear-gradient(180deg,#ffffff,#F3F8FF);

    border-radius:26px;

    text-align:center;

    padding:55px 30px;

    border:1px solid rgba(37,99,235,.08);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(37,99,235,.15);

}

.stat-card h3{

    font-size:4rem;

    color:#2563EB;

    margin-bottom:15px;

}

.stat-card span{

    color:#64748B;

    font-size:1.05rem;

}

@media(max-width:992px){

.stats-grid{

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

}

}

@media(max-width:768px){

.stats-grid{

grid-template-columns:1fr;

}

.stat-card h3{

font-size:3rem;

}

}

/*====================================
            BOOK A DEMO
====================================*/

.book-demo{

    padding:120px 8%;

    background:#F8FBFF;

}

.demo-card{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:60px;

    align-items:center;

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

    backdrop-filter:blur(18px);

    border:1px solid rgba(37,99,235,.12);

    border-radius:34px;

    padding:70px;

    box-shadow:0 20px 60px rgba(37,99,235,.08);

}

.demo-tag{

    display:inline-block;

    margin-bottom:18px;

    padding:8px 18px;

    background:#DBEAFE;

    color:#2563EB;

    border-radius:50px;

    font-weight:600;

    font-size:.9rem;

    letter-spacing:.5px;

}

.demo-content h2{

    font-size:3rem;

    color:#0F172A;

    line-height:1.2;

    margin-bottom:25px;

}

.demo-content p{

    color:#64748B;

    line-height:1.9;

    font-size:1.05rem;

    margin-bottom:35px;

}

.demo-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.demo-image{

    text-align:center;

}

.demo-image img{

    width:100%;

    max-width:420px;

    transition:.4s;

}

.demo-image img:hover{

    transform:translateY(-10px);

}

@media(max-width:992px){

.demo-card{

grid-template-columns:1fr;

text-align:center;

padding:50px;

}

.demo-buttons{

justify-content:center;

}

.demo-content h2{

font-size:2.4rem;

}

}

@media(max-width:768px){

.book-demo{

padding:90px 6%;

}

.demo-card{

padding:35px 25px;

}

.demo-content h2{

font-size:2rem;

}

.demo-image{

margin-top:20px;

}

}