/*======================================================
  SALES HERO
======================================================*/

.sales-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}


/*==============================
  IMAGE
==============================*/

.sales-hero .page-hero-image{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    transform:scale(1.08);

    animation:heroZoom 12s ease forwards;

    z-index:1;

}


/*==============================
  OVERLAY
==============================*/

.sales-hero .page-hero-overlay{

    position:absolute;

    inset:0;

    z-index:2;

    background:
    linear-gradient(
        90deg,
        rgba(8,22,16,.88) 0%,
        rgba(20,60,35,.75) 45%,
        rgba(20,60,35,.40) 100%
    );

}


/*==============================
  CONTENT
==============================*/

.sales-hero .page-hero-content{

    position:relative;

    z-index:3;

    max-width:720px;

    color:#ffffff;

}

.sales-hero .page-hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

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

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    border-radius:50px;

    font-weight:600;

    margin-bottom:30px;

}

.sales-hero .page-hero-badge i{

    color:#f7941d;

}

.sales-hero h1{

    font-size:clamp(3rem,5vw,5rem);

    line-height:1.1;

    margin-bottom:30px;

}

.sales-hero p{

    font-size:1.08rem;

    line-height:1.9;

    color:rgba(255,255,255,.92);

    margin-bottom:45px;

}


/*==============================
  BUTTONS
==============================*/

.sales-hero .page-hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.sales-hero .btn-outline{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:16px 34px;

    border:2px solid rgba(255,255,255,.30);

    border-radius:50px;

    color:#ffffff;

    text-decoration:none;

    transition:.35s;

}

.sales-hero .btn-outline:hover{

    background:#ffffff;

    color:#1f5d3a;

}


/*======================================================
  SALES HIGHLIGHTS
======================================================*/

.sales-highlights{

    position:relative;

    margin-top:-70px;

    z-index:20;

}

.sales-highlights .highlights-grid{

    display:grid;

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

    gap:25px;

}

.sales-highlights .highlight-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:28px;

    background:#ffffff;

    border-radius:22px;

    box-shadow:0 20px 50px rgba(15,23,42,.08);

    transition:.35s;

}

.sales-highlights .highlight-item:hover{

    transform:translateY(-8px);

}

.sales-highlights .highlight-item i{

    width:65px;

    height:65px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    background:rgba(31,93,58,.08);

    color:#1f5d3a;

    font-size:1.7rem;

}

.sales-highlights .highlight-item h4{

    color:#0f172a;

    margin-bottom:8px;

}

.sales-highlights .highlight-item p{

    color:#64748b;

    margin:0;

}


/*==============================
  ANIMATION
==============================*/

@keyframes heroZoom{

    from{

        transform:scale(1.08);

    }

    to{

        transform:scale(1);

    }

}


/*==============================
  RESPONSIVE
==============================*/

@media(max-width:1200px){

    .sales-highlights .highlights-grid{

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

    }

}

@media(max-width:768px){

    .sales-hero{

        min-height:85vh;

        padding:120px 0 80px;

    }

    .sales-hero h1{

        font-size:2.5rem;

    }

    .sales-hero .page-hero-buttons{

        flex-direction:column;

        align-items:flex-start;

    }

    .sales-highlights{

        margin-top:60px;

    }

    .sales-highlights .highlights-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .sales-hero{

        min-height:75vh;

    }

    .sales-hero h1{

        font-size:2rem;

    }

    .sales-hero p{

        font-size:1rem;

    }

}

/*======================================================
  SALES INTRO
======================================================*/

.sales-intro{

    padding:120px 0;

    background:#ffffff;

}


/*==============================
  GRID
==============================*/

.sales-intro-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}


/*==============================
  IMAGE
==============================*/

.sales-intro-image{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    box-shadow:0 25px 60px rgba(15,23,42,.12);

}

.sales-intro-image img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:.6s ease;

}

.sales-intro-image:hover img{

    transform:scale(1.05);

}


/*==============================
  CONTENT
==============================*/

.sales-intro-content{

    max-width:600px;

}

.sales-intro-content h2{

    margin:25px 0;

    font-size:clamp(2.2rem,4vw,3.3rem);

    line-height:1.2;

    color:#0f172a;

}

