:root {
    --blue: #1a2c4e;
    --blue-mid: #243d6a;
    --blue-lt: #2d5197;
    --gold: #e8b84b;
    --gold-dk: #d4a53d;
    --teal: #2a9d8f;
    --teal-bg: #e8f5f4;
    --red: #e05252;
    --text: #1a1e2e;
    --muted: #5a6478;
    --border: #dde3ef;
    --bg: #f6f8fc;
    --white: #ffffff;
    --r: 10px;
    --sh: 0 2px 16px rgba(26, 44, 78, .09);
    --sh-md: 0 6px 32px rgba(26, 44, 78, .14)
}

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

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

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



.bc {
    display: flex;
    align-items: center;
    gap: 6px
}

.bc a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 6px;
    transition: .15s
}

.bc a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .1)
}

.btn-nav {
    background: var(--gold) !important;
    color: var(--blue) !important;
    padding: 8px 18px !important;
    border-radius: 20px !important;
    font-weight: 900 !important
}

.btn-nav:hover {
    background: var(--gold-dk) !important;
    transform: translateY(-1px)
}

.bc {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 11px 5%;
    font-size: .8rem;
    color: var(--muted)
}

.bc a {
    color: var(--blue-lt);
    text-decoration: none
}

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

.bc span {
    margin: 0 5px
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, #1d3c6e 50%, #1e5f74 100%);
    padding: 60px 5% 52px;
    position: relative;
    overflow: hidden
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none
}

.hero-inner {
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 44px;
    align-items: start
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 184, 75, .18);
    border: 1px solid rgba(232, 184, 75, .38);
    color: var(--gold);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
    font-weight: 800
}

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

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .86);
    max-width: 560px;
    margin-bottom: 20px;
    line-height: 1.72
}

.stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 22px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--r)
}

.stat-item {
    text-align: center
}

.stat-num {
    display: block;
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1
}

.stat-lbl {
    display: block;
    font-size: .7rem;
    color: rgba(255, 255, 255, .72);
    margin-top: 2px;
    font-weight: 600
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 24px
}

.tpill {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .9);
    font-size: .77rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 14px
}

.tpill::before {
    content: '✓';
    color: var(--gold);
    font-weight: 900
}

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

.btn-p {
    display: inline-block;
    background: var(--gold);
    color: var(--blue);
    font-weight: 900;
    font-size: .96rem;
    padding: 13px 26px;
    border-radius: 30px;
    text-decoration: none;
    transition: .2s;
    box-shadow: 0 4px 18px rgba(232, 184, 75, .35)
}

.btn-p:hover {
    background: var(--gold-dk);
    transform: translateY(-2px)
}

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

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

/* COURTIER CARD hero */
.courtier-card {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--r);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    max-width: 400px
}

.courtier-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--blue);
    flex-shrink: 0
}

.courtier-info strong {
    display: block;
    color: #fff;
    font-size: .9rem;
    font-weight: 800
}

.courtier-info span {
    color: rgba(255, 255, 255, .72);
    font-size: .78rem
}

/* FORM */
.hero-form {
    background: #fff;
    border-radius: 14px;
    padding: 26px 22px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .22)
}

.hf-head {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 3px
}

.hf-sub {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 16px
}

.ff {
    margin-bottom: 11px
}

.ff label {
    display: block;
    font-size: .77rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 4px
}

.ff input,
.ff select {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: .87rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color .15s;
    -webkit-appearance: none;
    appearance: none
}

.ff input:focus,
.ff select:focus {
    outline: none;
    border-color: var(--blue-lt);
    background: #fff
}

.btn-form {
    width: 100%;
    background: var(--gold);
    color: var(--blue);
    font-weight: 900;
    font-size: .93rem;
    padding: 12px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: .2s;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 4px 14px rgba(232, 184, 75, .35)
}

.btn-form:hover {
    background: var(--gold-dk);
    transform: translateY(-1px)
}

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

/* LAYOUT */
.section {
    padding: 62px 5%
}

.section-bg {
    background: var(--bg)
}

.section-blue {
    background: var(--blue)
}

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

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.45rem, 2.7vw, 1.95rem);
    color: var(--blue);
    line-height: 1.25;
    margin-bottom: 12px
}

.on-blue h2 {
    color: #fff
}

.lead {
    font-size: .99rem;
    color: var(--muted);
    max-width: 700px;
    margin-bottom: 38px;
    line-height: 1.72
}

.on-blue .lead {
    color: rgba(255, 255, 255, .76)
}

h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 7px
}

p {
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 12px
}

.editorial {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 14px;
    max-width: 820px
}

.editorial strong {
    color: var(--text)
}

.editorial a {
    color: var(--blue-lt);
    font-weight: 700;
    text-decoration: none
}

.editorial a:hover {
    text-decoration: underline
}

.kw {
    background: rgba(232, 184, 75, .15);
    border-bottom: 2px solid var(--gold);
    padding: 0 2px;
    font-weight: 700;
    color: var(--blue)
}

/* CHIFFRES */
.chiffres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px
}

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

.c-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 6px
}

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

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

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

.garantie::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold)
}

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

.garantie h3 {
    font-size: .9rem;
    margin-bottom: 6px
}

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

