/* ══════════════════════════════════════════════════════
       DESIGN SYSTEM — Bordeaux Assuromieux
       Inspiré page Paris : hero image pleine largeur,
       overlay courtier, navigation par ancres, sections éditoriales
       Typographie : Cormorant Garamond (titres) + DM Sans (corps)
    ══════════════════════════════════════════════════════ */
:root {
    --navy: #0d1f38;
    --navy-lt: #1a3356;
    --gold: #c9a84c;
    --gold-lt: #e8c97a;
    --gold-pale: rgba(201, 168, 76, .12);
    --teal: #2a7f74;
    --teal-lt: #e4f4f2;
    --cream: #faf8f4;
    --white: #ffffff;
    --text: #1c2333;
    --muted: #566070;
    --border: #e2e6ee;
    --red: #c94c4c;
    --r: 6px;
    --r-lg: 14px;
    --sh: 0 2px 20px rgba(13, 31, 56, .08);
    --sh-md: 0 8px 40px rgba(13, 31, 56, .14);
    --sh-lg: 0 20px 60px rgba(13, 31, 56, .18);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
}


/* ══ BREADCRUMB ══ */
.bc {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 10px 5%;
    font-size: .78rem;
    color: var(--muted);
    margin-top: 68px;
}

.bc a {
    color: var(--navy-lt);
    text-decoration: none;
    font-weight: 500;
}

.bc a:hover {
    text-decoration: underline;
}

.bc span {
    margin: 0 6px;
    opacity: .5;
}

/* ══ HERO IMAGE PLEINE LARGEUR ══
       Inspiré page Paris : photo de rue, overlay dégradé, card courtier en overlay
    ══ */
.hero {
    position: relative;
    height: 560px;
    overflow: hidden;
}

/* Image de fond — rue commerçante bordelaise
       Sources multiples pour compatibilité maximale :
       1. Picsum (stable, pas de CORS)
       2. Fallback gradient bordeaux si image non chargée
    */
.hero-bg {
    position: absolute;
    inset: 0;
    /* Fallback gradient visuel si l'image ne charge pas */
    background-color: #1a2c4e;
    background-image:
        /* Simulation rue commerçante — dégradé riche */
        linear-gradient(135deg,
            rgba(10, 18, 35, 0.3) 0%,
            rgba(26, 44, 78, 0.1) 100%),
        /* Image principale — rue bordelaise (Picsum stable) */
        url('https://picsum.photos/id/1018/1920/560');
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
}

/* Si Picsum aussi indisponible — fond synthétique crédible */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg,
            transparent 0px,
            transparent 60px,
            rgba(255, 255, 255, .018) 60px,
            rgba(255, 255, 255, .018) 61px),
        repeating-linear-gradient(0deg,
            transparent 0px,
            transparent 80px,
            rgba(255, 255, 255, .012) 80px,
            rgba(255, 255, 255, .012) 81px),
        linear-gradient(160deg, #0a1a35 0%, #1a3560 35%, #0e2a4a 65%, #142035 100%);
    z-index: -1;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

/* Overlay dégradé */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(13, 31, 56, .55) 0%,
            rgba(13, 31, 56, .3) 40%,
            rgba(13, 31, 56, .7) 80%,
            rgba(13, 31, 56, .9) 100%);
}

/* Contenu hero — 2 colonnes : texte gauche, carte courtier droite */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: flex-end;
    padding: 0 5% 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left-col {
    display: flex;
    flex-direction: column;
}

.hero-right-col {
    display: flex;
    align-items: flex-end;
    padding-bottom: 4px;
}

/* Breadcrumb léger dans le hero */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 168, 76, .2);
    border: 1px solid rgba(201, 168, 76, .4);
    color: var(--gold-lt);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 10px;
    max-width: 780px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-lt);
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .82);
    max-width: 580px;
    margin-bottom: 24px;
    line-height: 1.65;
}

/* Card courtier style Paris — fond blanc, label doré, nom bold, tel + email avec icônes */
.hero-courtier {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 20px 24px;
    width: fit-content;
    min-width: 300px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .22);
}

.hc-label {
    font-size: .72rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 8px;
}

.hc-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
}

.hc-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
}

.hc-contact-row:last-child {
    margin-bottom: 0;
}

.hc-icon {
    width: 30px;
    height: 30px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
}

.hc-contact-row a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
}

.hc-contact-row a:hover {
    color: var(--teal);
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-p {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: .94rem;
    padding: 13px 26px;
    border-radius: 30px;
    text-decoration: none;
    transition: .2s;
    box-shadow: 0 4px 20px rgba(201, 168, 76, .4);
    letter-spacing: -.2px;
}

.btn-p:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(201, 168, 76, .5);
}