.sales-intro-content p{

    margin-bottom:22px;

    color:#64748b;

    line-height:1.9;

}

.sales-intro-content strong{

    color:#1f5d3a;

}


/*==============================
  FEATURES
==============================*/

.sales-features{

    display:grid;

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

    gap:20px;

    margin-top:40px;

}


/*==============================
  FEATURE
==============================*/

.sales-feature{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px 20px;

    background:#f8fafc;

    border-radius:16px;

    border:1px solid #e2e8f0;

    transition:.35s ease;

}

.sales-feature:hover{

    background:#1f5d3a;

    transform:translateY(-5px);

}

.sales-feature i{

    color:#1f5d3a;

    font-size:1.1rem;

    transition:.35s;

}

.sales-feature span{

    color:#334155;

    font-weight:500;

    transition:.35s;

}

.sales-feature:hover i,

.sales-feature:hover span{

    color:#ffffff;

}


/*==============================
  RESPONSIVE
==============================*/

@media(max-width:992px){

    .sales-intro-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

    .sales-intro-content{

        max-width:100%;

    }

}

@media(max-width:768px){

    .sales-intro{

        padding:90px 0;

    }

    .sales-features{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .sales-intro{

        padding:70px 0;

    }

    .sales-intro-grid{

        gap:35px;

    }

    .sales-intro-image{

        border-radius:20px;

    }

    .sales-intro-content h2{

        font-size:2rem;

    }

}

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

.products{

    padding:120px 0;

    background:#ffffff;

}


/*==============================
  PRODUCT CARD
==============================*/

.product-card{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

    margin-top:90px;

}

.product-card:first-of-type{

    margin-top:70px;

}


/*==============================
  REVERSE
==============================*/

.product-card.reverse{

    direction:rtl;

}

.product-card.reverse>*{

    direction:ltr;

}


/*==============================
  IMAGE
==============================*/

.product-image{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    box-shadow:0 20px 60px rgba(15,23,42,.10);

}

.product-image img{

    width:100%;

    height:520px;

    object-fit:cover;

    display:block;

    transition:.6s ease;

}

.product-card:hover .product-image img{

    transform:scale(1.06);

}


/*==============================
  CONTENT
==============================*/

.product-content{

    max-width:560px;

}

.product-content h3{

    font-size:2.4rem;

    color:#0f172a;

    margin:20px 0;

}

.product-content p{

    color:#64748b;

    line-height:1.9;

    margin-bottom:30px;

}


/*==============================
  STATUS
==============================*/

.status{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    font-size:.9rem;

    font-weight:600;

}

.status.available{

    background:#eaf8ef;

    color:#198754;

}

.status.available i{

    font-size:.65rem;

}

.status.coming{

    background:#fff4df;

    color:#d97706;

}


/*==============================
  LIST
==============================*/

.product-content ul{

    list-style:none;

    padding:0;

    margin:35px 0;

}

.product-content li{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:18px;

    color:#334155;

    font-weight:500;

}

.product-content li i{

    color:#1f5d3a;

}


/*==============================
  BUTTON
==============================*/

.product-content .btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:15px;

}

.product-content .btn i{

    font-size:1.1rem;

}


/*==============================
  HOVER
==============================*/

.product-card:hover .status.available{

    background:#198754;

    color:#ffffff;

}

.product-card:hover .status.coming{

    background:#d97706;

    color:#ffffff;

}


/*==============================
  RESPONSIVE
==============================*/

@media(max-width:992px){

    .product-card{

        grid-template-columns:1fr;

        gap:45px;

    }

    .product-card.reverse{

        direction:ltr;

    }

    .product-content{

        max-width:100%;

    }

}

@media(max-width:768px){

    .products{

        padding:90px 0;

    }

    .product-image img{

        height:380px;

    }

    .product-content h3{

        font-size:2rem;

    }

}

@media(max-width:576px){

    .products{

        padding:70px 0;

    }

    .product-card{

        gap:30px;

        margin-top:70px;

    }

    .product-image{

        border-radius:20px;

    }

    .product-image img{

        height:270px;

    }

    .product-content h3{

        font-size:1.8rem;

    }

    .status{

        font-size:.85rem;

    }

}

/*======================================================
 WHY SALES
======================================================*/

