/* =========================================================
   GLOBAL INNER / SOLUTION PAGES
========================================================= */

.inner-page,
.solution-page,
.product-page{
    background:#f5f7fb;
    overflow:hidden;
}

/* =========================================================
   CONTAINER
========================================================= */

.inner-page .container,
.solution-page .container,
.product-page .container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

/* =========================================================
   HERO SECTION
========================================================= */

.inner-hero{

    position:relative;

    min-height:500px;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding:70px 0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.82),
        rgba(0,0,0,.40)
    ),
    center center/cover no-repeat;

}

.inner-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.78),
        rgba(0,0,0,.38)
    );

    z-index:1;

}

.inner-hero-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.1fr 1fr;

    gap:70px;

    align-items:center;

}

.inner-tag{

    display:inline-block;

    color:#22c55e;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.inner-hero-content h1{

    font-size:72px;

    line-height:1.05;

    color:#fff;

    font-weight:700;

    margin-bottom:24px;

}

.inner-hero-content p{

    color:#e5e7eb;

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

    max-width:650px;

}

.inner-hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:56px;

    padding:0 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s ease;

}

.primary-btn{

    background:#15B012;

    color:#fff;

}

.primary-btn:hover{

    background:#11940F;

}

.secondary-btn{

    border:2px solid #fff;

    color:#fff;

}

.secondary-btn:hover{

    background:#fff;

    color:#111827;

}

/* =========================================================
   HERO STATS
========================================================= */

.hero-stats{

    display:flex;

    gap:40px;

    flex-wrap:wrap;

    margin-top:10px;

}

.hero-stat h3{

    color:#fff;

    font-size:34px;

    margin-bottom:6px;

    font-weight:700;

}

.hero-stat p{

    margin:0;

    color:#d1d5db;

    font-size:15px;

}

/* =========================================================
   HERO IMAGE
========================================================= */

.inner-hero-image img{

    width:100%;

    border-radius:28px;

    display:block;

    box-shadow:
    0 20px 60px rgba(0,0,0,.35);

}

/* =========================================================
   CATEGORY STRIP
========================================================= */

.category-strip{

    padding:30px 0;

    background:#fff;

    border-bottom:1px solid #e5e7eb;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:20px;

}

.category-item{

    background:#f8fafc;

    border:1px solid #e2e8f0;

    border-radius:18px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:0 12px;

    font-size:15px;

    font-weight:600;

    color:#111827;

    transition:.3s ease;

    cursor:pointer;

}

.category-item:hover,
.category-item.active{

    background:#15B012;

    border-color:#15B012;

    color:#fff;

}

/* =========================================================
   SECTION SPACING
========================================================= */

.products-section,
.inner-section,
.solution-section{

    padding:90px 0;

}

/* =========================================================
   SECTION TITLE
========================================================= */

.section-title{

    margin-bottom:60px;

}

.section-title.center{

    text-align:center;

}

.section-subtitle{

    display:inline-block;

    color:#15B012;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:16px;

}

.section-title h2{

    font-size:52px;

    line-height:1.2;

    color:#111827;

    margin-bottom:18px;

}

.section-title p{

    max-width:760px;

    margin:auto;

    color:#64748b;

    line-height:1.9;

    font-size:17px;

}

/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.35s ease;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 18px 40px rgba(0,0,0,.10);

}

.product-image{

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:280px;

    object-fit:cover;

    display:block;

    transition:.4s ease;

}

.product-card:hover .product-image img{

    transform:scale(1.04);

}

.product-content{

    padding:30px;

}

.product-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:34px;

    padding:0 16px;

    border-radius:50px;

    background:#e8f9e8;

    color:#15B012;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.product-content h3{

    font-size:30px;

    line-height:1.2;

    color:#111827;

    margin-bottom:16px;

}

.product-content p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:20px;

}

.product-content ul{

    padding-left:18px;

    margin-bottom:28px;

}

.product-content li{

    margin-bottom:10px;

    color:#475569;

}

/* =========================================================
   PRODUCT BUTTON
========================================================= */

.product-btn{

    width:100%;

    height:54px;

    border-radius:14px;

    background:#15B012;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-weight:600;

    transition:.3s ease;

}

.product-btn:hover{

    background:#11940F;

}

/* =========================================================
   FEATURES SECTION
========================================================= */

.features-section{

    padding:0 0 90px;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.feature-box{

    background:#fff;

    border-radius:26px;

    padding:35px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

}

.feature-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#15B012;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto auto 22px;

    font-size:34px;

}

