.hero-offres,
.hero-offre,
section {
    width: 100%;
    height: auto;
    background: url('../images/background-mwp.png');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 50px;
    box-shadow: 0 1px 3px 3px rgba(0,0,0,0.05);
}

.hero-offres .container,
.hero-offre .container,
.offres-main .container,
.comparatif .container,
.process .container,
.custom .container,
.cta .container,
.target .container,
.features .container,
.difference .container,
.pricing .container,
.faq .container,
.use-cases .container,
.switch-offer .container,
.cta-final .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-offres h1,
.hero-offre h1 {
    font-size: 3.2em;
    line-height: 1.1;
    color: #13212f;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 800;
}

.subtitle {
    max-width: 800px;
    margin: 0 auto 25px;
    font-size: 1.3em;
    line-height: 1.7;
    color: #4b5563;
}

.trust {
    color: #111827;
    font-weight: 600;
    margin-top: 30px;
}

/*
========================================
CARDS OFFRES
========================================
*/

.offres-main {
    padding: 100px 20px;
    background: url('../images/background-mwp.png');
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.card {
    position: relative;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 4px solid #c6d300;
    transition: 0.25s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.card.highlight {
    border-top: 4px solid #111827;
}

.badge {
    position: absolute;
    top: -14px;
    right: 25px;
    background: #c6d300;
    color: #111;
    font-size: 0.8em;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 30px;
}

.card h2 {
    font-size: 2em;
    color: #111827;
    margin-bottom: 20px;
}

.price {
    font-size: 3.5em;
    font-weight: 800;
    line-height: 1;
    color: #c6d300;
    margin: 0;
}

.price span {
    font-size: 0.35em;
    color: #111827;
}
.instal {
    font-size: 1.4em;
    font-style: italic;
    margin: 30px 0;
    padding: 0;
    line-height: 1;
}



.setup {
    margin: 10px 0 30px;
    color: #6b7280;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.card ul li {
    position: relative;
    margin-bottom: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.btn,
.btn-main,
.btn-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #c6d300;
    color: #111;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
    box-shadow: 0 10px 25px rgba(198,211,0,0.25);
}

.btn:hover,
.btn-main:hover,
.btn-switch:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #d1d5db;
    background: rgba(255,255,255,0.7);
    color: #111;
    backdrop-filter: blur(4px);
}

.cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/*
========================================
TABLEAU
========================================
*/

.comparatif {
    padding: 120px 20px;
    background: #fff;
}

.comparatif h2 {
    text-align: center;
    margin-bottom: 50px;
}

.comparatif table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.comparatif th,
.comparatif td {
    padding: 22px;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
    transition: 0.5s;
}
.comparatif tr {
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
    cursor:alias;
}
.comparatif tr:hover {
    background: rgba(198, 211, 0, 0.2);
    transition: 0.5s;
    cursor:alias;
}

.comparatif th {
    background: #13212f;
    color: #fff;
}

/*
========================================
SECTIONS
========================================
*/

.process,
.custom,
.target,
.features,
.difference,
.pricing,
.faq,
.use-cases,
.switch-offer,
.cta-final {
    padding: 120px 20px;
    background: url('../images/background-mwp.png');
    text-align: center;
}

.process h2,
.custom h2,
.target h2,
.features h2,
.difference h2,
.pricing h2,
.faq h2,
.use-cases h2,
.switch-offer h2,
.cta-final h2 {
    font-size: 2.4em;
    color: #13212f;
    margin-bottom: 25px;
}

.target p,
.difference p,
.custom p,
.use-cases p,
.switch-offer p,
.faq p {
    margin: 0 auto 30px;
    color: #4b5563;
    line-height: 1.8;
}

/*
========================================
GRIDS
========================================
*/

.grid,
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.grid > div,
.steps > div,
.price-box {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    padding: 30px;
    border-top: 3px solid #c6d300;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.grid h3 {
    margin-bottom: 12px;
    color: #111827;
}
.target-list,
.difference ul,
.price-box ul {
    list-style: none;
    padding: 0;
    margin-top: 35px;
}
.target-list li,
.difference li,
.price-box li {
    margin-bottom: 15px;
    color: #4b5563;
}
.main-price {
    font-size: 4em;
    font-weight: 800;
    color: #c6d300;
    margin-bottom: 10px;
}
.faq h3 {
    margin-top: 40px;
    color: #111827;
}
@media screen and (max-width: 1000px) {
    .cards,
    .grid,
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-offres h1,
    .hero-offre h1 {
        font-size: 2.5em;
    }
}

@media screen and (max-width: 700px) {
    .cards,
    .grid,
    .steps {
        grid-template-columns: 1fr;
    }
    .hero-offres,
    .hero-offre {
        padding: 140px 20px 80px;
    }
    .hero-offres h1,
    .hero-offre h1 {
        font-size: 2em;
    }
    .subtitle {
        font-size: 1.1em;
    }
    .price {
        font-size: 2.8em;
    }
    .main-price {
        font-size: 3em;
    }

}

/*
========================================
PROCESS / TIMELINE
========================================
*/

.simple-process {
    position: relative;
    overflow: hidden;
}

.simple-process .mini-quote {
    font-size: 1.2em;
    color: #4b5563;
    margin-bottom: 60px;
    font-style: italic;
}

.timeline {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 35px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.timeline > div:not(.arrow) {
    flex: 1;
    min-width: 320px;
    max-width: 460px;

    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(8px);

    border-radius: 24px;
    padding: 45px;

    border-top: 4px solid #c6d300;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.05);

    transition: 0.25s;
}

.timeline > div:not(.arrow):hover {
    transform: translateY(-6px);
    box-shadow:
        0 25px 50px rgba(0,0,0,0.08);
}

.timeline strong {
    display: block;

    font-size: 3.5em;
    line-height: 1;

    color: #c6d300;
    font-weight: 800;

    margin-bottom: 25px;
}

.timeline span {
    display: block;

    font-size: 1.08em;
    line-height: 1.9;

    color: #4b5563;
}

.timeline small {
    display: block;

    margin-top: 28px;
    padding-top: 22px;

    border-top: 1px solid rgba(0,0,0,0.08);

    font-size: 0.95em;
    line-height: 1.7;

    color: #6b7280;
    font-style: italic;
}

.timeline .arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 3em;
    font-weight: 300;

    color: #c6d300;

    opacity: 0.8;
}

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

@media screen and (max-width: 900px) {

    .timeline {
        flex-direction: column;
        align-items: center;
    }

    .timeline .arrow {
        transform: rotate(90deg);
        font-size: 2.5em;
    }

    .timeline > div:not(.arrow) {
        width: 100%;
        max-width: 100%;
    }

}

@media screen and (max-width: 700px) {

    .simple-process .mini-quote {
        font-size: 1.05em;
        margin-bottom: 40px;
    }

    .timeline > div:not(.arrow) {
        padding: 35px 28px;
    }

    .timeline strong {
        font-size: 2.8em;
    }

    .timeline span {
        font-size: 1em;
        line-height: 1.7;
    }

}

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;

    margin-top: 55px;
}