.why-sales{

    padding:120px 0;

    background:#f8fafc;

}

.why-sales-grid{

    display:grid;

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

    gap:30px;

    margin-top:70px;

}

.why-card{

    background:#ffffff;

    padding:45px 35px;

    border-radius:24px;

    text-align:center;

    border:1px solid #e5e7eb;

    transition:.35s;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#1f5d3a;

}

.why-card i{

    width:80px;

    height:80px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    border-radius:20px;

    background:rgba(31,93,58,.08);

    color:#1f5d3a;

    font-size:2rem;

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:18px;

    color:#0f172a;

}

.why-card p{

    color:#64748b;

    line-height:1.8;

}


/*======================================================
 CTA
======================================================*/

.sales-cta{

    padding:120px 0;

    background:#ffffff;

}

.sales-cta-card{

    max-width:1000px;

    margin:auto;

    text-align:center;

    padding:70px;

    border-radius:30px;

    background:linear-gradient(135deg,#1f5d3a,#2f7b50);

    color:#ffffff;

    box-shadow:0 30px 70px rgba(31,93,58,.25);

}

.sales-cta-card span{

    display:inline-block;

    padding:10px 20px;

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

    border-radius:50px;

    margin-bottom:25px;

    font-weight:600;

}

.sales-cta-card h2{

    font-size:clamp(2.2rem,4vw,3.6rem);

    margin-bottom:25px;

    line-height:1.2;

}

.sales-cta-card p{

    max-width:700px;

    margin:0 auto 40px;

    color:rgba(255,255,255,.90);

    line-height:1.9;

}

.sales-cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.sales-cta .btn-outline{

    border:2px solid rgba(255,255,255,.30);

    color:#ffffff;

}

.sales-cta .btn-outline:hover{

    background:#ffffff;

    color:#1f5d3a;

}


/*======================================================
 RESPONSIVE
======================================================*/

@media(max-width:992px){

    .why-sales-grid{

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

    }

}

@media(max-width:768px){

    .why-sales{

        padding:90px 0;

    }

    .sales-cta{

        padding:90px 0;

    }

    .sales-cta-card{

        padding:50px 30px;

    }

}

@media(max-width:576px){

    .why-sales-grid{

        grid-template-columns:1fr;

    }

    .sales-cta-card{

        padding:40px 25px;

        border-radius:20px;

    }

    .sales-cta-buttons{

        flex-direction:column;

    }

}

/*======================================================
  RESPONSIVE - AJOUT
======================================================*/

@media (max-width:992px){

    .sales-hero .page-hero-content,
    .sales-intro-content,
    .product-content{

        width:100%;
        max-width:100%;

    }

}


@media (max-width:768px){

    .sales-hero{

        padding:130px 0 80px;

    }

    .sales-hero .page-hero-content{

        text-align:center;
        margin:auto;

    }

    .sales-hero .page-hero-badge{

        margin-inline:auto;

    }

    .sales-hero .page-hero-buttons{

        justify-content:center;
        align-items:center;

    }

    .sales-hero .btn,
    .sales-hero .btn-outline{

        width:100%;

    }

    .sales-intro-content,
    .product-content{

        text-align:center;

    }

    .sales-features{

        gap:15px;

    }

    .product-content ul{

        display:flex;
        flex-direction:column;
        align-items:center;

    }

    .product-content .btn{

        width:100%;
        justify-content:center;

    }

    .sales-highlights .highlight-item{

        flex-direction:column;
        text-align:center;

    }

    .why-card{

        text-align:center;

    }

}


@media (max-width:576px){

    .sales-hero h1{

        line-height:1.25;

    }

    .sales-intro-image img,
    .product-image img{

        width:100%;
        height:auto;
        aspect-ratio:4/3;

    }

    .sales-feature{

        width:100%;

    }

    .status{

        margin-inline:auto;

    }

    .sales-cta-buttons .btn,
    .sales-cta-buttons .btn-outline{

        width:100%;

    }

}


/* Sécurité Responsive */

.sales-intro-image,
.product-image{

    overflow:hidden;

}

img,
iframe,
video{

    max-width:100%;
    height:auto;

}

.product-card,
.sales-intro-grid{

    width:100%;

}