/* ===================================
   SALES HERO
=================================== */

.sales-hero{
    padding:140px 0 100px;
    background:#f8fbf8;
    overflow:hidden;
}

.sales-hero-wrapper{
    display:flex;
    align-items:center;
    gap:80px;
}

.sales-hero-content{
    flex:1;
}

.hero-badge{
    display:inline-block;
    background:#e8f5e9;
    color:#2e7d32;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.sales-hero-content h1{
    font-size:48px;
    line-height:1.15;
    color:#111;
    margin-bottom:25px;
    font-weight:800;
}

.sales-hero-content p{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.sales-hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:45px;
}

.sales-btn-primary{
    background:#2e7d32;
    color:#fff;
    text-decoration:none;
    padding:16px 30px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.sales-btn-primary:hover{
    transform:translateY(-4px);
}

.sales-btn-secondary{
    background:#fff;
    color:#111;
    text-decoration:none;
    padding:16px 30px;
    border-radius:12px;
    border:1px solid #ddd;
    font-weight:600;
}

.sales-stats{
    display:flex;
    gap:45px;
}

.sales-stat h3{
    color:#2e7d32;
    font-size:34px;
    margin-bottom:6px;
}

.sales-stat span{
    color:#666;
    font-size:14px;
}

.sales-hero-image{
    flex:1;
}

.hero-image-box{
    position:relative;
}

.hero-image-box img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.floating-card{
    position:absolute;
    background:#fff;
    padding:18px 22px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    animation:floatCard 3s ease-in-out infinite;
}

.card-one{
    top:40px;
    right:-20px;
}

.card-two{
    left:-20px;
    bottom:50px;
}

.floating-card strong{
    display:block;
    margin-bottom:5px;
}

.floating-card span{
    font-size:14px;
    color:#666;
}

@keyframes floatCard{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}
@media(max-width:991px){

    .sales-hero{
        padding:120px 0 80px;
    }

    .sales-hero-wrapper{
        gap:35px;
    }

    .sales-hero-content h1{
        font-size:48px;
    }

    .sales-hero-content p{
        font-size:16px;
    }

    .hero-image-box img{
        height:500px;
    }

    .sales-stats{
        gap:20px;
    }

}
@media(max-width:767px){

    .sales-hero{
        padding:110px 0 70px;
    }

    .sales-hero-wrapper{
        flex-direction:column;
        gap:35px;
    }

    .sales-hero-content{
        order:1;
    }

    .sales-hero-image{
        order:2;
        width:100%;
    }

    .sales-hero-content h1{
        font-size:36px;
        line-height:1.15;
    }

    .sales-hero-content p{
        font-size:15px;
    }

    .sales-hero-buttons{
        flex-direction:column;
    }

    .sales-btn-primary,
    .sales-btn-secondary{
        width:100%;
        text-align:center;
    }

    .sales-stats{
        justify-content:space-between;
        gap:10px;
    }

    .sales-stat h3{
        font-size:22px;
    }

    .hero-image-box img{
        height:320px;
        border-radius:20px;
    }

    .floating-card{
        padding:12px 15px;
    }

    .card-one{
        top:10px;
        right:10px;
    }

    .card-two{
        left:10px;
        bottom:10px;
    }

}
/* ===================================
   MARKET SOLUTIONS
=================================== */

.market-solutions{
    padding:120px 0;
    background:#fff;
}

.market-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.market-header h2{
     font-size:42px;
    line-height:1.2;
    margin:20px 0;
    font-weight:800;
    color:#111;
}

.market-header p{
    color:#666;
    font-size:16px;
    line-height:1.8;
}

.market-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.market-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:30px;
}

.market-cards{
    display:grid;
    gap:25px;
}

.market-card{
    display:flex;
    gap:20px;
    padding:28px;
    background:#f8fbf8;
    border-radius:22px;
    transition:.35s;
    border:1px solid transparent;
}

.market-card:hover{
    transform:translateX(10px);
    border-color:#2e7d32;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.market-icon{
    width:70px;
    height:70px;
    background:#2e7d32;
    color:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    flex-shrink:0;
}

.market-card h3{
    margin-bottom:8px;
    font-size:24px;
    color:#111;
}