.g-note {
    font-size: .75rem;
    color: var(--teal);
    font-weight: 700;
    margin-top: 7px;
    display: block
}

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

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

.compare-table th {
    background: var(--blue);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-size: .78rem;
    font-weight: 800
}

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

.compare-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    background: #fff;
    font-size: .83rem
}

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

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

.compare-table tr:hover td {
    background: #eef2fa
}

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

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

.cn {
    color: var(--red);
    font-size: .95rem
}

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

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

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

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

.profile:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(232, 184, 75, .4)
}

.p-icon {
    font-size: 1.6rem;
    margin-bottom: 9px
}

.profile h3 {
    color: var(--gold);
    font-size: .93rem;
    margin-bottom: 7px
}

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

.profile ul {
    list-style: none
}

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

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

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

.erreur-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    border-radius: var(--r);
    padding: 18px
}

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

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

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

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

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

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px;
    box-shadow: var(--sh)
}

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

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

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

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

.act-table th {
    background: var(--blue);
    color: #fff;
    padding: 11px 14px;
    text-align: center;
    font-size: .75rem;
    font-weight: 800;
    white-space: nowrap
}

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

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

.act-table td:first-child {
    text-align: left;
    font-weight: 700;
    color: var(--blue);
    background: var(--bg)
}

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

.act-table tr:hover td {
    background: #eef2fa
}

.ic-y {
    color: var(--teal);
    font-weight: 900;
    font-size: .95rem
}

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

.ic-n {
    color: #ccc;
    font-size: .9rem
}

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

.zone-pill {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 15px;
    font-size: .83rem;
    font-weight: 700;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: .15s
}

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

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

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

.testi {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px 18px;
    box-shadow: var(--sh)
}

.stars {
    color: var(--gold);
    font-size: .95rem;
    margin-bottom: 8px;
    letter-spacing: 2px
}

.testi-text {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 12px;
    font-style: italic
}

.testi-author strong {
    display: block;
    font-size: .83rem;
    color: var(--blue)
}

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

/* METHODE */
.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: 2px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    z-index: 0
}

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

.ms-bubble {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    box-shadow: 0 0 0 6px var(--bg)
}

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

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

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

.eeat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--sh)
}

.eeat-icon {
    font-size: 1.8rem;
    margin-bottom: 10px
}

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

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

/* LOCAL BLOCK */
.local-block {
    background: linear-gradient(135deg, var(--blue) 0%, #1d3a6e 100%);
    border-radius: 14px;
    padding: 40px 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    margin-top: 8px
}

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

.lb-left p {
    color: rgba(255, 255, 255, .82);
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: 10px
}

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

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

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

.lbs-num {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--gold);
    flex-shrink: 0;
    line-height: 1
}

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

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

/* PROCESS */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.pstep {
    text-align: center;
    padding: 20px 14px
}

.ps-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--blue);
    font-size: 1.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px
}

.pstep h3 {
    font-size: .88rem;
    margin-bottom: 5px
}

.pstep p {
    font-size: .81rem;
    margin: 0
}

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

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

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

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

.faq-plus {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 900;
    flex-shrink: 0;
    transition: transform .3s
}

.faq-a {
    display: none;
    padding: 0 18px 14px;
    font-size: .89rem;
    color: var(--muted);
    line-height: 1.72;
    background: #fff
}

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

.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 */
.cta-band {
    padding: 48px 5%;
    text-align: center
}

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

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

.cta-band h2 {
    color: #fff;
    margin-bottom: 10px
}

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

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

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

.cta-band .btn-p:hover {
    background: var(--bg)
}

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

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

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

.link-pill small {
    font-size: .67rem;
    opacity: .6;
    font-weight: 600
}

.link-pill:hover {
    background: rgba(232, 184, 75, .18);
    border-color: var(--gold);
    color: var(--gold)
}

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

.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 22px 18px;
    box-shadow: var(--sh)
}

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

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

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

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

/* FOOTER */
footer {
    background: #0c1624;
    color: rgba(255, 255, 255, .62);
    padding: 46px 5% 22px
}

.ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px
}

.ft-brand p {
    font-size: .81rem;
    margin-top: 9px;
    line-height: 1.65
}

footer h4 {
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 13px
}

footer ul {
    list-style: none
}

footer ul li {
    margin-bottom: 6px
}

footer ul li a {
    color: rgba(255, 255, 255, .58);
    text-decoration: none;
    font-size: .81rem;
    transition: color .15s
}

footer ul li a:hover {
    color: var(--gold)
}

.ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 16px;
    font-size: .76rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 7px
}

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--blue);
    border-top: 2px solid var(--gold);
    padding: 11px 5%;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

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

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

.fi {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease
}

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

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

@media(max-width:960px) {
    .hero-inner {
        grid-template-columns: 1fr
    }

    .hero-form {
        max-width: 480px
    }

    .chiffres-grid {
        grid-template-columns: repeat(2, 1fr)
    }

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

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

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

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

    .bc a:not(.btn-nav) {
        display: none
    }

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

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

@media(max-width:640px) {

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

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

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

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

    .section {
        padding: 46px 5%
    }

    .sticky-cta {
        display: flex
    }

    body {
        padding-bottom: 62px
    }
}