: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
}

.am-topbar {
    background: var(--navy-dk);
    color: #6b8aab;
    font-size: 12px;
    padding: 6px 48px;
    display: flex;
    justify-content: flex-end;
    gap: 20px
}

.am-topbar a {
    color: #6b8aab;
    text-decoration: none
}

.am-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .06)
}

.am-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -.5px
}

.am-logo em {
    color: var(--orange);
    font-style: normal
}

.am-nav {
    display: flex;
    gap: 24px;
    font-size: 14px
}

.am-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500
}

.am-nav a.hi {
    color: var(--orange)
}

.am-cta-hdr {
    background: var(--orange);
    color: #fff;
    padding: 9px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none
}

.am-breadcrumb {
    /* Haut/Bas: 10px | Droite: 2rem | Bas: 10px | Gauche: 0 */
    padding: 10px 2rem 10px 0; 
    font-size: 12px;
    color: var(--muted);
    background: var(--light);
    border-bottom: 1px solid var(--border);
}

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

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

.am-bc-sep {
    color: #adb5bd
}
/* Hero */
.am-hero {
    background: var(--navy);
    padding: 48px 48px 52px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start
}

.am-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
}

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

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

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

.am-hero__checks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding: 0
}

.am-hero__checks li {
    font-size: 14px;
    color: rgba(255, 255, 255, .85)
}

.am-hero__checks li::before {
    content: "—";
    color: var(--orange);
    font-weight: 700;
    margin-right: 8px
}

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

.am-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
}

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

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

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

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

.am-hero__orias {
    font-size: 12px;
    color: rgba(255, 255, 255, .4)
}

.am-hero__orias a {
    color: rgba(255, 255, 255, .5)
}

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

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

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

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

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

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

.am-form-select,
.am-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
}

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

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

.am-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
}

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

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

/* =========================
   TABLETTE (< 992px)
   ========================= */
@media (max-width: 991.98px) {

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

    .am-hero__intro {
        max-width: 100%;
    }

    .am-devis-card {
        max-width: 600px;
    }
}


/* =========================
   MOBILE (< 768px)
   ========================= */
@media (max-width: 767.98px) {

    .am-hero {
        padding: 32px 24px;
        gap: 28px;
    }

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

    .am-hero__h1 em {
        font-size: 21px;
    }

    .am-hero__intro {
        font-size: 15px;
    }

    .am-hero__btns {
        flex-direction: column;
    }

    .am-btn,
    .am-btn--lg {
        width: 100%;
        text-align: center;
    }

    .am-devis-card {
        padding: 24px;
    }
}


/* =========================
   PETIT MOBILE (< 576px)
   ========================= */
@media (max-width: 575.98px) {

    .am-hero {
        padding: 24px 16px;
    }

    .am-hero__badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .am-hero__h1 {
        font-size: 22px;
    }

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

    .am-hero__intro {
        font-size: 14px;
        line-height: 1.6;
    }

    .am-hero__checks li {
        font-size: 13px;
    }

    .am-devis-card {
        padding: 18px;
    }

    .am-devis-card__title {
        font-size: 16px;
    }

    .am-form-select,
    .am-form-input {
        font-size: 13px;
        padding: 10px 12px;
    }

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

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

.am-trust-item strong {
    color: #fff
}

.am-sec {
    padding: 52px 48px
}

.am-sec--gray {
    background: var(--light)
}
.am-container-bc{
    max-width: 1140px;

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

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

.am-container--center {
    text-align: center
}

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

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

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

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

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

/* SECTEURS GRID */
.am-secteurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}
.am-link-inline {
    color: var(--orange);
    text-decoration: underline;
    font-weight: 500
}
.am-link-inline:hover {
    color: var(--orange-hv)
}
.am-secteur-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.am-secteur-card--featured {
    border-color: var(--orange);
    border-width: 1.5px;
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start
}

.am-secteur-card__header {
    grid-column: 1/-1
}

.am-secteur-card--featured .am-secteur-card__header {
    grid-column: auto
}

.am-secteur-card--featured .am-secteur-card__desc {
    grid-column: auto
}

.am-secteur-card__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--orange);
    margin-bottom: 4px
}

.am-secteur-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy)
}

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

.am-secteur-card__points {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.am-secteur-card__points li {
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 7px
}

.am-secteur-card__points li::before {
    content: "✓";
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0
}

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

.am-secteur-card__link:hover {
    text-decoration: underline
}

/* SINISTRES */
.am-sini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.am-sini {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    position: relative;
    overflow: hidden
}

.am-sini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--orange)
}

