:root {
    --navy: #1C3557;
    --navy-dk: #0F1E32;
    --orange: #F47920;
    --orange-hv: #D96A10;
    --light: #F8F9FA;
    --border: #DEE2E6;
    --text: #2D3748;
    --muted: #6C757D;
    --white: #FFFFFF;
    --green: #28A745
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: -apple-system, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.65
}

.bc-nav {
    padding: 10px 48px;
    font-size: 12px;
    color: var(--muted);
    background: var(--light);
    border-bottom: 1px solid var(--border)
}

.bc-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap
}

.bc-list a {
    color: var(--muted);
    text-decoration: none
}

.bc-sep {
    color: #adb5bd
}

.hero {
    background: var(--navy);
    padding: 48px 48px 52px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(244, 121, 32, .2);
    border: 1px solid rgba(244, 121, 32, .4);
    color: #F47920;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 20px;
    margin-bottom: 16px
}

.hero__h1 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1.22;
    margin-bottom: 12px
}

.hero__h1 em {
    color: #ffa94d;
    font-style: normal;
    display: block;
    font-size: 22px;
    font-weight: 400;
    margin-top: 6px
}

.hero__intro {
    font-size: 16px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 520px
}

.hero__trust {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    color: rgba(255, 255, 255, .85)
}

.trust-icon {
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0
}

.hero__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px
}

.btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background .15s
}

.btn--primary {
    background: var(--orange);
    color: #fff
}

.btn--primary:hover {
    background: var(--orange-hv)
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .35)
}
.btn--ghost:hover{
    color: #fff;
    border: 1.5px solid white

}
.btn--ghost-dark:hover {
    color: #fff;
    border: 1.5px solid white
}
.btn--ghost-dark {
    background: transparent;
    /* color: var(--navy); */
    color: white;
    border: 1.5px solid rgba(255, 255, 255, .35);
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    text-decoration: none;
    display: inline-block
}

.btn--lg {
    padding: 15px 36px;
    font-size: 17px
}

.hero__contact-local {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.hero__contact-local a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none
}

.devis-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: 28px
}

.devis-card__title {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px
}

.devis-card__sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 20px
}

.devis-form {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.form-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    font-weight: 500
}

.form-select,
.form-input {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 6px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 14px;
    font-family: inherit
}

.form-select option {
    background: var(--navy)
}

.form-input::placeholder {
    color: rgba(255, 255, 255, .4)
}

.form-submit {
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px;
    font-family: inherit
}

.form-submit:hover {
    background: var(--orange-hv)
}

.devis-card__note {
    font-size: 11px;
    color: rgba(255, 255, 255, .35);
    text-align: center;
    margin-top: 10px
}

.trust-bar {
    background: var(--navy-dk);
    padding: 14px 48px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap
}

.trust-bar__item {
    font-size: 13px;
    color: #6b8aab
}

.trust-bar__item strong {
    color: #fff
}

.sec {
    padding: 52px 48px
}

.sec--gray {
    background: var(--light)
}

.sec--cta {
    background: var(--navy);
    padding: 52px 48px;
    text-align: center
}

.container {
    max-width: 1140px;
    margin: 0 auto
}

.container--narrow {
    max-width: 860px;
    margin: 0 auto
}

.acces-rapide {
    background: var(--light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 48px
}

.acces-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px
}

.acces-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 22px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s
}

.acces-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12)
}

.acces-card--orange {
    background: var(--orange);
    color: #fff
}

.acces-card--navy {
    background: var(--navy);
    color: #fff
}

.acces-card--gray {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--border)
}

.acces-card__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    opacity: .75
}

.acces-card--gray .acces-card__label {
    color: var(--muted)
}

.acces-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2
}

.acces-card--gray .acces-card__title {
    color: var(--navy)
}

.acces-card__sub {
    font-size: 12px;
    opacity: .82;
    line-height: 1.5;
    flex: 1
}

.acces-card--gray .acces-card__sub {
    color: var(--muted)
}

.acces-card__cta {
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px
}

.acces-liens {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    align-items: center
}

.acces-lk {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1px
}

.acces-lk:hover {
    color: var(--orange);
    border-color: var(--orange)
}

.container--center {
    text-align: center;
    max-width: 1140px;
    margin: 0 auto
}

.sh {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px
}

.sh-line {
    width: 40px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin-bottom: 22px
}

.sp {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 14px
}

.sc {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 6px
}

.ss {
    font-size: 15px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 32px
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px
}

.avantage {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
    border-top: 3px solid var(--orange)
}

.avantage__titre {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px
}

.avantage__desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6
}