.target-card {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(8px);

    border-radius: 20px;

    padding: 35px;

    text-align: left;

    border-top: 3px solid #c6d300;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.05);

    transition: 0.25s;
}

.target-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.08);
}

.target-card h3 {
    margin-bottom: 15px;

    color: #111827;
    font-size: 1.35em;
}

.target-card p {
    margin: 0;

    color: #4b5563;
    line-height: 1.8;
}

@media screen and (max-width: 700px) {

    .target-grid {
        grid-template-columns: 1fr;
    }

}

/*
========================================
DIFFERENCE
========================================
*/

.difference {
    position: relative;
}

.difference p {
    max-width: 850px;

    margin:
        0 auto 55px;

    font-size: 1.15em;
    line-height: 1.9;

    color: #4b5563;
}

.difference-points {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;

    max-width: 1000px;

    margin: 0 auto;
    padding: 0;

    list-style: none;
}

.difference-points li {
    position: relative;

    padding:
        14px 22px 14px 42px;

    border-radius: 999px;

    background:
        rgba(255,255,255,0.55);

    backdrop-filter: blur(4px);

    border:
        1px solid rgba(0,0,0,0.04);

    color: #374151;

    font-size: 1em;
    font-weight: 500;

    transition: 0.2s;
}

.difference-points li:hover {
    transform: translateY(-2px);

    background:
        rgba(255,255,255,0.78);
}

.difference-points li::before {
    content: "";

    position: absolute;

    left: 18px;
    top: 50%;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #c6d300;

    transform: translateY(-50%);
}

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

@media screen and (max-width: 700px) {

    .difference-points {
        flex-direction: column;
        align-items: stretch;
    }

    .difference-points li {
        text-align: left;
    }

}

/*
========================================
FAQ
========================================
*/

.faq .container {
    max-width: 900px;
}

.faq h2 {
    margin-bottom: 70px;
}

.faq h3 {
    position: relative;

    margin:
        0;
    padding:
        0 0 18px 32px;

    text-align: left;

    font-size: 1.25em;
    font-weight: 700;

    color: #111827;
}

.faq h3::before {
    content: "";

    position: absolute;

    left: 0;
    top: 12px;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #c6d300;
}

.faq p {
    position: relative;

    margin:
        0 0 40px 32px;

    padding:
        0 0 40px 0;

    text-align: left;

    color: #4b5563;

    line-height: 1.9;

    border-bottom:
        1px solid rgba(0,0,0,0.06);
}

.faq p:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

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

@media screen and (max-width: 700px) {

    .faq h2 {
        margin-bottom: 50px;
    }

    .faq h3 {
        font-size: 1.1em;

        padding-left: 26px;
    }

    .faq p {
        margin-left: 26px;

        line-height: 1.8;
    }

}