.btn-g {
    display: inline-block;
    border: 1.5px solid rgba(255, 255, 255, .5);
    color: #fff;
    font-weight: 600;
    font-size: .92rem;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    transition: .2s;
}

.btn-g:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

/* ══ NAVIGATION PAR ANCRES ══ — même pattern que page Paris */
.anchor-nav {
    background: var(--navy);
    border-bottom: 1px solid rgba(201, 168, 76, .2);
    position: sticky;
   top: 120px;
    z-index: 1020;
    overflow-x: auto;
}

.anchor-nav-inner {
    display: flex;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0;
}

.anchor-nav a {
    display: block;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 500;
    padding: 16px 20px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: .15s;
}

.anchor-nav a:hover {
    color: #fff;
    border-bottom-color: var(--gold);
}

.anchor-nav a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    font-weight: 600;
}

/* ══ LAYOUT ══ */
.section {
    padding: 72px 5%;
}

.section-cream {
    background: var(--cream);
}

.section-navy {
    background: var(--navy);
}

.inner {
    max-width: 1100px;
    margin: 0 auto;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 14px;
}

h2 em {
    font-style: italic;
    color: var(--gold);
}

.on-navy h2 {
    color: #fff;
}

.on-navy h2 em {
    color: var(--gold-lt);
}

.lead {
    font-size: 1rem;
    color: var(--muted);
    max-width: 680px;
    margin-bottom: 42px;
    line-height: 1.72;
}

.on-navy .lead {
    color: rgba(255, 255, 255, .72);
}

h3 {
    font-size: .98rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
}

p {
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 12px;
    font-size: .93rem;
}

.editorial {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.82;
    margin-bottom: 16px;
    max-width: 800px;
}

.editorial strong {
    color: var(--text);
    font-weight: 600;
}

.kw {
    background: var(--gold-pale);
    border-bottom: 1.5px solid var(--gold);
    padding: 0 3px;
    font-weight: 600;
    color: var(--navy);
}

/* ══ CHIFFRES ══ */
.chiffres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.chiffre-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--sh);
}

.c-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}

.c-lbl {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.45;
}

/* ══ GARANTIES ══ */
.garanties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.garantie {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 22px;
    box-shadow: var(--sh);
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

.garantie::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.garantie:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-md);
}

.g-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--border);
    line-height: 1;
    margin-bottom: 10px;
}

.garantie h3 {
    font-size: .93rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.garantie p {
    font-size: .84rem;
    margin: 0;
}

.g-note {
    font-size: .76rem;
    color: var(--teal);
    font-weight: 600;
    margin-top: 10px;
    display: block;
}

/* ══ COMPARATIF ══ */
.compare-wrap {
    overflow-x: auto;
    margin-top: 32px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .84rem;
    box-shadow: var(--sh);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.compare-table th {
    background: var(--navy);
    color: #fff;
    padding: 14px 16px;
    text-align: left;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .2px;
}

.compare-table th:not(:first-child) {
    text-align: center;
}

.compare-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.compare-table td:not(:first-child) {
    text-align: center;
}

.compare-table tr:nth-child(even) td {
    background: var(--cream);
}

.cy {
    color: var(--teal);
    font-weight: 700;
    font-size: .95rem;
}

.co {
    color: var(--gold);
    font-weight: 700;
    font-size: .78rem;
}

.cn {
    color: #ccc;
}

.col-h {
    background: rgba(42, 127, 116, .06) !important;
    border-left: 2px solid var(--teal);
    border-right: 2px solid var(--teal);
}

.col-ht {
    background: var(--navy) !important;
    border-left: 2px solid var(--teal);
    border-right: 2px solid var(--teal);
}

/* ══ PROFILS ══ */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.profile {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    transition: .2s;
}

.profile:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(201, 168, 76, .4);
}

.p-icon {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.profile h3 {
    color: var(--gold-lt);
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.profile p {
    font-size: .83rem;
    color: rgba(255, 255, 255, .68);
    margin: 0 0 10px;
}

.profile ul {
    list-style: none;
}

.profile ul li {
    font-size: .81rem;
    color: rgba(255, 255, 255, .6);
    padding: 3px 0 3px 16px;
    position: relative;
}

.profile ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 600;
}

/* ══ ACT TABLE ══ */
.act-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .82rem;
    box-shadow: var(--sh);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.act-table th {
    background: var(--navy);
    color: #fff;
    padding: 12px 14px;
    text-align: center;
    font-size: .76rem;
    font-weight: 600;
    white-space: nowrap;
}

.act-table th:first-child {
    text-align: left;
}

.act-table td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    text-align: center;
    font-size: .8rem;
}

.act-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--navy);
    background: var(--cream);
}