.expertises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.expertise-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.expertise-card--featured {
    border-color: var(--orange);
    border-width: 1.5px
}

.expertise-card__num {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
    opacity: .5
}

.expertise-card__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy)
}

.expertise-card__title a {
    color: var(--navy);
    text-decoration: none
}

.expertise-card__desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    flex: 1
}

.expertise-card__link {
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto
}

.expertise-card__link:hover {
    text-decoration: underline
}

.profils-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px
}

.profil {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.profil__titre {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy)
}

.profil__desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    flex: 1
}

.profil__lien {
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto
}

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

.local-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px
}

.local-card__titre {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px
}

.local-card__desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 16px
}

.zone {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 18px
}

.zone__titre {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px
}

.zone__desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5
}

.faq {
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden
}

.faq__item {
    border-bottom: 1px solid var(--border)
}

.faq__item:last-child {
    border-bottom: none
}

.faq__q {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
    background: var(--white);
    border: none;
    font-family: inherit;
    text-align: left
}

.faq__q:hover {
    background: var(--light)
}

.faq__icon {
    font-size: 20px;
    color: var(--orange);
    flex-shrink: 0;
    margin-left: 12px;
    font-weight: 300;
    line-height: 1
}

.faq__a {
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7
}

.faq__a p {
    margin: 0
}

.maillage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px
}

.maillage-lk {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 13px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color .15s
}

.maillage-lk:hover {
    border-color: var(--orange)
}

.maillage-lk::before {
    content: "→";
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0
}

.maillage-lk span {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy)
}

.cta__titre {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px
}

.cta__sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 28px
}

.cta__btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 32px
}

.contact-infos {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.contact-info strong {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgba(255, 255, 255, .5);
    font-weight: 500
}

.contact-info a,
.contact-info span {
    font-size: 14px;
    color: #fff;
    text-decoration: none
}

.contact-info a:hover {
    text-decoration: underline
}
/* ==========================================
   TABLETTES (≤ 1024px)
========================================== */
@media (max-width: 1024px) {

    .hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero__intro {
        max-width: 100%;
    }

    .acces-cards,
    .avantages-grid,
    .expertises-grid,
    .profils-grid,
    .zones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

}
/* ==========================================
   TABLETTES / MOBILES (≤ 768px)
========================================== */
@media (max-width:768px) {

    .bc-nav,
    .hero,
    .trust-bar,
    .sec,
    .sec--cta,
    .acces-rapide {
        padding-left:24px;
        padding-right:24px;
    }

    .hero {
        padding-top:40px;
        padding-bottom:40px;
    }

    .hero__h1 {
        font-size:26px;
    }

    .hero__h1 em {
        font-size:20px;
    }

    .hero__intro {
        font-size:15px;
    }

    .hero__btns {
        flex-direction:column;
    }

    .hero__btns .btn {
        width:100%;
        text-align:center;
    }

    .btn--lg {
        width:100%;
    }

    .trust-bar {
        gap:16px;
    }

    .trust-bar__item {
        width:100%;
        text-align:center;
    }

    .acces-cards,
    .avantages-grid,
    .expertises-grid,
    .profils-grid,
    .zones-grid {
        grid-template-columns:1fr;
    }

    .cta__btns {
        flex-direction:column;
    }

    .cta__btns .btn,
    .cta__btns .btn--ghost-dark {
        width:100%;
    }

    .contact-infos {
        flex-direction:column;
        gap:18px;
    }

    .sh,
    .sc,
    .cta__titre {
        font-size:22px;
    }

}
/* ==========================================
   MOBILES (≤ 576px)
========================================== */
@media (max-width:576px) {

    body {
        font-size:15px;
    }

    .bc-nav,
    .hero,
    .trust-bar,
    .sec,
    .sec--cta,
    .acces-rapide {
        padding-left:16px;
        padding-right:16px;
    }

    .hero {
        padding-top:32px;
        padding-bottom:32px;
        gap:24px;
    }

    .hero__badge {
        font-size:11px;
    }

    .hero__h1 {
        font-size:22px;
        line-height:1.3;
    }

    .hero__h1 em {
        font-size:18px;
    }

    .devis-card {
        padding:20px;
    }

    .sh,
    .sc,
    .cta__titre {
        font-size:20px;
    }

    .ss,
    .sp,
    .cta__sub {
        font-size:14px;
    }

    .faq__q {
        padding:16px;
        font-size:14px;
    }

    .faq__a {
        padding:0 16px 16px;
    }

    .acces-card,
    .expertise-card,
    .profil,
    .local-card,
    .avantage,
    .zone {
        padding:18px;
    }

}