.market-card p{
    color:#666;
    line-height:1.8;
}
@media(max-width:991px){

    .market-wrapper{
        grid-template-columns:1fr;
    }

    .market-header h2{
        font-size:40px;
    }

    .market-image img{
        height:500px;
    }

}
@media(max-width:767px){

    .market-solutions{
        padding:70px 0;
    }

    .market-header h2{
        font-size:30px;
    }

    .market-header p{
        font-size:15px;
    }

    .market-image img{
        height:300px;
    }

    .market-card{
        padding:20px;
    }

    .market-icon{
        width:55px;
        height:55px;
        font-size:22px;
    }

    .market-card h3{
        font-size:20px;
    }

}
/* ===================================
   PROMOTION DASHBOARD
=================================== */

.promotion-dashboard{
    padding:120px 0;
    background:#f8fbf8;
}

.dashboard-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.dashboard-header h2{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
    color:#111;
    margin:20px 0;
}

.dashboard-header p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.dashboard-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:80px;
}

.dashboard-stat-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.dashboard-stat-card:hover{
    transform:translateY(-8px);
}

.dashboard-stat-card h3{
    font-size:42px;
    color:#2e7d32;
    margin-bottom:10px;
}

.dashboard-stat-card span{
    color:#666;
}

.dashboard-graph-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.graph-content h3{
    font-size:24px;
    margin-bottom:20px;
}

.graph-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
}

.graph-content ul{
    padding-left:20px;
}

.graph-content li{
    margin-bottom:12px;
}

