: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 {
    padding: 10px 48px;
    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
}

.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: 28px;
    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: 20px;
    font-weight: 400;
    margin-top: 6px;
    letter-spacing: .02em
}

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

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

.am-link-inline {
    color: var(--orange);
    text-decoration: underline;
    font-weight: 500
}

.am-kw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px
}

.am-kw {
    font-size: 12px;
    background: #e8f0fa;
    color: var(--navy);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500
}

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

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

.am-profil-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange)
}

.am-profil-card__num {
    font-size: 32px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
    opacity: .6
}

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

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

.am-profil-card__points {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.am-profil-card__points div {
    font-size: 12px;
    color: var(--text);
    padding: 8px 10px;
    background: var(--light);
    border-radius: 6px;
    border-left: 2px solid var(--green);
    line-height: 1.5
}

.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 14px;
    font-size: 13px;
    color: var(--navy);
    border-left: 3px solid var(--green)
}

.am-tarif-wrap {
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-bottom: 16px
}

.am-tarif-table {
    width: 100%;
    border-collapse: collapse
}

.am-tarif-table th {
    background: var(--navy);
    color: #fff;
    padding: 13px 16px;
    font-size: 13px;
    font-weight: 600;
    text-align: left
}

.am-tarif-table td {
    padding: 13px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--border)
}

.am-tarif-table tr:last-child td {
    border-bottom: none
}

.am-tarif-table tr:nth-child(even) td {
    background: var(--light)
}

.am-tarif-price {
    font-weight: 700;
    color: var(--navy)
}

.am-tag {
    display: inline-block;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 4px;
    font-weight: 600
}

.am-tag--med {
    background: #fff8e1;
    color: #e65100
}

.am-tag--high {
    background: #fce4ec;
    color: #c62828
}

.am-tarif-note {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 14px;
    color: #92400e;
    line-height: 1.6
}

.am-tarif-note strong {
    display: block;
    margin-bottom: 4px
}

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

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

.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-pilier-link {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #e8f0fa;
    border: 1px solid #b8d0f0;
    border-left: 4px solid #1C3557;
    border-radius: 0 8px 8px 0;
    padding: 16px 18px;
    margin-top: 16px
}

.am-pilier-link__icon {
    font-size: 20px;
    color: #1C3557;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px
}

.am-pilier-link strong {
    color: #1C3557;
    font-size: 14px;
    display: block;
    margin-bottom: 4px
}

.am-pilier-link a {
    color: #F47920;
    text-decoration: underline;
    font-weight: 600
}

/* ==========================================================================
   MEDIA QUERIES - TABLETTES (Largeur max: 992px)
   ========================================================================== */
@media (max-width: 992px) {

    /* Ajustement des paddings généraux de structure */
    .am-topbar,
    .am-header,
    .am-breadcrumb,
    .am-trust-bar,
    .am-sec,
    .am-cta-final,
    .am-foot {
        padding-left: 24px;
        padding-right: 24px;
    }

    /* Hero : Passage sur une colonne pour laisser respirer le contenu */
    .am-hero {
        padding: 36px 24px 40px;
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .am-devis-card {
        max-width: 540px;
        /* Centre et stabilise la largeur de la carte de devis */
    }

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

/* ==========================================================================
   MEDIA QUERIES - SMARTPHONES (Largeur max: 768px)
   ========================================================================== */
@media (max-width: 768px) {

    /* Optimisation des espacements pour les petits écrans */
    .am-topbar,
    .am-header,
    .am-breadcrumb,
    .am-trust-bar,
    .am-sec,
    .am-cta-final,
    .am-foot {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Topbar & En-tête */
    .am-topbar {
        display: none;
        /* Masque la barre supérieure secondaire pour épurer l'interface */
    }

    .am-header {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .am-nav {
        display: none;
        /* Cache la navigation horizontale brute (à lier à un menu burger) */
    }

    /* Réduction des typographies pour éviter les césures brutales */
    .am-hero__h1 {
        font-size: 24px;
    }

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

    .am-sh,
    .am-sc,
    .am-cta-final__title {
        font-size: 21px;
    }

    /* Grilles : Tout passe sur 1 seule colonne (Full Width) */
    .am-profils-grid,
    .am-sini-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Tableaux : Protection contre l'écrasement des colonnes (Scroll horizontal fluide) */
    .am-tarif-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .am-tarif-table {
        min-width: 580px;
        /* Force une largeur minimale pour conserver la structure lisible */
    }

    /* Éléments de cartes et listes */
    .am-devis-card {
        padding: 20px 16px;
    }

    .am-sini,
    .am-profil-card {
        padding: 20px;
    }

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

    .am-faq__answer {
        padding: 0 16px 14px;
    }

    /* Actions et Boutons : Empilement vertical complet pour faciliter le clic au pouce */
    .am-hero__btns,
    .am-cta-final__btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .am-hero__btns .am-btn,
    .am-cta-final__btns .am-btn {
        text-align: center;
        width: 100%;
    }

    .am-cta-final__tel {
        padding: 8px 0 0 0;
        text-align: center;
    }
}