.act-table tr:nth-child(even) td:not(:first-child) {
    background: #fafbfd;
}

.ic-y {
    color: var(--teal);
    font-weight: 700;
}

.ic-r {
    color: var(--gold);
    font-size: .72rem;
    font-weight: 700;
}

.ic-n {
    color: #ccc;
}

/* ══ ERREURS ══ */
.erreurs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 820px;
}

.erreur-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    border-radius: var(--r-lg);
    padding: 20px;
    box-shadow: var(--sh);
}

.err-num {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    margin-top: 1px;
}

.err-body h3 {
    font-size: .93rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.err-body p {
    font-size: .84rem;
    margin: 0;
}

.err-fix {
    display: inline-block;
    margin-top: 8px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--teal);
    background: var(--teal-lt);
    padding: 3px 12px;
    border-radius: 10px;
}

/* ══ WHY ══ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 22px;
    box-shadow: var(--sh);
}

.why-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--teal-lt);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.why-item h3 {
    font-size: .93rem;
    margin-bottom: 5px;
}

.why-item p {
    font-size: .84rem;
    margin: 0;
}

/* ══ MÉTHODE ══ */
.methode-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.methode-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    z-index: 0;
}

.ms {
    text-align: center;
    padding: 0 14px;
    position: relative;
    z-index: 1;
}

.ms-bubble {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 0 0 8px var(--cream);
}

.ms-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.ms h3 {
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--navy);
}

.ms p {
    font-size: .8rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}

/* ══ TESTI ══ */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testi {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    box-shadow: var(--sh);
}

.testi-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-lt));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
}

.testi-meta strong {
    display: block;
    font-size: .87rem;
    color: var(--navy);
    font-weight: 600;
}

.testi-meta span {
    font-size: .76rem;
    color: var(--muted);
}

.stars {
    color: var(--gold);
    font-size: .85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.testi-text {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.67;
    font-style: italic;
    margin: 0;
}

/* ══ EEAT ══ */
.eeat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.eeat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 22px 18px;
    text-align: center;
    box-shadow: var(--sh);
}

.eeat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.eeat-card h3 {
    font-size: .88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.eeat-card p {
    font-size: .79rem;
    margin: 0;
    line-height: 1.55;
}

/* ══ LOCAL BLOCK ══ */
.local-block {
    background: linear-gradient(135deg, var(--navy) 0%, #142a50 100%);
    border-radius: var(--r-lg);
    padding: 44px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
}

.lb-left h2 {
    color: #fff;
    margin-bottom: 14px;
}

.lb-left p {
    color: rgba(255, 255, 255, .78);
    font-size: .93rem;
    line-height: 1.78;
    margin-bottom: 12px;
}

.lb-left a {
    color: var(--gold-lt);
    font-weight: 600;
    text-decoration: none;
}

.lb-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lb-stat {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.lbs-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-lt);
    flex-shrink: 0;
    line-height: 1;
}

.lbs-txt {
    font-size: .82rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.45;
}

.lbs-txt strong {
    display: block;
    color: #fff;
    font-size: .86rem;
    margin-bottom: 2px;
    font-weight: 600;
}

/* ══ ZONES ══ */
.zones-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 8px;
}

.zone-pill {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 7px 16px;
    font-size: .83rem;
    font-weight: 500;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: .15s;
}

.zone-pill:hover {
    background: var(--teal-lt);
    border-color: var(--teal);
    color: var(--teal);
}

.zone-pill::before {
    content: '📍';
    font-size: .75rem;
}

/* ══ FAQ ══ */
.faq-wrap {
    max-width: 820px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    transition: background .15s;
    font-family: 'DM Sans', sans-serif;
    font-size: .93rem;
    font-weight: 600;
    color: var(--navy);
}

.faq-q:hover {
    background: var(--cream);
}

.faq-plus {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform .3s;
    line-height: 1;
}

.faq-a {
    display: none;
    padding: 0 20px 16px;
    font-size: .89rem;
    color: var(--muted);
    line-height: 1.75;
    background: var(--white);
}

.faq-item.open .faq-q {
    background: var(--cream);
}

.faq-item.open .faq-a {
    display: block;
}

.faq-item.open .faq-plus {
    transform: rotate(45deg);
}

.faq-obj .faq-item {
    border-left: 3px solid var(--gold);
}

/* ══ CTA BANDS ══ */
.cta-band {
    padding: 56px 5%;
    text-align: center;
}