.graph-box{
    background:#fff;
    padding:40px;
    border-radius:28px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.graph-placeholder h4{
    margin-bottom:30px;
    font-size:22px;
}

.bar-row{
    margin-bottom:22px;
}

.bar-row span{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.bar{
    height:14px;
    background:#edf2ed;
    border-radius:50px;
    overflow:hidden;
}

.fill{
    height:100%;
    background:#2e7d32;
    border-radius:50px;
    animation:growBar 2s ease;
}

.fill-85{width:85%;}
.fill-70{width:70%;}
.fill-60{width:60%;}
.fill-45{width:45%;}
.fill-30{width:30%;}

@keyframes growBar{

    from{
        width:0;
    }

}
@media(max-width:991px){

    .dashboard-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .dashboard-graph-wrapper{
        grid-template-columns:1fr;
    }

    .dashboard-header h2{
        font-size:40px;
    }

}

@media(max-width:767px){

    .promotion-dashboard{
        padding:70px 0;
    }

    .dashboard-stats{
        grid-template-columns:1fr;
    }

    .dashboard-header h2{
        font-size:30px;
    }

    .graph-content h3{
        font-size:28px;
    }

    .graph-box{
        padding:25px;
    }

}
/* ===================================
   SALES GROWTH
=================================== */

.sales-growth-section{
    padding:120px 0;
    background:#fff;
}

.growth-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.growth-header h2{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
    margin:20px 0;
}

.growth-header p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.growth-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.growth-image{
    position:relative;
}

.growth-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:30px;
}

.growth-badge{
    position:absolute;
    bottom:30px;
    right:-20px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.growth-badge strong{
    display:block;
    font-size:42px;
    color:#2e7d32;
}

.growth-badge span{
    color:#666;
}

.growth-content{
    display:grid;
    gap:22px;
}

.growth-card{
    display:flex;
    gap:20px;
    background:#f8fbf8;
    padding:25px;
    border-radius:20px;
    transition:.35s;
}

.growth-card:hover{
    transform:translateX(10px);
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.growth-icon{
    width:70px;
    height:70px;
    background:#2e7d32;
    color:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    flex-shrink:0;
}

.growth-card h3{
    margin-bottom:8px;
    font-size:24px;
}

.growth-card p{
    color:#666;
    line-height:1.8;
}
@media(max-width:991px){

    .growth-wrapper{
        grid-template-columns:1fr;
    }

    .growth-header h2{
        font-size:40px;
    }

    .growth-image img{
        height:500px;
    }

}

@media(max-width:767px){

    .sales-growth-section{
        padding:70px 0;
    }

    .growth-header h2{
        font-size:30px;
    }

    .growth-image img{
        height:320px;
    }

    .growth-card{
        padding:18px;
    }

    .growth-icon{
        width:55px;
        height:55px;
        font-size:22px;
    }

    .growth-card h3{
        font-size:20px;
    }

    .growth-badge{
        right:10px;
        bottom:10px;
        padding:15px;
    }

}
/* ===================================
   MARKETPLACE SERVICES
=================================== */

.marketplace-services{
    padding:120px 0;
    background:#f8fbf8;
}

.services-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.services-image{
    position:relative;
}

.services-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    border-radius:30px;
}

.service-badge{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.service-badge strong{
    display:block;
    font-size:40px;
    color:#2e7d32;
}

.service-badge span{
    color:#666;
}

.services-content h2{
    font-size:42px;
    margin:20px 0;
    line-height:1.2;
}

.services-content p{
    color:#666;
    font-size:16px;
    line-height:1.8;
    margin-bottom:35px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.service-item{
    display:flex;
    gap:15px;
    background:#fff;
    padding:20px;
    border-radius:18px;
    transition:.35s;
}

.service-item:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.service-icon{
    width:55px;
    height:55px;
    background:#2e7d32;
    color:#fff;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.service-item h4{
    margin-bottom:6px;
    font-size:18px;
}

.service-item p{
    margin:0;
    font-size:14px;
    line-height:1.6;
}
@media(max-width:991px){

    .services-wrapper{
        grid-template-columns:1fr;
    }

    .services-content h2{
        font-size:40px;
    }

    .services-image img{
        height:500px;
    }

}

@media(max-width:767px){

    .marketplace-services{
        padding:70px 0;
    }

    .services-content h2{
        font-size:30px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .services-image img{
        height:320px;
    }

    .service-badge{
        left:10px;
        bottom:10px;
        padding:15px;
    }

}
/* ===================================
   SALES FINAL CTA
=================================== */

.sales-final-cta{
    position:relative;
    padding:140px 0;
    background:url('../images/sales/cta-bg.jpg')
    center center/cover no-repeat;
    overflow:hidden;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.sales-cta-content{
    position:relative;
    z-index:2;
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.sales-cta-content .section-tag{
    display:inline-block;
    background:rgba(255,255,255,.12);
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:25px;
}

.sales-cta-content h2{
    color:#fff;
    font-size:42px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:800;
}

.sales-cta-content p{
    color:rgba(255,255,255,.85);
    font-size:16px;
    line-height:1.8;
    max-width:850px;
    margin:0 auto 50px;
}

.cta-highlights{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:50px;
}

.highlight-item{
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(10px);
    padding:25px;
    border-radius:20px;
    transition:.35s;
}

.highlight-item:hover{
    transform:translateY(-8px);
}

.highlight-item strong{
    display:block;
    color:#fff;
    font-size:34px;
    margin-bottom:8px;
}

.highlight-item span{
    color:rgba(255,255,255,.8);
    font-size:14px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.cta-primary-btn{
    background:#2e7d32;
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.cta-primary-btn:hover{
    transform:translateY(-4px);
}

.cta-secondary-btn{
    background:#fff;
    color:#111;
    text-decoration:none;
    padding:18px 35px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.cta-secondary-btn:hover{
    transform:translateY(-4px);
}@media(max-width:991px){

    .sales-cta-content h2{
        font-size:48px;
    }

    .cta-highlights{
        grid-template-columns:repeat(2,1fr);
    }

}@media(max-width:767px){

    .sales-final-cta{
        padding:80px 0;
    }

    .sales-cta-content h2{
        font-size:34px;
    }

    .sales-cta-content p{
        font-size:15px;
    }

    .cta-highlights{
        grid-template-columns:1fr;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-primary-btn,
    .cta-secondary-btn{
        width:100%;
    }

}
.sales-hero-content h1{
    font-size:clamp(2.5rem,4vw,4rem);
}

.market-header h2,
.dashboard-header h2,
.growth-header h2,
.services-content h2,
.sales-cta-content h2{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
}

.sales-hero-content p,
.market-header p,
.dashboard-header p,
.growth-header p,
.services-content p,
.sales-cta-content p{
    font-size:16px;
    line-height:1.8;
}
@media(max-width:767px){

    .sales-hero-content h1{
        font-size:34px;
    }

    .market-header h2,
    .dashboard-header h2,
    .growth-header h2,
    .services-content h2,
    .sales-cta-content h2{
        font-size:28px;
    }

    .sales-hero-content p,
    .market-header p,
    .dashboard-header p,
    .growth-header p,
    .services-content p,
    .sales-cta-content p{
        font-size:15px;
    }

    .graph-content h3{
        font-size:22px;
    }
}