.am-sini__header {
    margin-bottom: 12px
}

.am-sini__metier {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--orange);
    margin-bottom: 4px
}

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

.am-sini__montant {
    display: inline-flex;
    background: #fff8f0;
    border: 1px solid #fecda0;
    color: #92400e;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    margin-bottom: 12px
}

.am-sini__desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px
}

.am-sini__result {
    background: var(--light);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--navy);
    border-left: 3px solid var(--green);
    padding-left: 14px
}

/* POURQUOI */
.am-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.am-why {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 22px;
    text-align: center
}

.am-why__ico {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #e8f0fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px
}

.am-why__ico i {
    font-size: 26px;
    color: var(--navy)
}

.am-why h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px
}

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

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

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

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

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

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

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

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

.am-faq__question {
    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
}

.am-faq__question:hover {
    background: var(--light)
}

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

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

.am-faq__answer p {
    margin: 0
}

/* MAILLAGE */
.am-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px
}

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

.am-link-card:hover {
    border-color: var(--orange)
}

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

.am-link-card span {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy)
}

/* CTA FINAL */
.am-cta-final {
    background: var(--navy);
    padding: 52px 48px;
    text-align: center
}

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

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

.am-cta-final__btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center
}

.am-cta-final__tel {
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
    text-decoration: none;
    padding: 15px 0
}

.am-foot {
    background: var(--navy-dk);
    color: #4a6380;
    font-size: 12px;
    padding: 14px 48px;
    text-align: center
}

.am-foot a {
    color: inherit
}
/* ==========================================================================
   MEDIA QUERIES - TABLETTES (Largeur max: 960px)
   ========================================================================== */
@media (max-width: 960px) {
    /* Ajustement des paddings globaux pour les sections */
    .am-sec {
        padding: 40px 24px;
    }
    .am-cta-final {
        padding: 40px 24px;
    }

    /* Grilles : passage de 3 colonnes à 2 colonnes */
    .am-secteurs-grid,
    .am-sini-grid,
    .am-why-grid,
    .am-zones-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    /* La carte "featured" s'adapte sur 2 colonnes */
    .am-secteur-card--featured {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* ==========================================================================
   MEDIA QUERIES - SMARTPHONES (Largeur max: 680px)
   ========================================================================== */
@media (max-width: 680px) {
    /* Réduction des paddings structurels */
    .am-sec {
        padding: 32px 16px;
    }
    .am-trust-bar {
        padding: 12px 16px;
        gap: 16px; /* Rapproche les éléments de réassurance */
    }
    .am-cta-final {
        padding: 36px 16px;
    }
    .am-foot {
        padding: 14px 16px;
    }

    /* Titres : réduction de la taille des polices pour éviter les retours à la ligne brutaux */
    .am-sh, 
    .am-sc, 
    .am-cta-final__title {
        font-size: 21px;
    }
    .am-ss {
        margin-bottom: 24px;
    }

    /* Grilles : passage complet sur 1 seule colonne (Full Width) */
    .am-secteurs-grid,
    .am-sini-grid,
    .am-why-grid,
    .am-zones-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Nettoyage des alignements sur l'élément vedette */
    .am-secteur-card--featured .am-secteur-card__header,
    .am-secteur-card--featured .am-secteur-card__desc {
        grid-column: auto;
    }

    /* Cartes : ajustement fin des marges intérieures */
    .am-why {
        padding: 20px 16px;
    }
    .am-sini {
        padding: 20px;
    }

    /* FAQ : optimisation de l'espace cliquable */
    .am-faq__question {
        padding: 14px 16px;
        font-size: 14px;
    }
    .am-faq__answer {
        padding: 0 16px 14px;
    }

    /* Boutons d'action : empilement vertical sur mobile */
    .am-cta-final__btns {
        flex-direction: column;
        align-items: stretch; /* Les boutons prennent toute la largeur disponible */
        gap: 10px;
    }
    
    /* Si tes boutons utilisent des balises <a> ou <button>, ils s'adapteront proprement */
    .am-cta-final__btns .am-btn,
    .am-cta-final__btns a {
        text-align: center;
        width: 100%;
    }
    .am-cta-final__tel {
        padding: 10px 0 0 0;
    }
}