.cta-teal {
    background: linear-gradient(135deg, var(--teal) 0%, #1a5f57 100%);
}

.cta-gold {
    background: linear-gradient(135deg, #7a5a1a 0%, var(--gold) 50%, #7a5a1a 100%);
}

.cta-band h2 {
    color: #fff;
    margin-bottom: 12px;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.cta-band p {
    color: rgba(255, 255, 255, .85);
    font-size: .98rem;
    max-width: 560px;
    margin: 0 auto 26px;
}

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

.cta-band .btn-p {
    background: #fff;
    color: var(--navy);
}

.cta-band .btn-p:hover {
    background: var(--cream);
    box-shadow: 0 4px 20px rgba(255, 255, 255, .3);
}

.cta-band .btn-g {
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}

/* ══ FORMULAIRE DEVIS FLOTTANT ══ */
.devis-section {
    background: var(--cream);
    border-top: 1px solid var(--border);
}

.devis-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 60px;
    align-items: center;
}

.devis-left h2 {
    margin-bottom: 12px;
}

.devis-left p {
    color: var(--muted);
    font-size: .93rem;
    line-height: 1.72;
    margin-bottom: 0;
}

.devis-form-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    box-shadow: var(--sh-lg);
    border: 1px solid var(--border);
}

.df-head {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.df-sub {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.ff {
    margin-bottom: 14px;
}

.ff label {
    display: block;
    font-size: .76rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
    letter-spacing: .2px;
    text-transform: uppercase;
}

.ff input,
.ff select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    font-family: 'DM Sans', sans-serif;
    font-size: .87rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color .15s, background .15s;
    -webkit-appearance: none;
    appearance: none;
}

.ff input:focus,
.ff select:focus {
    outline: none;
    border-color: var(--navy);
    background: var(--white);
}

.btn-form {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-size: .94rem;
    padding: 13px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: .2s;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -.2px;
}

.btn-form:hover {
    background: var(--navy-lt);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(13, 31, 56, .3);
}

.form-rea {
    text-align: center;
    font-size: .72rem;
    color: var(--muted);
    margin-top: 10px;
}

/* ══ MAILLAGE ══ */
.links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.link-pill {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-size: .83rem;
    font-weight: 500;
    padding: 9px 16px;
    border-radius: 20px;
    transition: .2s;
    display: flex;
    flex-direction: column;
}

.link-pill small {
    font-size: .67rem;
    opacity: .55;
    font-weight: 400;
}

.link-pill:hover {
    background: rgba(201, 168, 76, .18);
    border-color: var(--gold);
    color: var(--gold-lt);
}

/* ══ CONTACT ══ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    box-shadow: var(--sh);
}

.cc-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--muted);
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--navy-lt);
    font-weight: 600;
    font-size: .98rem;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--teal);
}

.contact-card p {
    font-size: .84rem;
    margin: 4px 0 0;
}


/* ══ STICKY MOBILE ══ */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--navy);
    border-top: 2px solid var(--gold);
    padding: 12px 5%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sticky-cta p {
    color: rgba(255, 255, 255, .85);
    font-size: .81rem;
    font-weight: 600;
    margin: 0;
}

.sticky-cta a {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: .86rem;
    padding: 9px 20px;
    border-radius: 24px;
    text-decoration: none;
    white-space: nowrap;
}

/* ══ FADE ANIM ══ */
.fi {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
}

.fi.vis {
    opacity: 1;
    transform: none;
}

@media(prefers-reduced-motion:reduce) {
    .fi {
        opacity: 1;
        transform: none;
        transition: none
    }

    .hero-bg {
        animation: none;
        transform: none
    }
}

/* ══ RESPONSIVE ══ */
@media(max-width:1024px) {
    .devis-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

   
}

@media(max-width:960px) {
    .hero {
        height: 480px;
    }

    .hero h1 {
        font-size: clamp(1.7rem, 4vw, 2.6rem);
    }

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

    .hero-right-col {
        display: none;
    }

    /* carte masquée sur tablette — visible en section contact */
    .chiffres-grid {
        grid-template-columns: 1fr 1fr;
    }

    .garanties-grid,
    .profiles-grid,
    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .methode-steps {
        grid-template-columns: 1fr 1fr;
    }

    .methode-steps::before {
        display: none;
    }

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

@media(max-width:640px) {
    .hero {
        height: 520px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .garanties-grid,
    .profiles-grid,
    .testi-grid,
    .contact-grid,
    .why-grid,
    .eeat-grid {
        grid-template-columns: 1fr;
    }

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

    .methode-steps {
        grid-template-columns: 1fr;
    }

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

    .section {
        padding: 48px 5%;
    }

    .sticky-cta {
        display: flex;
    }

    body {
        padding-bottom: 64px;
    }
}