.feature-box h3{

    font-size:28px;

    color:#111827;

    margin-bottom:15px;

}

.feature-box p{

    color:#64748b;

    line-height:1.8;

}

/* =========================================================
   CTA SECTION
========================================================= */

.cta-section{

    padding:0 0 100px;

}

.cta-box{

    background:
    linear-gradient(
        135deg,
        #15B012,
        #11940F
    );

    border-radius:34px;

    padding:70px;

    text-align:center;

    color:#fff;

}

.cta-box h2{

    font-size:54px;

    margin-bottom:22px;

}

.cta-box p{

    max-width:760px;

    margin:auto auto 35px;

    line-height:1.9;

    font-size:18px;

}

.cta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:58px;

    padding:0 38px;

    border-radius:50px;

    background:#fff;

    color:#111827;

    text-decoration:none;

    font-weight:600;

    transition:.3s ease;

}

.cta-btn:hover{

    transform:translateY(-3px);

}

/* =========================================================
   CONTENT SECTION
========================================================= */

.content-section{

    padding:90px 0;

}

.content-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;

    align-items:start;

}

.content-card{

    background:#fff;

    border-radius:28px;

    padding:38px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

}

.content-card img{

    width:100%;

    border-radius:20px;

    margin-bottom:30px;

}

.content-card h2{

    font-size:46px;

    line-height:1.2;

    margin-bottom:24px;

    color:#111827;

}

.content-card h3{

    font-size:34px;

    margin-bottom:22px;

    color:#111827;

}

.content-card p{

    color:#475569;

    line-height:1.9;

    font-size:17px;

    margin-bottom:18px;

}

.content-card ul{

    padding-left:20px;

}

.content-card li{

    margin-bottom:12px;

    color:#475569;

}

/* =========================================================
   SIDEBAR
========================================================= */

.sidebar-box{

    position:sticky;

    top:120px;

    background:#fff;

    border-radius:28px;

    padding:35px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

}

.sidebar-box h3{

    font-size:34px;

    margin-bottom:30px;

    color:#111827;

}

.contact-item{

    display:flex;

    gap:18px;

    margin-bottom:26px;

}

.contact-icon{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#15B012;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    flex-shrink:0;

}

.contact-item strong{

    display:block;

    margin-bottom:6px;

    color:#111827;

}

.contact-item p{

    margin:0;

    color:#475569;

    line-height:1.8;

}

/* =========================================================
   SIDEBAR CTA
========================================================= */

.sidebar-cta{

    margin-top:35px;

    background:#15B012;

    border-radius:24px;

    padding:30px;

}

.sidebar-cta h4{

    color:#fff;

    font-size:28px;

    line-height:1.3;

    margin-bottom:15px;

}

.sidebar-cta p{

    color:#fff;

    line-height:1.8;

    margin-bottom:24px;

}

.sidebar-cta a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:52px;

    padding:0 28px;

    border-radius:50px;

    background:#fff;

    color:#111827;

    text-decoration:none;

    font-weight:600;

}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

    .inner-hero-grid,
    .product-grid,
    .feature-grid,
    .content-grid{

        grid-template-columns:1fr 1fr;

    }

    .content-grid{

        grid-template-columns:1fr;

    }

    .category-grid{

        grid-template-columns:repeat(3,1fr);

    }

    .inner-hero-content h1{

        font-size:54px;

    }

    .sidebar-box{

        position:relative;

        top:auto;

    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .inner-hero{

        min-height:auto;

        padding:70px 0;

    }

    .inner-hero-grid,
    .product-grid,
    .feature-grid,
    .category-grid{

        grid-template-columns:1fr;

    }

    .inner-hero-content h1{

        font-size:42px;

    }

    .inner-hero-content p{

        font-size:16px;

    }

    .inner-hero-buttons{

        flex-direction:column;

    }

    .hero-btn{

        width:100%;

    }

    .hero-stats{

        gap:20px;

    }

    .section-title h2{

        font-size:36px;

    }

    .product-content{

        padding:24px;

    }

    .product-content h3{

        font-size:26px;

    }

    .feature-box{

        padding:28px 24px;

    }

    .cta-box{

        padding:40px 24px;

    }

    .cta-box h2{

        font-size:34px;

    }

    .content-card{

        padding:24px;

    }

    .content-card h2{

        font-size:34px;

    }

    .content-card h3{

        font-size:28px;

    }

    .sidebar-box{

        padding:24px;

    }

}
