

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

/* Couleurs principales du site */
:root {

    /* Bleus : header, bannière accueil, textes forts */
    --ocean:       #1A6B9A;
    --ocean-deep:  #0F4C6B;
    --ocean-mid:   #2589C8;
    --sky:         #A8D8EA;
    --sky-light:   #D6EDF8;

    /* Fonds clairs : pages, cartes, bannières sobres */
    --sand:        #F5EFE3;
    --sand-dark:   #E8DFD0;
    --cream:       #FDFAF6;
    --white:       #FFFFFF;

    /* Textes et gris */
    --granite:     #3D4A5C;
    --gray:        #7A8A9B;

    /* Orange/vert : boutons d'action, accents, validations */
    --amber:       #E07A10;
    --amber2:      #F59820;
    --green:       #1A9A5A;


    --amber-light: var(--sky-light);
    --amber-dark:  var(--ocean-deep);
    --slate-950:   #0A0F1E;
    --slate-900:   var(--ocean-deep);
    --slate-800:   #1F3A50;
    --slate-700:   var(--granite);
    --slate-600:   #4B5E70;
    --slate-400:   var(--gray);
    --slate-200:   var(--sand-dark);
    --slate-100:   var(--sand);
    --slate-50:    var(--cream);

    --bg:          var(--cream);
    --surface:     var(--white);
    --surface-alt: var(--cream);
    --text:        var(--granite);
    --text-muted:  #6B7D8E;
    --border:      var(--sand-dark);

    --radius-sm:   6px;
    --radius:      12px;
    --radius-lg:   16px;
    --radius-xl:   24px;

    --shadow-sm:   0 1px 4px rgba(15,76,107,.07);
    --shadow:      0 4px 20px rgba(15,76,107,.09);
    --shadow-md:   0 8px 28px rgba(15,76,107,.11);
    --shadow-lg:   0 12px 40px rgba(15,76,107,.14);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;

    --max-w:       1060px;
    --gap:         clamp(2rem, 5vw, 3.5rem);
    --text-base:   17px;
    --text-sm:     15px;
    --text-xs:     13px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
    font-size: var(--text-base);
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: var(--font-body); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.15rem; }
main { flex: 1; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--ocean);
    background: rgba(168,216,234,.22);
    border: 1px solid rgba(37,137,200,.2);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.shell-deco {
    position: absolute;
    opacity: .12;
    font-size: 1.6rem;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

/* Bandeau téléphone tout en haut */
.top-phone-bar {
    background: var(--ocean-deep);
    color: rgba(255,255,255,.82);
    text-align: center;
    padding: .55rem 1rem;
    font-size: .9rem;
    font-weight: 500;
}
.top-phone-bar a {
    color: var(--sky);
    text-decoration: none;
    font-weight: 700;
}
.top-phone-bar a:hover { color: var(--white); }
.top-phone-short { display: none; }

/* Header et menu principal */
header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(253,250,246,.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--sand-dark);
    box-shadow: 0 2px 16px rgba(15,76,107,.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--ocean-deep);
    letter-spacing: -.01em;
    flex-shrink: 0;
}
.logo-container .logo-anchor { color: var(--amber); margin-right: 2px; }
.logo-container .logo-accent { color: var(--amber); }
.logo-dot {
    width: 7px; height: 7px;
    background: var(--amber);
    border-radius: 50%;
    display: inline-block;
    margin-left: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: .25rem;
    align-items: center;
}
nav ul li a {
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--granite);
    padding: .45rem 1rem;
    border-radius: 8px;
    transition: background .15s, color .15s;
    display: block;
}
nav ul li a:hover,
nav ul li a.active {
    background: var(--sky-light);
    color: var(--ocean);
}

/* Bouton "Prendre RDV" dans le menu */
.nav-cta {
    background: var(--ocean-deep) !important;
    color: var(--white) !important;
    padding: .5rem 1.15rem !important;
    border-radius: var(--radius) !important;
    font-weight: 700 !important;
    transition: background .18s !important;
}
.nav-cta:hover {
    background: var(--ocean) !important;
    color: var(--white) !important;
}

.nav-admin {
    background: #ECFDF5 !important;
    color: #047857 !important;
    border: 1px solid #A7F3D0;
    font-weight: 800 !important;
}
.nav-admin:hover,
.nav-admin.active {
    background: #D1FAE5 !important;
    color: #065F46 !important;
}

.nav-phone {
    font-weight: 700;
    color: var(--ocean);
    text-decoration: none;
    font-size: .88rem;
    white-space: nowrap;
}
.nav-phone:hover { color: var(--ocean-deep); }

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--white);
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    color: var(--text);
    padding: 0;
    transition: border-color .15s, box-shadow .15s, color .15s;
}
.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
    color: var(--ocean-deep);
    border-color: var(--amber);
    box-shadow: 0 8px 18px rgba(15,76,107,.12);
}
.menu-toggle svg { display: block; }

.stmalo-stripe {
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--ocean-deep) 0px,
        var(--ocean-deep) 18px,
        var(--ocean) 18px,
        var(--ocean) 36px,
        var(--sky) 36px,
        var(--sky) 54px,
        var(--sand) 54px,
        var(--sand) 72px
    );
    opacity: .55;
}

/* Boutons génériques */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: var(--text-sm);
    padding: 13px 26px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .18s ease;
    white-space: nowrap;
    line-height: 1;
}
.btn-large {
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: var(--radius);
}

/* Bouton bleu principal */
.btn-primary {
    background: var(--sand);
    color: var(--ocean-deep);
    border: 1.5px solid var(--sand-dark);
}
.btn-primary:hover {
    background: var(--sand-dark);
    color: var(--ocean-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Bouton bleu secondaire */
.btn-ocean {
    background: var(--ocean-deep);
    color: var(--white);
}
.btn-ocean:hover {
    background: var(--ocean);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Bouton orange principal */
.btn-amber {
    background: var(--amber);
    color: var(--white);
    border: 1.5px solid var(--amber);
}
.btn-amber:hover {
    background: var(--amber2);
    border-color: var(--amber2);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Bouton contour */
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--ocean);
    background: var(--sky-light);
    color: var(--ocean);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.45);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.7);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--ocean-deep);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--sand);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(0,0,0,.2);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: var(--text-sm);
    padding: 13px 26px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    background: var(--ocean-deep);
    color: var(--white);
    transition: all .18s ease;
}
.btn-submit:hover {
    background: var(--ocean);
    color: var(--white);
    transform: translateY(-1px);
}

.trust-bar {
    background: var(--ocean-deep);
    padding: 1.25rem 0;
    overflow: hidden;
    position: relative;
}
.trust-bar .shell-deco { top: 50%; transform: translateY(-50%); opacity: .08; }
.trust-bar-inner {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.82);
    font-size: var(--text-sm);
    font-weight: 700;
    white-space: nowrap;
}
.trust-item svg { color: var(--sky); }

section { padding: var(--gap) 0; }
section + section { padding-top: 0; }

.section-header,
.section-head {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header .tag,
.section-head .tag { margin-bottom: 1rem; }
.section-header h2,
.section-head h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: 1.2;
    color: var(--ocean-deep);
    margin-bottom: .55rem;
}
.section-header p,
.section-head p {
    margin-top: .875rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.02rem;
}

.hero-index {
    background: linear-gradient(160deg, var(--ocean-deep) 0%, var(--ocean) 55%, var(--ocean-mid) 100%);
    color: var(--white);
    padding: clamp(4rem, 10vw, 7rem) 0 0;
    overflow: hidden;
    position: relative;
}
.hero-index::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.hero-index::after {
    content: '';
    position: absolute;
    top: -80px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(224,122,16,.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-shell-1 { top: 15%; left: 3%; font-size: 1.4rem; opacity: .1; position: absolute; transform: rotate(-20deg); pointer-events: none; }
.hero-shell-2 { bottom: 20%; right: 5%; font-size: 1.1rem; opacity: .08; position: absolute; transform: rotate(15deg); pointer-events: none; }

.hero-index .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.hero-text .tag {
    background: rgba(168,216,234,.18);
    color: var(--sky);
    border-color: rgba(168,216,234,.28);
}
.hero-text h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.1rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin-bottom: 1.2rem;
    color: var(--white);
}
.hero-text h1 em {
    font-style: normal;
    color: var(--sand);
}
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    max-width: 460px;
    margin-bottom: 1rem;
    line-height: 1.7;
}
.hero-subdesc {
    font-size: 1rem;
    color: rgba(255,255,255,.88);
    max-width: 420px;
    margin-bottom: 2rem;
    padding: .875rem 1.25rem;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius);
    border-left: 3px solid var(--sand);
    backdrop-filter: blur(6px);
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* Vagues en bas des bannières */
.hero-wave {
    display: block;
    width: 100%;
    margin-bottom: -2px;
    line-height: 0;
    position: relative;
    z-index: 1;
}
.hero-wave-svg {
    display: block;
    width: 100%;
    height: 70px;
}
/* Couleur de la vague sur la page cours */
.hero-wave-cours path {
    fill: var(--white);
}

.hero-visual { display: flex; justify-content: center; }
.hero-card-stack {
    position: relative;
    width: 320px;
    height: 300px;
}
.hc {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.25rem 1.5rem;
    min-width: 200px;
}
.hc-main {
    top: 0; left: 0; width: 260px;
    background: rgba(255,255,255,.97);
    color: var(--ocean-deep);
    z-index: 2;
}
.hc-main .hc-icon { font-size: 2rem; margin-bottom: .5rem; }
.hc-main h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--ocean-deep);
    margin-bottom: .25rem;
}
.hc-main p { font-size: var(--text-sm); color: var(--text-muted); }
.hc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: .75rem;
    background: var(--sand);
    color: var(--ocean-deep);
    font-size: var(--text-xs);
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid var(--sand-dark);
}
.hc-stat {
    top: 120px; right: 0; width: 160px;
    text-align: center; z-index: 3;
}
.hc-stat .stat-num {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 800;
    color: var(--ocean);
}
.hc-stat .stat-label { font-size: var(--text-xs); color: var(--text-muted); }
.hc-zone {
    top: 0; right: 0; width: 180px;
    font-size: var(--text-sm); z-index: 1;
}
.hc-zone strong { display: block; margin-bottom: 2px; color: var(--ocean-deep); }

.services-section { padding: clamp(3rem,8vw,6rem) 0; background: var(--white); }
.services { background: var(--white); padding: 4.5rem 0; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--cream);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: box-shadow .2s, transform .2s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--ocean), var(--sky));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
    border-radius: 0;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--sky);
}

.service-card .card-shell {
    position: absolute;
    bottom: 10px; right: 14px;
    font-size: 1.8rem;
    opacity: .07;
    pointer-events: none;
}

.service-card-featured {
    background: var(--ocean-deep);
    border-color: var(--ocean-deep);
    color: var(--white);
}
.service-card-featured::before { background: linear-gradient(90deg, var(--sand), var(--sky)); }
.service-card-featured h3 { color: var(--white); }
.service-card-featured p { color: rgba(255,255,255,.72); }

.service-card-badge {
    display: inline-flex;
    align-self: flex-start;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: var(--sand);
    color: var(--ocean-deep);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid var(--sand-dark);
}

.service-card-icon { font-size: 2.4rem; line-height: 1; }

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-top: .25rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.7;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: .25rem;
    flex: 1;
}
.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.5;
}
.service-list li::before {
    content: '✓';
    color: var(--ocean);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.service-list-light li { color: rgba(255,255,255,.72); }
.service-list-light li::before { color: var(--sky); }

.service-btn {
    margin-top: auto;
    align-self: flex-start;
    font-size: var(--text-sm);
    padding: 11px 20px;
}

.how-section {
    background: var(--sand);
    padding: clamp(3rem,8vw,6rem) 0;
    position: relative;
    overflow: hidden;
}
.how-section .shell-deco-l { left: 2%; top: 20%; transform: rotate(-25deg); }
.how-section .shell-deco-r { right: 2%; bottom: 20%; transform: rotate(18deg); }

.steps-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.step-card {
    flex: 1;
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--white);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    transition: box-shadow .2s, transform .2s;
    position: relative;
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.step-arrow {
    flex-shrink: 0;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--ocean);
    padding-top: 2.5rem;
}
.step-circle {
    width: 50px; height: 50px;
    background: var(--ocean-deep);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 1.25rem;
    border: 3px solid var(--sand);
    box-shadow: 0 0 0 2px var(--ocean-deep);
}
.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--ocean-deep);
}
.step-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.65;
}

.concept-section {
    padding: clamp(3rem,8vw,6rem) 0;
    background: var(--ocean-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.concept-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.concept-section .shell-deco-tl { top: 10%; left: 2%; transform: rotate(-30deg); }
.concept-section .shell-deco-br { bottom: 10%; right: 3%; transform: rotate(20deg); opacity: .08; }

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.concept-left .tag {
    background: rgba(168,216,234,.15);
    color: var(--sky);
    border-color: rgba(168,216,234,.22);
}
.concept-left h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: 1rem;
    color: var(--white);
}
.concept-left p {
    color: rgba(255,255,255,.75);
    margin-bottom: 1.25rem;
    font-size: 1.02rem;
    line-height: 1.7;
}
.concept-highlight {
    background: rgba(245,239,227,.1);
    border: 1.5px solid rgba(245,239,227,.25);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: rgba(255,255,255,.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.concept-pill {
    display: inline-block;
    background: rgba(26,154,90,.22);
    color: #5BE89A;
    font-size: 1rem; font-weight: 700;
    padding: .55rem 1.05rem;
    border-radius: 8px;
    margin: .5rem 0 1.75rem;
    border: 1px solid rgba(91,232,154,.22);
}

.concept-compare {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.compare-card {
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.compare-other {
    background: rgba(255,255,255,.05);
    border: 1.5px solid rgba(255,255,255,.08);
}
.compare-malo {
    background: rgba(37,137,200,.2);
    border: 1.5px solid rgba(168,216,234,.28);
}
.compare-label {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.42);
    margin-bottom: .25rem;
}
.compare-malo .compare-label { color: var(--sky); }
.compare-item {
    font-size: var(--text-sm);
    font-weight: 700;
    line-height: 1.5;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.compare-item.bad { color: rgba(255,255,255,.42); }
.compare-item.good { color: rgba(255,255,255,.9); }

.why-section {
    background: var(--cream);
    padding: clamp(3rem,8vw,6rem) 0;
    position: relative;
    overflow: hidden;
}
.why-section .shell-deco-r { right: 1.5%; top: 15%; transform: rotate(12deg); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.why-card {
    background: var(--white);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: box-shadow .2s, transform .2s;
    position: relative;
    overflow: hidden;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-card .card-shell {
    position: absolute;
    bottom: 8px; right: 12px;
    font-size: 1.6rem; opacity: .07;
    pointer-events: none;
}
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--ocean-deep);
}
.why-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
}

.click-repair-section { padding: clamp(3rem,8vw,6rem) 0; background: var(--white); }
.click-repair-inner {
    background: var(--ocean-deep);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.click-repair-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}
.click-repair-inner .shell-deco { bottom: 12px; right: 20px; font-size: 2rem; opacity: .06; }

.cr-left h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.01em;
    margin-bottom: 1rem;
}
.cr-left p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; font-size: 1rem; }
.cr-features { display: flex; flex-direction: column; gap: .875rem; }
.cr-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--text-sm);
    color: rgba(255,255,255,.82);
    font-weight: 700;
}
.cr-feature::before {
    content: '';
    flex-shrink: 0;
    width: 6px; height: 6px;
    background: var(--sky);
    border-radius: 50%;
}
.cr-right {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}
.cr-right h3 {
    font-size: var(--text-xs);
    color: var(--sky);
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.cr-steps { display: flex; flex-direction: column; gap: 1rem; }
.cr-step {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.8);
    font-size: var(--text-sm);
    line-height: 1.5;
}
.cr-step-num {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: var(--sand);
    color: var(--ocean-deep);
    font-weight: 800;
    font-size: var(--text-sm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zone-section {
    background: var(--cream);
    padding: clamp(3rem,8vw,6rem) 0;
}
.zone { background: var(--cream); padding: 4.5rem 0; }
.zone h2 { margin-bottom: .9rem; color: var(--ocean-deep); }
.zone p   { color: var(--gray); margin-bottom: 1.15rem; }

.zone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.zone-left h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: 1rem;
    color: var(--ocean-deep);
}
.zone-left p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}
.zone-cities { display: flex; flex-wrap: wrap; gap: .5rem; }
.city-pill {
    background: var(--sky-light);
    border: 1.5px solid rgba(37,137,200,.22);
    color: var(--ocean-deep);
    padding: 5px 15px;
    border-radius: 100px;
    font-size: var(--text-sm);
    font-weight: 600;
}
.zone-map-placeholder {
    background: var(--white);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: var(--text-sm);
}
.zone-map-placeholder .map-icon { font-size: 3rem; }
.zone-map-placeholder strong { color: var(--ocean-deep); font-size: 1rem; }
.zone-radius {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sky-light);
    color: var(--ocean-deep);
    font-weight: 700;
    font-size: var(--text-sm);
    padding: 9px 18px;
    border-radius: 100px;
    border: 1px solid rgba(37,137,200,.2);
}
.zone-visual {
    background: linear-gradient(145deg, var(--ocean-deep) 0%, var(--ocean-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 2.75rem 2rem;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.zone-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 20px 20px;
}
.zone-visual > * { position: relative; }
.zone-visual .big-radius {
    font-family: var(--font-display);
    font-size: 4.5rem; font-weight: 800;
    color: var(--sand); line-height: 1;
}
.zone-visual p { color: rgba(255,255,255,.75); margin: .5rem 0 0; font-size: 1rem; }
.zone-visual .zone-note {
    margin-top: 1.5rem;
    background: rgba(168,216,234,.12);
    border-radius: 10px;
    padding: .8rem 1rem;
    color: rgba(255,255,255,.82);
    font-size: .92rem;
    border: 1px solid rgba(168,216,234,.18);
}
.zone-radius-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--ocean-deep);
    color: var(--white);
    font-weight: 700;
    font-size: .92rem;
    padding: .5rem .95rem;
    border-radius: 999px;
    margin-bottom: 1.15rem;
}

.testimonials-section {
    padding: clamp(3rem,8vw,6rem) 0;
    background: var(--sand);
    position: relative;
    overflow: hidden;
}
.testimonials { background: var(--sand); padding: 4.5rem 0; }
.testimonials-section .shell-deco-l { left: 1.5%; bottom: 15%; transform: rotate(-15deg); }
.testimonials-section .shell-deco-r { right: 2%; top: 20%; transform: rotate(20deg); }

.testimonials-grid,
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.testi-card {
    background: var(--white);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border-top: 3px solid var(--ocean);
}
.testi-text {
    font-size: 1rem;
    color: var(--granite);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-avatar {
    width: 40px; height: 40px;
    background: var(--ocean-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .95rem;
    color: var(--white);
    flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: var(--text-sm); color: var(--ocean-deep); }
.testi-loc  { font-size: var(--text-xs); color: var(--text-muted); }
.stars      { color: var(--amber); font-size: 1rem; letter-spacing: 2px; margin-bottom: .75rem; }
.google-review-strip {
    margin: 2rem auto 0;
    max-width: 820px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--white);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    padding: 1rem 1.15rem;
    box-shadow: var(--shadow-sm);
}
.google-review-copy {
    display: flex;
    align-items: center;
    gap: .9rem;
    color: var(--granite);
}
.google-review-copy strong {
    display: block;
    color: var(--ocean-deep);
    line-height: 1.25;
}
.google-review-copy span:not(.google-mark) {
    display: block;
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.45;
}
.google-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: conic-gradient(from -45deg, #4285F4, #34A853, #FBBC05, #EA4335, #4285F4);
    color: var(--white);
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: inset 0 0 0 3px rgba(255,255,255,.72);
}
.google-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--ocean-deep);
    color: var(--white);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 800;
    padding: .75rem 1.05rem;
    border-radius: var(--radius);
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.google-review-btn:hover {
    background: var(--ocean);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cta-section { padding: clamp(3rem,8vw,6rem) 0; }
.cta-inner {
    background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%);
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 6vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-inner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(168,216,234,.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner .shell-deco-bl { bottom: 16px; left: 24px; font-size: 1.8rem; opacity: .1; position: absolute; transform: rotate(-18deg); pointer-events: none; }
.cta-inner .shell-deco-tr { top: 16px; right: 24px; font-size: 1.4rem; opacity: .08; position: absolute; transform: rotate(22deg); pointer-events: none; }

.cta-inner .tag {
    background: rgba(168,216,234,.18);
    color: var(--sky);
    border-color: rgba(168,216,234,.25);
    margin-bottom: 1.25rem;
}
.cta-inner h2 {
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.01em;
    margin-bottom: 1rem;
    line-height: 1.25;
}
.cta-inner p {
    color: rgba(255,255,255,.75);
    max-width: 480px;
    margin: 0 auto 2.25rem;
    font-size: 1.02rem;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Bannière finale d'appel à l'action */
.cta-final {
    background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%);
    padding: 5rem 0 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.cta-final > .container { position: relative; }
.cta-final h2 { color: var(--white); margin-bottom: .75rem; }
.cta-final p  { color: rgba(255,255,255,.82); font-size: 1.07rem; margin-bottom: 2rem; }
.cta-final-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-final .btn-white {
    background: var(--white); color: var(--ocean-deep);
    font-size: 1.08rem; font-weight: 700;
    padding: .95rem 2rem; border-radius: 10px;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    display: inline-flex; align-items: center; gap: .5rem;
}
.cta-final .btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,0,0,.25); }
.cta-final .btn-ghost {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,.5);
    font-size: 1rem; font-weight: 600;
    padding: .95rem 2rem; border-radius: 10px;
    text-decoration: none;
    transition: background .15s, transform .15s;
    display: inline-flex; align-items: center; gap: .5rem;
}
.cta-final .btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

.error-hero {
    min-height: calc(100vh - 190px);
    background: linear-gradient(155deg, var(--ocean-deep) 0%, var(--ocean) 52%, var(--ocean-mid) 100%);
    color: var(--white);
    padding: clamp(4rem, 10vw, 7rem) 0 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.error-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}
.error-card {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem) clamp(3rem, 7vw, 5rem);
}
.error-card .tag {
    background: rgba(168,216,234,.18);
    color: var(--sky);
    border-color: rgba(168,216,234,.28);
}
.error-code {
    font-family: var(--font-display);
    font-size: clamp(5rem, 17vw, 11rem);
    font-weight: 800;
    line-height: .9;
    color: rgba(255,255,255,.18);
    margin-bottom: 1rem;
}
.error-card h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 1rem;
}
.error-card p {
    color: rgba(255,255,255,.82);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 2rem;
}
.error-actions {
    display: flex;
    justify-content: center;
    gap: .85rem;
    flex-wrap: wrap;
}
.error-actions .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.error-actions .btn-outline:hover {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border-color: rgba(255,255,255,.75);
}

/* Bannière simple en haut des pages internes */
.hero-inner {
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
    background: var(--sand);
    border-bottom: 1px solid var(--sand-dark);
    margin-bottom: var(--gap);
}
.hero-inner .tag { margin-bottom: 1rem; }
.hero-inner h1 {
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: .875rem;
    color: var(--ocean-deep);
}
.hero-inner p {
    color: var(--text-muted);
    max-width: 560px;
    font-size: 1.08rem;
    line-height: 1.7;
}

/* Grande bannière accueil */
.hero {
    background: linear-gradient(160deg, var(--ocean-deep) 0%, var(--ocean) 55%, var(--ocean-mid) 100%);
    color: var(--white);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.hero-sun {
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,152,32,.22) 0%, rgba(245,152,32,0) 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 4rem;
}
.hero .tag {
    background: rgba(168,216,234,.2);
    color: var(--sky);
    border-color: rgba(168,216,234,.3);
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 em { font-style: normal; color: var(--amber2); }
.hero-highlight {
    background: rgba(255,255,255,.1);
    border-left: 3px solid var(--amber2);
    border-radius: 0 10px 10px 0;
    backdrop-filter: blur(8px);
    padding: .85rem 1.1rem;
    color: rgba(255,255,255,.92);
    font-size: 1rem;
    margin-bottom: 1.85rem;
    line-height: 1.55;
}
.hero-ctas { display: flex; gap: .85rem; flex-wrap: wrap; }

.hero-card {
    background: rgba(255,255,255,.97);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    color: var(--granite);
    box-shadow: 0 16px 56px rgba(10,50,80,.3);
    border: 1px solid rgba(255,255,255,.3);
}
.hero-card-title {
    font-family: var(--font-display);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ocean);
    margin-bottom: 1.25rem;
    font-weight: 700;
}
.hero-promises { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.hero-promises li {
    display: flex; align-items: flex-start; gap: .65rem;
    font-size: .97rem; font-weight: 600; line-height: 1.4;
    color: var(--granite);
}
.hero-promises li .ico {
    flex-shrink: 0; width: 26px; height: 26px;
    background: rgba(26,154,90,.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; margin-top: .05rem;
}
.hero-phone-cta {
    margin-top: 1.5rem; padding-top: 1.25rem;
    border-top: 1px solid var(--sand-dark);
    text-align: center;
}
.hero-phone-cta a {
    display: inline-block;
    background: var(--sand); color: var(--ocean-deep);
    font-size: 1.05rem; font-weight: 700;
    padding: .8rem 1.6rem; border-radius: 10px;
    text-decoration: none;
    transition: background .15s, transform .15s;
    border: 1.5px solid var(--sand-dark);
}
.hero-phone-cta a:hover { background: var(--sand-dark); transform: translateY(-2px); }
.hero-phone-cta small { display: block; margin-top: .45rem; color: var(--gray); font-size: .85rem; }

.how {
    background: var(--sand);
    padding: 4.5rem 0;
    position: relative;
}
.how::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 40px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 0%);
}
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    background: linear-gradient(90deg, var(--ocean), var(--sky));
    z-index: 0;
}
.step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem 1.15rem;
    text-align: center;
    position: relative; z-index: 1;
    box-shadow: var(--shadow);
}
.step-num {
    width: 48px; height: 48px;
    background: var(--ocean);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 700;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    border: 4px solid var(--sand);
    box-shadow: 0 0 0 2px var(--ocean);
}
.step h3 { font-size: 1rem; margin-bottom: .45rem; color: var(--ocean-deep); }
.step p   { color: var(--gray); font-size: .9rem; }

.concept {
    background: var(--ocean-deep);
    color: var(--white);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}
.concept::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.concept .tag {
    background: rgba(168,216,234,.15);
    color: var(--sky);
    border-color: rgba(168,216,234,.25);
}
.concept h2 { color: var(--white); margin-bottom: 1rem; }
.concept p  { color: rgba(255,255,255,.78); margin-bottom: .8rem; }

.compare-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.compare-col {
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex; flex-direction: column; gap: .7rem;
}
.compare-col.them {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}
.compare-col.us {
    background: rgba(37,137,200,.2);
    border: 1px solid rgba(168,216,234,.3);
}
.compare-col-title {
    font-weight: 700; font-size: .8rem;
    margin-bottom: .2rem;
    letter-spacing: .07em; text-transform: uppercase;
}
.compare-col.them .compare-col-title { color: rgba(255,255,255,.45); }
.compare-col.us   .compare-col-title { color: var(--sky); }
.compare-row {
    display: flex; align-items: flex-start; gap: .55rem;
    font-size: .94rem; line-height: 1.4;
}
.compare-row .ico { flex-shrink: 0; font-size: .95rem; margin-top: .05rem; }
.compare-col.them .compare-row { color: rgba(255,255,255,.45); }
.compare-col.us   .compare-row { color: rgba(255,255,255,.88); font-weight: 600; }

.tarifs-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    align-items: start;
}
.tabs-sidebar {
    position: sticky;
    top: 80px;
    background: var(--white);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    padding: .75rem;
}
.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: none;
    border: none;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .15s;
    text-align: left;
}
.tab-btn:hover { background: var(--cream); color: var(--ocean); }
.tab-btn.active {
    background: var(--ocean-deep);
    color: var(--white);
}
.tab-diagnostic {
    justify-content: center;
    margin-top: .35rem;
    background: var(--sky-light);
    border: 1.5px solid rgba(15,76,107,.18);
    color: var(--ocean-deep);
}
.tab-diagnostic:hover {
    background: var(--ocean-deep);
    border-color: var(--ocean-deep);
    color: var(--white);
}
.tabs-content-area {
    background: var(--white);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.tab-content { display: none; animation: fadeIn .25s ease; }
.tab-content.active { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.tab-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 1.5px solid var(--sand-dark);
    color: var(--ocean-deep);
}
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--sand-dark);
    gap: 1rem;
}
.service-item:last-child { border-bottom: none; }
.service-info h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--ocean-deep);
}
.service-info p { font-size: var(--text-xs); color: var(--text-muted); }
.service-price {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    background: var(--sky-light);
    color: var(--ocean-deep);
    padding: 5px 14px;
    border-radius: var(--radius);
    white-space: nowrap;
    border: 1px solid rgba(37,137,200,.18);
}
.tarifs-note {
    margin-top: 2rem;
    background: var(--cream);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
}
.tarifs-note strong { color: var(--text); }
.tabs-nav-mobile {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2.5rem;
    align-items: start;
}
.contact-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-info-card {
    background: var(--sky-light);
    border: 1.5px solid rgba(37,137,200,.22);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: var(--ocean-deep);
}
.contact-info-card h3 {
    font-size: var(--text-sm);
    font-weight: 800;
    color: var(--ocean-deep);
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: 0;
}
.cinfo-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: .85rem;
    font-size: var(--text-sm);
    color: var(--ocean-deep);
    line-height: 1.6;
    font-weight: 600;
}
.cinfo-icon { font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }
.cinfo-item strong { color: var(--ocean-deep); display: block; margin-bottom: 2px; font-weight: 800; }
.cinfo-item:last-child { margin-bottom: 0; }
.google-inline-link {
    color: var(--ocean);
    font-weight: 800;
    text-decoration: none;
}
.google-inline-link:hover { color: var(--ocean-deep); text-decoration: underline; }
.reassurance-card {
    background: var(--sky-light);
    border: 1.5px solid rgba(37,137,200,.22);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.reassurance-card h3 {
    font-size: var(--text-sm);
    font-weight: 800;
    color: var(--ocean-deep);
    margin-bottom: 1rem;
}
.reassurance-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--ocean-deep);
    margin-bottom: .6rem;
    font-weight: 700;
    line-height: 1.5;
}
.reassurance-item::before { content: '✓'; font-weight: 800; flex-shrink: 0; }

.contact-main {
    background: var(--white);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.form-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .9rem;
    margin-bottom: 1.5rem;
}
.form-block .form-title-row h2 {
    margin-bottom: 0;
}
.diagnostic-inline-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: .55rem .95rem;
    border: 1.5px solid rgba(15,76,107,.2);
    border-radius: 999px;
    background: var(--sky-light);
    color: var(--ocean-deep);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 800;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.diagnostic-inline-btn:hover {
    background: var(--ocean-deep);
    border-color: var(--ocean-deep);
    color: var(--white);
    transform: translateY(-1px);
}
.contact-choice {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}
.choice-btn {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border: 2px solid var(--sand-dark);
    border-radius: var(--radius);
    background: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: var(--text-sm);
    color: var(--text-muted);
    cursor: pointer;
    transition: all .18s;
}
.choice-btn:hover { border-color: var(--ocean); color: var(--ocean); background: var(--sky-light); }
.choice-btn.active {
    background: var(--ocean-deep);
    border-color: var(--ocean-deep);
    color: var(--white);
}
.form-block { display: none; }
.form-block.active { display: block; }
.form-block h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--ocean-deep);
}
.form-group { margin-bottom: 1.35rem; }
label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--granite);
    margin-bottom: 7px;
}
input, textarea, select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--sand-dark);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    color: var(--text);
    transition: border-color .18s, box-shadow .18s;
    margin: 0;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--ocean);
    box-shadow: 0 0 0 3px rgba(26,107,154,.1);
}
textarea { resize: vertical; min-height: 140px; }
.success-msg {
    background: #ECFDF5;
    border: 1.5px solid #6EE7B7;
    color: #065F46;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: var(--text-sm);
    margin-bottom: 1.5rem;
}
.error-msg {
    background: #FEF2F2;
    border: 1.5px solid #FCA5A5;
    color: #991B1B;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: var(--text-sm);
    margin-bottom: 1.5rem;
}

.admin-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 20px; }
.admin-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.admin-table th, .admin-table td { text-align: left; padding: 10px; border-bottom: 1px solid var(--sand-dark); font-size: var(--text-sm); }
.admin-table th { font-weight: 700; font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); }
.btn-danger { background: #EF4444; color: white; padding: 6px 12px; border-radius: 6px; text-decoration: none; font-size: var(--text-xs); border: none; cursor: pointer; }
.admin-menu { display: flex; gap: 10px; margin: 20px 0; flex-wrap: wrap; }
.admin-menu button { padding: 10px 18px; border: 2px solid var(--sand-dark); background: var(--white); cursor: pointer; border-radius: var(--radius); font-family: var(--font-body); font-weight: 700; font-size: var(--text-sm); transition: all .15s; }
.admin-menu button.active { background: var(--ocean-deep); color: var(--white); border-color: var(--ocean-deep); }
.admin-tab { display: none; }
.admin-tab.active { display: block; }

.card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--sand-dark);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: var(--ocean-deep);
    padding: clamp(2rem, 5vw, 3.5rem) 0 1.5rem;
    color: rgba(255,255,255,.52);
    margin-top: auto;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}
footer .shell-deco-footer {
    position: absolute;
    bottom: 20px; right: 40px;
    font-size: 2.2rem; opacity: .06;
    pointer-events: none;
    transform: rotate(10deg);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 1.5rem;
    position: relative;
}
.footer-brand .logo-container { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: var(--text-sm); max-width: 280px; line-height: 1.7; }
.footer-col h4 {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul li { color: rgba(255,255,255,.6); font-size: var(--text-sm); }
.footer-col ul li a { color: rgba(255,255,255,.6); text-decoration: none; font-size: var(--text-sm); transition: color .15s; }
.footer-col ul li a:hover { color: var(--sky); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-xs);
    flex-wrap: wrap;
    gap: .5rem;
    position: relative;
}
.footer-bottom a { color: var(--sky); text-decoration: none; }

/* Diagnostic rapide */
.diagnostic-open {
    overflow: hidden;
}
.diagnostic-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(5, 24, 38, .62);
    backdrop-filter: blur(8px);
}
.diagnostic-modal.active {
    display: flex;
}
.diagnostic-dialog {
    position: relative;
    width: min(640px, 100%);
    max-height: calc(100vh - 44px);
    overflow: auto;
    background: var(--white);
    border: 1px solid rgba(15,76,107,.16);
    border-radius: 14px;
    padding: clamp(1.35rem, 4vw, 2rem);
    box-shadow: 0 28px 70px rgba(5, 24, 38, .28);
}
.diagnostic-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--ocean-deep);
    cursor: pointer;
    font-size: 1.45rem;
    line-height: 1;
    transition: background .15s, transform .15s, border-color .15s;
}
.diagnostic-close:hover {
    background: var(--sky-light);
    border-color: rgba(15,76,107,.18);
    transform: rotate(6deg);
}
.diagnostic-dialog h2 {
    max-width: 520px;
    margin: .75rem 2.5rem .6rem 0;
    color: var(--ocean-deep);
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.2;
}
.diagnostic-intro {
    max-width: 540px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.1rem;
}
.diagnostic-progress {
    height: 8px;
    border-radius: 999px;
    background: var(--sky-light);
    overflow: hidden;
    margin: 1.2rem 0 1.35rem;
}
.diagnostic-progress-current {
    display: block;
    width: 25%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--ocean), var(--amber));
    transition: width .2s ease;
}
.diagnostic-step {
    display: none;
}
.diagnostic-step.active {
    display: block;
}
.diagnostic-step h3 {
    color: var(--ocean-deep);
    font-size: 1.05rem;
    margin-bottom: .9rem;
}
.diagnostic-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}
.diagnostic-option {
    min-height: 58px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fffdf9;
    color: var(--granite);
    font-family: var(--font-body);
    font-weight: 800;
    cursor: pointer;
    text-align: left;
    padding: .85rem 1rem;
    transition: background .15s, border-color .15s, color .15s, transform .15s, box-shadow .15s;
}
.diagnostic-option:hover,
.diagnostic-option.active {
    background: var(--sky-light);
    border-color: rgba(15,76,107,.28);
    color: var(--ocean-deep);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15,76,107,.1);
}
#diagnostic-description {
    width: 100%;
    min-height: 132px;
    resize: vertical;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    font: inherit;
    color: var(--text);
    background: #fffdf9;
}
#diagnostic-description:focus {
    outline: none;
    border-color: var(--ocean);
    box-shadow: 0 0 0 4px rgba(15,76,107,.08);
}
.diagnostic-alert {
    display: none;
    margin-top: .95rem;
    color: #B45309;
    font-size: var(--text-sm);
    font-weight: 700;
}
.diagnostic-alert.active {
    display: block;
}
.diagnostic-actions {
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
}
.diagnostic-actions .btn[disabled] {
    opacity: .45;
    pointer-events: none;
}

/* Widget WhatsApp flottant */
.whatsapp-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 10px 18px 10px 10px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: .95rem;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .24), 0 0 0 1px rgba(255,255,255,.18) inset;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.whatsapp-widget:hover {
    transform: translateY(-3px);
    background: #1EBE5D;
    box-shadow: 0 24px 46px rgba(15, 23, 42, .28), 0 0 0 1px rgba(255,255,255,.22) inset;
}
.whatsapp-widget:focus-visible {
    outline: 3px solid rgba(37, 211, 102, .35);
    outline-offset: 4px;
}
.whatsapp-widget-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.18);
    flex-shrink: 0;
}
.whatsapp-widget-icon svg {
    width: 25px;
    height: 25px;
    display: block;
    fill: currentColor;
}
.grecaptcha-badge {
    bottom: 92px !important;
}

@media (max-width: 900px) {

    .hero-index .container { grid-template-columns: 1fr; text-align: center; }
    .hero-text .hero-desc,
    .hero-text .hero-subdesc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none; }


    .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-card { display: none; }


    .steps-row { flex-wrap: wrap; gap: 1rem; }
    .step-arrow { display: none; }
    .step-card { flex: 1 1 calc(50% - .5rem); min-width: 200px; }
    .steps { grid-template-columns: 1fr 1fr; }
    .steps::before { display: none; }


    .services-grid { grid-template-columns: 1fr 1fr; }
    .concept-grid { grid-template-columns: 1fr; }
    .click-repair-inner { grid-template-columns: 1fr; }
    .zone-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid,
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .compare-cols { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .page-contact .contact-main { order: 1; }
    .page-contact .contact-sidebar { order: 2; }
    .contact-sidebar { position: static; }


    .tarifs-layout { grid-template-columns: 1fr; }
    .tabs-sidebar { display: none; }
    .tabs-nav-mobile { display: flex; }


    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }


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


    .cta-final-btns { flex-direction: column; align-items: center; }
}

@media (min-width: 1400px) {
    :root {
        --max-w: 1240px;
    }
}

@media (max-width: 640px) {

    .top-phone-bar {
        padding: .45rem .75rem;
        font-size: .82rem;
        line-height: 1.35;
    }
    .top-phone-full { display: none; }
    .top-phone-short { display: inline; }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        align-items: stretch;
        background: #fffdf9;
        border: 1px solid var(--sand-dark);
        border-radius: 16px;
        padding: .75rem;
        gap: .15rem;
        box-shadow: 0 24px 48px rgba(15,76,107,.2);
        z-index: 350;
    }
    nav ul.active { display: flex; }
    nav ul li { width: 100%; }
    nav ul li a {
        display: block;
        padding: .8rem 1rem;
        border-radius: var(--radius);
        font-size: 1rem;
        text-align: center;
    }
    nav ul li a.nav-cta { margin-top: .25rem; }
    .menu-toggle { display: flex; }


    .hero { padding: 2.5rem 0 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }


    .services-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .steps { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .step-card { flex: 1 1 100%; }
    .testimonials-grid,
    .testi-grid { grid-template-columns: 1fr; }
    .google-review-strip {
        align-items: stretch;
        flex-direction: column;
    }
    .google-review-btn { width: 100%; }
    .compare-cols { grid-template-columns: 1fr; }


    .contact-choice { flex-direction: column; }
    .form-title-row {
        flex-direction: column;
        align-items: stretch;
    }
    .diagnostic-inline-btn {
        width: 100%;
        justify-content: center;
    }


    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 340px; justify-content: center; }
    .cta-final-btns { flex-direction: column; align-items: center; }


    .service-item { flex-direction: column; align-items: flex-start; gap: 8px; }
    .diagnostic-modal {
        align-items: flex-end;
        padding: 12px;
    }
    .diagnostic-dialog {
        max-height: calc(100vh - 24px);
        border-radius: 14px;
    }
    .diagnostic-options {
        grid-template-columns: 1fr;
    }
    .diagnostic-actions {
        flex-direction: column-reverse;
    }
    .diagnostic-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .whatsapp-widget {
        right: 18px;
        bottom: calc(96px + env(safe-area-inset-bottom));
        min-height: 52px;
        width: 52px;
        padding: 7px;
        justify-content: center;
    }
    .whatsapp-widget-label { display: none; }
    .grecaptcha-badge {
        bottom: calc(12px + env(safe-area-inset-bottom)) !important;
        transform: scale(.88);
        transform-origin: bottom right;
    }
    .footer-bottom { flex-direction: column; text-align: center; }
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-header h1 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.admin-tabs {
    display: flex;
    gap: 6px;
    background: var(--slate-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 5px;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.admin-tab-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border: none;
    border-radius: var(--radius);
    background: transparent;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .18s;
    white-space: nowrap;
}

.admin-tab-btn:hover { background: var(--white); color: var(--text); }
.admin-tab-btn.active { background: var(--slate-900); color: var(--white); box-shadow: var(--shadow-sm); }
.admin-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--ocean-deep);
    color: var(--white);
    font-size: .72rem;
    font-weight: 800;
    line-height: 1;
}
.admin-tab-btn.active .admin-tab-count {
    background: var(--white);
    color: var(--ocean-deep);
}
.admin-tab-count.is-zero {
    opacity: .55;
}

.admin-tab { display: none; }
.admin-tab.active { display: block; }

.notification {
    display: none;
    position: fixed;
    top: 80px;
    right: 1.5rem;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .9rem;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    animation: slideIn .25s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.notification.success { background: #059669; color: white; }
.notification.error   { background: #DC2626; color: white; }
.notification.warning { background: #D97706; color: white; }

.notif-session {
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.notif-session.is-success { background: #059669; }
.notif-session.is-warning { background: #D97706; }
.admin-link-plain { color: var(--text); text-decoration: none; }
.admin-link-amber { color: var(--amber-dark); font-weight: 600; text-decoration: none; }
.admin-link-muted { color: var(--text-muted); font-size: .8rem; text-decoration: none; }
.admin-link-ocean { color: var(--ocean, #1A6B9A); text-decoration: none; }
.admin-link-ocean-strong { color: var(--ocean, #1A6B9A); font-size: .8rem; font-weight: 600; text-decoration: none; }
.is-hidden { display: none !important; }

.admin-remember-device {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin: -.25rem 0 1rem;
    color: var(--text-muted);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
}

.admin-remember-device input {
    width: 18px;
    height: 18px;
    accent-color: var(--ocean, #1A6B9A);
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    align-items: start;
}

.panel-grid-equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.a-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.a-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--border);
    letter-spacing: -.01em;
}

.admin-muted-text {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6;
}

.admin-help-box {
    background: var(--amber-light);
    border: 1px solid var(--amber);
    color: var(--amber-dark);
    border-radius: var(--radius);
    padding: .85rem 1rem;
    font-size: .9rem;
    line-height: 1.5;
    margin: 1rem 0;
}

.admin-action-row {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.push-status-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--slate-50);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
}

.push-status-title {
    color: var(--text-muted);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.push-status-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--slate-900);
    line-height: 1;
    margin-top: .25rem;
}

.push-check-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}

.push-check-list span {
    display: inline-flex;
    align-items: center;
    padding: .35rem .7rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
}

.push-check-list .ok {
    background: #D1FAE5;
    color: #065F46;
}

.push-check-list .ko {
    background: #FEE2E2;
    color: #991B1B;
}

.sms-mode-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1rem;
}

.sms-mode-row label {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--slate-50);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .65rem .85rem;
    font-weight: 700;
    cursor: pointer;
}

.sms-client-select {
    min-height: 160px;
}

.sms-message-box {
    min-height: 150px;
    resize: vertical;
}

.sms-counter-box {
    display: grid;
    gap: .25rem;
    background: var(--slate-50);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .85rem 1rem;
    margin: -.25rem 0 1rem;
}

.sms-counter-box strong {
    color: var(--slate-900);
}

.sms-counter-box span {
    color: var(--ocean-deep);
    font-weight: 800;
}

.sms-counter-box small {
    color: var(--text-muted);
    line-height: 1.45;
}

.sms-history-card {
    margin-top: 1.5rem;
}

.mail-check-list {
    margin: .5rem 0 1rem;
}

.mail-address-box {
    min-height: 92px;
    resize: vertical;
}

.mail-client-select {
    min-height: 190px;
}

.mail-message-box {
    min-height: 170px;
}

.mail-template-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin: -.25rem 0 1rem;
}

.mail-history-card {
    margin-top: 1.5rem;
}

.a-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem;
}

.a-table th {
    text-align: left;
    padding: 8px 12px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.a-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--slate-100);
    vertical-align: middle;
}

.a-table tr:last-child td { border-bottom: none; }
.a-table tr:hover td { background: var(--slate-50); }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
}

.badge-pending { background: #FEF3C7; color: #92400E; }
.badge-paid    { background: #D1FAE5; color: #065F46; }
.badge-blue    { background: #DBEAFE; color: #1E40AF; }
.badge-purple  { background: #EDE9FE; color: #5B21B6; }
.badge-green   { background: #D1FAE5; color: #065F46; }
.badge-red     { background: #FEE2E2; color: #991B1B; }

.status-select {
    padding: 5px 10px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 600;
    background: var(--white);
    cursor: pointer;
    transition: border-color .15s;
}

.status-select:focus { outline: none; border-color: var(--slate-700); }

.btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .15s;
    white-space: nowrap;
}

.btn-sm-green  { background: #D1FAE5; color: #065F46; }
.btn-sm-green:hover  { background: #059669; color: white; }
.btn-sm-blue   { background: #DBEAFE; color: #1D4ED8; }
.btn-sm-blue:hover   { background: #3B82F6; color: white; }
.btn-sm-red    { background: #FEE2E2; color: #B91C1C; }
.btn-sm-red:hover    { background: #EF4444; color: white; }
.btn-sm-amber  { background: #FEF3C7; color: #92400E; }
.btn-sm-amber:hover  { background: #F59E0B; color: white; }
.btn-sm-purple { background: #EDE9FE; color: #5B21B6; }
.btn-sm-purple:hover { background: #7C3AED; color: white; }

.cat-accordion {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: .75rem;
}

.cat-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .7rem 1rem;
    background: var(--slate-50);
    cursor: pointer;
    font-weight: 700;
    font-size: .875rem;
    border-bottom: 1px solid var(--border);
    user-select: none;
    transition: background .15s;
}

.cat-accordion-header:last-child { border-bottom: none; }
.cat-accordion-header:hover { background: #e8edf2; }

.cat-accordion-header .arrow { transition: transform .2s; font-size: .75rem; }
.cat-accordion-header.open .arrow { transform: rotate(90deg); }

.cat-accordion-body {
    display: none;
    padding: .5rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.cat-accordion-body.open { display: block; }

.service-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 6px;
}

.service-chip {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 10px;
    cursor: pointer;
    font-size: .8rem;
    text-align: center;
    transition: all .18s;
    line-height: 1.4;
}

.service-chip:hover {
    border-color: var(--amber);
    background: var(--amber-light);
    transform: translateY(-1px);
}

.service-chip strong { display: block; font-size: .78rem; margin-bottom: 2px; }
.service-chip .chip-price { color: var(--amber-dark); font-weight: 700; font-size: .85rem; }

.total-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.total-display {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--slate-900);
}

.total-display input {
    width: 120px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    display: inline;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    margin-left: 6px;
    width: 110px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cat-section {
    margin-bottom: 1.5rem;
}

.cat-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--slate-900);
    color: white;
    padding: .65rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 0;
    font-weight: 800;
    font-size: .85rem;
    letter-spacing: .03em;
}

.service-edit-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr auto;
    gap: .5rem;
    align-items: center;
    padding: .6rem .75rem;
    border-bottom: 1px solid var(--slate-100);
    transition: background .12s;
}

.service-edit-row:last-child { border-bottom: none; }
.service-edit-row:hover { background: var(--slate-50); }

.service-edit-row input {
    padding: 6px 10px;
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    font-size: .875rem;
    font-family: var(--font-body);
    background: transparent;
    transition: border-color .15s, background .15s;
    width: 100%;
}

.service-edit-row input:focus {
    outline: none;
    border-color: var(--slate-300);
    background: var(--white);
}

.service-edit-row input.prix-input {
    font-weight: 700;
    color: var(--amber-dark);
}

.planning-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.rdv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--text-muted);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    transition: box-shadow .15s;
    position: relative;
}

.rdv-card:hover { box-shadow: var(--shadow); }
.rdv-card.is-past { opacity: .65; }
.rdv-card.status-confirmed { border-left-color: #059669; }
.rdv-card.status-pending { border-left-color: #D97706; }
.rdv-card.status-cancelled { border-left-color: #DC2626; }
.rdv-card.status-neutral { border-left-color: #6B7280; }

.rdv-card .rdv-date {
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
}

.rdv-card .rdv-heure {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1;
}

.rdv-card .rdv-client {
    font-weight: 700;
    font-size: .95rem;
    color: var(--text);
}

.rdv-card .rdv-objet {
    font-size: .85rem;
    color: var(--text-muted);
}

.rdv-card .rdv-actions {
    display: flex;
    gap: 5px;
    margin-top: .35rem;
    flex-wrap: wrap;
}

.rdv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.rdv-day-group {
    margin-bottom: 1.75rem;
}

.rdv-day-label {
    font-weight: 800;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-bottom: .75rem;
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.rdv-day-label.today {
    color: #059669;
    border-color: #059669;
}
.rdv-day-label.is-past { opacity: .5; }

.status-pill {
    border-radius: 100px;
    font-size: .7rem;
    padding: 2px 8px;
    font-weight: 700;
}
.status-pill.status-confirmed { background: #05966922; color: #059669; }
.status-pill.status-pending { background: #D9770622; color: #D97706; }
.status-pill.status-cancelled { background: #DC262622; color: #DC2626; }
.status-pill.status-neutral { background: #6B728022; color: #6B7280; }

.rdv-day-label .rdv-day-date {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--slate-900);
}

.site-row-expand { cursor: pointer; }
.site-row-expand:hover td { background: #f0f7ff !important; }

.site-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.site-detail-block {
    background: var(--slate-50);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
}

.site-detail-block h4 {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .85rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: .5rem;
}

.site-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    font-size: .875rem;
    padding: .35rem 0;
    border-bottom: 1px solid var(--slate-100);
}

.site-detail-row:last-child { border-bottom: none; }
.site-detail-row .lbl { color: var(--text-muted); font-weight: 600; flex-shrink: 0; }
.site-detail-row .val { color: var(--text); font-weight: 700; text-align: right; }

.fonc-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #DBEAFE;
    color: #1D4ED8;
    border-radius: 100px;
    padding: 3px 10px;
    font-size: .75rem;
    font-weight: 700;
    margin: 2px;
}

.fonc-chip-off {
    background: var(--slate-100);
    color: var(--text-muted);
}

.desc-block {
    background: var(--slate-50);
    border: 1px solid var(--border);
    border-left: 3px solid var(--ocean);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: .9rem;
    color: var(--text);
    line-height: 1.75;
    white-space: pre-wrap;
    word-break: break-word;
}

.site-modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1000;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-y: auto;
}

.site-modal-overlay.open { display: flex; }

.site-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 860px;
    box-shadow: 0 24px 80px rgba(0,0,0,.25);
    overflow: hidden;
    position: relative;
}

.site-modal-header {
    background: var(--ocean-deep, #0F4C6B);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
    color: white;
}

.site-modal-body { padding: 2rem; }

.modal-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: white;
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .15s;
}
.modal-close:hover { background: rgba(255,255,255,.3); }

.edit-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.edit-section-title {
    grid-column: 1 / -1;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ocean, #1A6B9A);
    padding: 1rem 0 .25rem;
    border-top: 1px solid var(--border);
    margin-top: .5rem;
}

.edit-section-title:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.edit-foncs-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem;
}

.edit-fonc-label {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--slate-50);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: .55rem .75rem;
    cursor: pointer;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all .15s;
}

.edit-fonc-label:has(input:checked) {
    background: #DBEAFE;
    border-color: #93C5FD;
    color: #1D4ED8;
}

.edit-fonc-label input { margin: 0; accent-color: #3B82F6; }

.edit-toggle-row {
    grid-column: 1 / -1;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.edit-toggle-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
}

.edit-toggle-item input[type="checkbox"] {
    width: 16px; height: 16px;
    accent-color: var(--ocean, #1A6B9A);
}

.site-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.site-stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-stat-ico { font-size: 1.75rem; flex-shrink: 0; }

.site-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ocean-deep, #0F4C6B);
    line-height: 1;
}

.site-stat-lbl { font-size: .78rem; color: var(--text-muted); font-weight: 600; margin-top: 2px; }

.import-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px 3px 8px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    background: #D1FAE5;
    color: #065F46;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .15s;
}
.import-pill:hover { background: #059669; color: white; }

@media (max-width: 900px) {
    .panel-grid, .panel-grid-equal, .planning-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .site-detail-grid { grid-template-columns: 1fr; }
    .edit-form-grid { grid-template-columns: 1fr; }
    .edit-foncs-grid { grid-template-columns: 1fr 1fr; }
    .site-stats-row { grid-template-columns: 1fr 1fr; }
    .rdv-grid { grid-template-columns: 1fr; }
    .service-edit-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .admin-tabs { gap: 4px; }
    .admin-tab-btn { padding: 8px 12px; font-size: .8rem; }
    .total-row { flex-direction: column; align-items: flex-start; }
    .site-stats-row { grid-template-columns: 1fr 1fr; }
    .edit-foncs-grid { grid-template-columns: 1fr 1fr; }
    .service-edit-row { grid-template-columns: 1fr; }
}

.hero-inner { margin-bottom: 0 !important; }


/* Bannière page cours */
.cours-hero {
        background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fffbeb 100%);
        padding: 4rem 0 0;
        position: relative;
        overflow: hidden;
    }

    .cours-hero::before {
        content: '';
        position: absolute;
        top: -60px; right: -60px;
        width: 320px; height: 320px;
        background: radial-gradient(circle, #fcd34d33 0%, transparent 70%);
        border-radius: 50%;
    }

    .cours-hero-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: end;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .cours-hero-text {
        padding-bottom: 3rem;
    }

    .cours-hero-text h1 {
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.15;
        margin-bottom: 1.25rem;
    }

    .cours-hero-text p {
        font-size: 1.1rem;
        color: var(--text-muted);
        margin-bottom: 2rem;
        max-width: 460px;
    }

    .cours-hero-illustration {
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        min-height: 280px;
    }


    .scene-wrap {
        position: relative;
        width: 100%;
        max-width: 420px;
    }

    .scene-desk {
        background: #fff;
        border-radius: 16px 16px 0 0;
        border: 2px solid #e2e8f0;
        border-bottom: none;
        padding: 1.5rem 1.5rem 1rem;
        box-shadow: 0 -8px 32px rgba(0,0,0,.06);
        position: relative;
    }

    .screen-mock {
        background: #1e293b;
        border-radius: 8px;
        padding: 1rem;
        margin-bottom: 1rem;
        position: relative;
        overflow: hidden;
        min-height: 130px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .screen-mock::before {
        content: '● ● ●';
        display: block;
        color: #475569;
        font-size: .65rem;
        letter-spacing: 4px;
        margin-bottom: 8px;
    }

    .screen-line {
        height: 8px;
        border-radius: 4px;
        background: #334155;
        animation: shimmer 2s ease-in-out infinite alternate;
    }
    .screen-line.amber { background: #f59e0b; width: 60%; }
    .screen-line.short { width: 45%; }
    .screen-line.medium { width: 70%; }
    .screen-line.long { width: 90%; }

    @keyframes shimmer {
        from { opacity: .6; }
        to { opacity: 1; }
    }

    .keyboard-row {
        display: flex;
        gap: 4px;
        margin-top: 4px;
    }

    .key {
        flex: 1;
        height: 20px;
        background: #f1f5f9;
        border-radius: 4px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 0 #cbd5e1;
    }
    .key.space { flex: 4; }

    .desk-items {
        display: flex;
        gap: 12px;
        align-items: center;
        margin-top: 8px;
    }

    .coffee-cup {
        width: 32px; height: 36px;
        background: #fff;
        border: 2px solid #e2e8f0;
        border-radius: 4px 4px 8px 8px;
        position: relative;
        flex-shrink: 0;
    }
    .coffee-cup::after {
        content: '';
        position: absolute;
        right: -10px; top: 8px;
        width: 10px; height: 14px;
        border: 2px solid #e2e8f0;
        border-left: none;
        border-radius: 0 8px 8px 0;
    }
    .coffee-inner {
        position: absolute;
        top: 6px; left: 4px; right: 4px;
        height: 10px;
        background: #92400e33;
        border-radius: 2px;
    }

    .notebook {
        flex: 1;
        height: 55px;
        background: #fef3c7;
        border-radius: 4px;
        border: 1px solid #fcd34d;
        padding: 6px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .note-line {
        height: 4px;
        background: #fcd34d99;
        border-radius: 2px;
    }
    .note-line:last-child { width: 60%; }


    .badge-float {
        position: absolute;
        background: white;
        border: 1.5px solid #e2e8f0;
        border-radius: 12px;
        padding: 8px 14px;
        font-size: .8rem;
        font-weight: 700;
        box-shadow: 0 4px 16px rgba(0,0,0,.1);
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        animation: float 3s ease-in-out infinite;
    }

    .badge-float.bf-1 {
        top: -20px; left: -20px;
        animation-delay: 0s;
        color: #065F46;
        border-color: #6ee7b7;
    }

    .badge-float.bf-2 {
        top: 30px; right: -30px;
        animation-delay: 1s;
        color: #92400E;
        border-color: #fcd34d;
    }

    .badge-float.bf-3 {
        bottom: 60px; right: -20px;
        animation-delay: 2s;
        color: #1D4ED8;
        border-color: #bfdbfe;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }


    .stats-row {
        display: flex;
        gap: 2rem;
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
    }

    .stat-num {
        font-family: var(--font-display);
        font-size: 1.75rem;
        font-weight: 900;
        color: var(--slate-900);
        line-height: 1;
    }

    .stat-label {
        font-size: .8rem;
        color: var(--text-muted);
        margin-top: 2px;
    }


    .domaines-section {
        background: var(--white);
        padding: 5rem 0;
    }

    .domaines-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .domaine-card {
        background: var(--white);
        border: 1.5px solid var(--border);
        border-radius: 16px;
        padding: 2rem 1.75rem;
        transition: all .25s;
        position: relative;
        overflow: hidden;
    }

    .domaine-card::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 3px;
        background: var(--amber);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .25s;
    }

    .domaine-card:hover {
        border-color: var(--amber);
        box-shadow: 0 8px 32px rgba(0,0,0,.08);
        transform: translateY(-4px);
    }

    .domaine-card:hover::after {
        transform: scaleX(1);
    }

    .domaine-illus {
        width: 64px; height: 64px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .domaine-illus.amber { background: #fef3c7; }
    .domaine-illus.blue  { background: #dbeafe; }
    .domaine-illus.green { background: #d1fae5; }
    .domaine-illus.purple { background: #ede9fe; }
    .domaine-illus.pink  { background: #fce7f3; }
    .domaine-illus.orange { background: #ffedd5; }

    .domaine-card h3 {
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 800;
        margin-bottom: .5rem;
        letter-spacing: -.01em;
    }

    .domaine-card p {
        font-size: .875rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin: 0;
    }

    .domaine-examples {
        margin-top: .875rem;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .ex-chip {
        background: var(--slate-50);
        border: 1px solid var(--border);
        border-radius: 100px;
        padding: 3px 10px;
        font-size: .72rem;
        font-weight: 600;
        color: var(--text-muted);
    }


    .impots-banner {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        padding: 4rem 0;
        position: relative;
        overflow: hidden;
    }

    .impots-banner::before {
        content: '50%';
        position: absolute;
        right: -1rem;
        top: 50%;
        transform: translateY(-50%);
        font-family: var(--font-display);
        font-size: 14rem;
        font-weight: 900;
        color: #ffffff08;
        line-height: 1;
        pointer-events: none;
    }

    .impots-inner {
        display: flex;
        align-items: center;
        gap: 3rem;
        flex-wrap: wrap;
    }

    .impots-badge {
        background: var(--amber);
        color: var(--slate-900);
        font-family: var(--font-display);
        font-size: 3rem;
        font-weight: 900;
        width: 160px; height: 160px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        line-height: 1;
    }

    .impots-badge span {
        font-size: .85rem;
        font-weight: 700;
    }

    .impots-text h2 {
        color: white;
        font-size: 1.5rem;
        margin-bottom: .5rem;
    }

    .impots-text p {
        color: #94a3b8;
        margin: 0;
        max-width: 500px;
    }


    .forfaits-section {
        background: var(--slate-50);
        padding: 5rem 0;
    }

    .forfaits-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
        margin-top: 2.5rem;
    }

    .forfait-card {
        background: var(--white);
        border: 2px solid var(--border);
        border-radius: 20px;
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        position: relative;
        transition: all .2s;
    }

    .forfait-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0,0,0,.1);
    }

    .forfait-card.featured {
        border-color: var(--amber);
        background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
        box-shadow: 0 8px 32px rgba(251,191,36,.2);
    }

    .popular-badge {
        position: absolute;
        top: -13px; left: 50%;
        transform: translateX(-50%);
        background: var(--amber);
        color: var(--slate-900);
        font-size: .72rem;
        font-weight: 800;
        padding: 4px 14px;
        border-radius: 100px;
        white-space: nowrap;
        letter-spacing: .04em;
        text-transform: uppercase;
    }

    .forfait-hours {
        font-family: var(--font-display);
        font-size: 3rem;
        font-weight: 900;
        color: var(--slate-900);
        line-height: 1;
        margin-bottom: .25rem;
    }

    .forfait-name {
        font-weight: 700;
        color: var(--text-muted);
        font-size: .875rem;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .forfait-desc {
        font-size: .875rem;
        color: var(--text-muted);
        line-height: 1.6;
        flex: 1;
        margin-bottom: 1.5rem;
    }

    .forfait-price-block {
        border-top: 1px solid var(--border);
        padding-top: 1.25rem;
    }

    .forfait-before {
        font-size: .85rem;
        color: var(--slate-400);
        text-decoration: line-through;
    }

    .forfait-after {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 800;
        color: var(--slate-900);
        line-height: 1.1;
    }

    .forfait-card.featured .forfait-after { color: var(--amber-dark); }
    .forfait-after-label { font-size: .85rem; color: var(--text-muted); font-weight: 400; }

    .forfait-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 1.25rem;
        padding: 10px 16px;
        background: var(--slate-100);
        color: var(--slate-900);
        border-radius: 10px;
        font-weight: 700;
        font-size: .875rem;
        text-decoration: none;
        transition: all .2s;
        width: 100%;
    }

    .forfait-card.featured .forfait-cta {
        background: var(--amber);
        color: var(--slate-900);
    }

    .forfait-cta:hover { opacity: .85; }


    .how-section {
        background: var(--white);
        padding: 5rem 0;
    }

    .steps-timeline {
        position: relative;
        margin-top: 3rem;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .steps-timeline::before {
        content: '';
        position: absolute;
        top: 28px;
        left: calc(12.5% + 20px);
        right: calc(12.5% + 20px);
        height: 2px;
        background: linear-gradient(90deg, var(--amber), var(--amber-dark));
        z-index: 0;
    }

    .step-item {
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .step-num {
        width: 56px; height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-weight: 900;
        font-size: 1.25rem;
        margin: 0 auto 1.25rem;
        border: 3px solid var(--white);
        box-shadow: 0 0 0 2px var(--amber);
        background: var(--white);
        color: var(--slate-900);
        transition: all .2s;
    }

    .step-item:hover .step-num {
        background: var(--amber);
        box-shadow: 0 0 0 2px var(--amber), 0 8px 20px rgba(251,191,36,.4);
    }

    .step-item h4 {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 1rem;
        margin-bottom: .5rem;
    }

    .step-item p {
        font-size: .85rem;
        color: var(--text-muted);
        margin: 0;
        line-height: 1.6;
    }


    .testimonials-section {
        background: var(--amber-light);
        padding: 5rem 0;
        border-top: 1px solid #fcd34d;
        border-bottom: 1px solid #fcd34d;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .testi-card {
        background: var(--white);
        border-radius: 16px;
        padding: 1.75rem;
        box-shadow: 0 2px 12px rgba(0,0,0,.05);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .testi-stars {
        color: #f59e0b;
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .testi-text {
        font-size: .9rem;
        line-height: 1.7;
        color: var(--text);
        font-style: italic;
        flex: 1;
    }

    .testi-author {
        display: flex;
        align-items: center;
        gap: .75rem;
    }

    .testi-avatar {
        width: 40px; height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: .9rem;
        flex-shrink: 0;
    }

    .testi-name {
        font-weight: 700;
        font-size: .875rem;
    }

    .testi-info {
        font-size: .8rem;
        color: var(--text-muted);
    }


    .form-section {
        background: var(--white);
        padding: 5rem 0;
    }

    .form-layout {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
        align-items: start;
        max-width: 1000px;
        margin: 0 auto;
    }

    .form-sidebar {
        position: sticky;
        top: 100px;
    }

    .sidebar-card {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-radius: 20px;
        padding: 2rem;
        color: white;
        margin-bottom: 1.25rem;
    }

    .sidebar-card h3 {
        font-family: var(--font-display);
        font-size: 1.1rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--amber);
    }

    .sidebar-guarantee {
        display: flex;
        flex-direction: column;
        gap: .875rem;
    }

    .guarantee-item {
        display: flex;
        align-items: flex-start;
        gap: .75rem;
        font-size: .875rem;
        color: #cbd5e1;
    }

    .guarantee-icon {
        font-size: 1.2rem;
        margin-top: -2px;
        flex-shrink: 0;
    }

    .form-sidebar .contact-info-card {
        background: var(--amber-light);
        border: 1.5px solid #fcd34d;
        border-radius: 16px;
        padding: 1.5rem;
    }

    .form-sidebar .contact-info-card h4 {
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--amber-dark);
    }

    .form-sidebar .contact-info-item {
        display: flex;
        align-items: center;
        gap: .75rem;
        font-size: .875rem;
        font-weight: 600;
        margin-bottom: .5rem;
    }

    .form-main-card {
        background: var(--white);
        border: 1.5px solid var(--border);
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: 0 4px 24px rgba(0,0,0,.05);
    }


    .success-msg {
        background: #d1fae5;
        border: 1.5px solid #6ee7b7;
        color: #065f46;
        padding: 1.25rem 1.5rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
        font-weight: 600;
        font-size: .95rem;
        line-height: 1.6;
    }


    @media (max-width: 1024px) {
        .cours-hero-inner { grid-template-columns: 1fr; }
        .cours-hero-illustration { display: none; }
        .forfaits-grid { grid-template-columns: repeat(2, 1fr); }
        .domaines-grid { grid-template-columns: repeat(2, 1fr); }
        .steps-timeline { grid-template-columns: repeat(2, 1fr); }
        .steps-timeline::before { display: none; }
        .form-layout { grid-template-columns: 1fr; }
        .form-sidebar { position: static; }
    }

    @media (max-width: 640px) {
        .forfaits-grid { grid-template-columns: 1fr; }
        .domaines-grid { grid-template-columns: 1fr; }
        .testimonials-grid { grid-template-columns: 1fr; }
        .cours-hero-text h1 { font-size: 1.75rem; }
        .impots-inner { flex-direction: column; text-align: center; }
    }

/* Bannière page sites */
.hero-ia {
    background: linear-gradient(150deg, #0a1628 0%, #0F4C6B 40%, #1A6B9A 75%, #1d5a8a 100%);
    color: #fff;
    padding: clamp(4rem, 10vw, 7rem) 0 0;
    position: relative;
    overflow: hidden;
}
.hero-ia::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(37,137,200,.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(224,122,16,.12) 0%, transparent 45%),
        radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: auto, auto, 28px 28px;
    pointer-events: none;
}

.hero-ia-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 4rem;
    position: relative; z-index: 1;
}

.site-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,137,200,.2);
    border: 1px solid rgba(168,216,234,.35);
    color: var(--sky);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}
.site-badge .site-dot {
    width: 7px; height: 7px;
    background: #5BE89A;
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.5; transform:scale(.7); }
}

.hero-ia h1 {
    font-size: clamp(2rem, 4.5vw, 3.3rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 1.15rem;
}
.hero-ia h1 .accent-ia {
    background: linear-gradient(120deg, var(--sky), #5BE89A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-ia h1 em {
    font-style: normal;
    color: var(--amber2);
}

.hero-ia-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.78);
    max-width: 470px;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-ia-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.ia-stat-pill {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: .65rem 1rem;
    text-align: center;
}
.ia-stat-pill .num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--sky);
    line-height: 1;
    display: block;
}
.ia-stat-pill .lbl {
    font-size: .75rem;
    color: rgba(255,255,255,.55);
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

.hero-ia-ctas { display: flex; gap: .85rem; flex-wrap: wrap; }
/* Bouton principal page sites */
.btn-ia-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--sky) 0%, #5BE89A 100%);
    color: #0a1628;
    font-weight: 800; font-size: 1rem;
    padding: 1rem 2rem; border-radius: var(--radius);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    border: none; cursor: pointer;
}
.btn-ia-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(91,232,154,.3);
    color: #0a1628;
}
/* Bouton contour page sites */
.btn-ia-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: rgba(255,255,255,.85);
    font-weight: 700; font-size: 1rem;
    padding: 1rem 2rem; border-radius: var(--radius);
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.25);
    transition: all .2s;
}
.btn-ia-ghost:hover {
    border-color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.07);
    transform: translateY(-2px);
}

.hero-ia-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}
.hero-ia-card::before {
    content: '';
    position: absolute; top:0; left:0; right:0; height:2px;
    background: linear-gradient(90deg, var(--sky), #5BE89A, var(--amber2));
}
.hero-ia-card .card-label {
    font-size: .72rem; font-weight: 800; letter-spacing:.1em;
    text-transform: uppercase; color: var(--sky);
    margin-bottom: 1.15rem;
}
.site-preview-items { display: flex; flex-direction: column; gap: .7rem; }
.sp-item {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.06);
    border-radius: 10px; padding: .65rem .9rem;
    font-size: .9rem; color: rgba(255,255,255,.8);
    font-weight: 600;
}
.sp-item .sp-ico { font-size: 1.1rem; flex-shrink:0; }
.sp-item .sp-check {
    margin-left: auto;
    width: 20px; height: 20px;
    background: rgba(91,232,154,.2);
    border-radius: 50%;
    display: flex; align-items:center; justify-content:center;
    font-size: .75rem; color: #5BE89A; flex-shrink:0;
}
.hero-ia-card .card-footer {
    margin-top: 1.25rem; padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: space-between;
}
.card-footer .price-display {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 800;
    color: var(--amber2);
    line-height: 1;
}
.card-footer .price-sub { font-size: .8rem; color: rgba(255,255,255,.45); margin-top: 2px; }
.card-footer .delivery-badge {
    background: rgba(91,232,154,.15);
    border: 1px solid rgba(91,232,154,.25);
    color: #5BE89A;
    font-size: .78rem; font-weight: 700;
    padding: 5px 12px; border-radius: 100px;
}

.trust-ia {
    background: #0a1628;
    padding: 1rem 0;
    overflow: hidden;
}
.trust-ia-inner {
    display: flex; gap: 3rem; align-items: center;
    justify-content: center; flex-wrap: wrap;
}
.trust-ia-item {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.6); font-size: .875rem; font-weight: 700;
    white-space: nowrap;
}
.trust-ia-item .t-ico { color: #5BE89A; font-size: 1rem; }

.why-ia {
    background: var(--white);
    padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.why-ia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.why-ia-left h2 { color: var(--ocean-deep); margin-bottom: 1rem; }
.why-ia-left p  { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.ia-compare-table {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--sand-dark);
}
.ia-ct-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    font-size: .875rem;
}
.ia-ct-row:not(:last-child) { border-bottom: 1px solid var(--sand-dark); }
.ia-ct-row.header {
    background: var(--ocean-deep);
    color: rgba(255,255,255,.75);
    font-weight: 700; font-size: .78rem;
    text-transform: uppercase; letter-spacing: .07em;
}
.ia-ct-row.header div:nth-child(3) { color: #5BE89A; }
.ia-ct-cell {
    padding: .75rem 1rem;
    display: flex; align-items: center;
}
.ia-ct-row:not(.header) .ia-ct-cell:first-child {
    color: var(--text-muted); font-weight: 600;
}
.ia-ct-row:not(.header) .ia-ct-cell:nth-child(2) {
    color: #EF4444; font-weight: 700;
    background: rgba(239,68,68,.04);
}
.ia-ct-row:not(.header) .ia-ct-cell:nth-child(3) {
    color: var(--green); font-weight: 700;
    background: rgba(26,154,90,.04);
}

.pricing-section {
    background: var(--sand);
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    position: relative; overflow: hidden;
}
.pricing-section::before {
    content: '';
    position: absolute; inset:0;
    background-image: radial-gradient(circle, rgba(26,107,154,.06) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}
/* Cartes de formules page sites */
.pricing-card {
    background: var(--white);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex; flex-direction: column;
    gap: 0;
    position: relative;
    transition: transform .2s, box-shadow .2s;
    overflow: hidden;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
    background: var(--ocean-deep);
    border-color: var(--ocean-deep);
    color: var(--white);
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(15,76,107,.3);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-card::before {
    content: '';
    position: absolute; top:0; left:0; right:0; height:3px;
    background: linear-gradient(90deg, var(--ocean), var(--sky));
}
.pricing-card.featured::before {
    background: linear-gradient(90deg, var(--sky), #5BE89A, var(--amber2));
}
.pricing-badge {
    display: inline-flex; align-self: flex-start;
    font-size: .72rem; font-weight: 800; letter-spacing:.07em;
    text-transform: uppercase;
    background: var(--sky-light); color: var(--ocean-deep);
    padding: 4px 12px; border-radius: 100px;
    border: 1px solid rgba(37,137,200,.2);
    margin-bottom: 1.25rem;
}
.pricing-card.featured .pricing-badge {
    background: rgba(91,232,154,.2);
    color: #5BE89A;
    border-color: rgba(91,232,154,.3);
}
.pricing-name {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 800;
    color: var(--ocean-deep);
    margin-bottom: .25rem;
}
.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-desc {
    font-size: .875rem; color: var(--text-muted);
    margin-bottom: 1.5rem; line-height: 1.6;
}
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,.6); }
.pricing-amount {
    display: flex; align-items: baseline; gap: 4px;
    margin-bottom: .35rem;
}
.pricing-amount .price {
    font-family: var(--font-display);
    font-size: 3rem; font-weight: 800;
    color: var(--ocean-deep); line-height: 1;
}
.pricing-card.featured .pricing-amount .price { color: var(--amber2); }
.pricing-amount .currency { font-size: 1.4rem; font-weight: 700; color: var(--ocean); }
.pricing-card.featured .pricing-amount .currency { color: var(--amber2); }
.pricing-sub { font-size: .78rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-card.featured .pricing-sub { color: rgba(255,255,255,.4); }
.pricing-divider {
    height: 1px; background: var(--sand-dark); margin: 1.5rem 0;
}
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,.12); }
.pricing-features { list-style:none; display:flex; flex-direction:column; gap:.65rem; flex:1; margin-bottom:1.75rem; }
.pricing-features li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: .875rem; line-height: 1.55; color: var(--text-muted);
}
.pricing-features li::before {
    content: '✓'; color: var(--green);
    font-weight: 800; flex-shrink:0; margin-top:1px;
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.75); }
.pricing-card.featured .pricing-features li::before { color: #5BE89A; }
.pricing-features li.extra::before { content: '✦'; color: var(--amber); }
.btn-pricing {
    display: block; text-align: center;
    background: var(--ocean-deep); color: var(--white);
    font-weight: 700; font-size: .9rem;
    padding: .875rem; border-radius: var(--radius);
    text-decoration: none; margin-top: auto;
    transition: all .18s;
}
.btn-pricing:hover { background: var(--ocean); transform: translateY(-2px); color: var(--white); }
.pricing-card.featured .btn-pricing {
    background: linear-gradient(135deg, var(--sky) 0%, #5BE89A 100%);
    color: #0a1628;
}
.pricing-card.featured .btn-pricing:hover {
    box-shadow: 0 8px 28px rgba(91,232,154,.35);
    transform: translateY(-2px);
}
.pricing-popular {
    position: absolute; top: -1px; right: 24px;
    background: linear-gradient(135deg, var(--sky), #5BE89A);
    color: #0a1628;
    font-size: .7rem; font-weight: 800; letter-spacing: .07em;
    text-transform: uppercase;
    padding: 5px 14px; border-radius: 0 0 10px 10px;
}

.inclus-section { background: var(--white); padding: clamp(3rem,7vw,5rem) 0; }
.inclus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.inclus-card {
    background: var(--cream);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: box-shadow .2s, transform .2s;
}
.inclus-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.inclus-ico { font-size: 2rem; margin-bottom: .75rem; }
.inclus-card h4 {
    font-size: .95rem; font-weight: 700;
    color: var(--ocean-deep); margin-bottom: .35rem;
}
.inclus-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

.process-section { background: var(--sand); padding: clamp(3rem,7vw,5rem) 0; position:relative; }
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 2.5rem;
}
.process-steps::before {
    content: '';
    position: absolute; top: 26px;
    left: calc(10% + 13px); right: calc(10% + 13px);
    height: 2px;
    background: linear-gradient(90deg, var(--ocean), #5BE89A);
}
.process-step {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    padding: 0 .75rem;
    position: relative; z-index: 1;
}
.process-num {
    width: 52px; height: 52px;
    background: var(--white);
    border: 3px solid var(--ocean);
    border-radius: 50%;
    display: flex; align-items:center; justify-content:center;
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 800;
    color: var(--ocean-deep);
    margin-bottom: 1rem;
    box-shadow: 0 0 0 5px var(--sand);
    transition: background .2s, border-color .2s;
}
.process-step:hover .process-num {
    background: var(--ocean-deep); color: var(--white);
}
.process-step h4 {
    font-size: .9rem; font-weight: 700;
    color: var(--ocean-deep); margin-bottom: .3rem;
}
.process-step p { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }

.faq-section { background: var(--cream); padding: clamp(3rem,7vw,5rem) 0; }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
    background: var(--white);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-q {
    width: 100%; background: none; border: none;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 1.35rem;
    font-family: var(--font-body); font-size: .95rem; font-weight: 700;
    color: var(--ocean-deep); cursor: pointer; text-align: left; gap: 1rem;
    transition: background .15s;
}
.faq-q:hover { background: var(--sand); }
.faq-q .faq-arrow { flex-shrink:0; transition: transform .25s; font-size: .8rem; color: var(--ocean); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .25s;
    font-size: .9rem; color: var(--text-muted); line-height: 1.75;
    padding: 0 1.35rem;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.35rem 1.1rem; }

.form-section {
    background: linear-gradient(160deg, var(--ocean-deep) 0%, #0a1a2e 100%);
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    position: relative; overflow: hidden;
}
.form-section::before {
    content: '';
    position: absolute; inset:0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 26px 26px; pointer-events: none;
}
.form-section .section-head h2 { color: var(--white); }
.form-section .section-head p  { color: rgba(255,255,255,.6); }
.form-section .section-head .tag {
    background: rgba(168,216,234,.15);
    color: var(--sky); border-color: rgba(168,216,234,.25);
}

section.form-section.cours-reservation {
    background: linear-gradient(180deg, var(--white) 0%, #F6FBFE 100%);
    color: var(--granite);
}
section.form-section.cours-reservation::before {
    background-image: radial-gradient(circle, rgba(37,137,200,.08) 1px, transparent 1px);
    background-size: 28px 28px;
}
.cours-reservation .container {
    position: relative;
    z-index: 1;
}
.cours-reservation .section-header .tag {
    background: rgba(26,154,90,.12);
    color: #0F6B43;
    border-color: rgba(26,154,90,.24);
}
.cours-reservation .section-header h2 {
    color: var(--ocean-deep);
}
.cours-reservation .section-header p {
    color: var(--granite);
}

.project-form {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    padding: clamp(1.75rem, 4vw, 3rem);
    position: relative; z-index:1;
    backdrop-filter: blur(8px);
}

.form-group-title {
    font-size: .72rem; font-weight: 800; letter-spacing: .12em;
    text-transform: uppercase; color: var(--sky);
    padding: 1.75rem 0 .75rem;
    border-top: 1px solid rgba(255,255,255,.07);
    margin-top: .5rem;
    display: flex; align-items: center; gap: 8px;
}
.form-group-title:first-child { border-top:none; padding-top:0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }

.pf-group { margin-bottom: 1.15rem; }
.pf-label {
    display: block; font-size: .83rem; font-weight: 700;
    color: rgba(255,255,255,.7); margin-bottom: 6px;
}
.pf-label .req { color: var(--sky); margin-left: 2px; }
.pf-input, .pf-select, .pf-textarea {
    width: 100%; padding: 12px 14px;
    border: 1.5px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.9);
    font-family: var(--font-body); font-size: .93rem;
    transition: border-color .18s, box-shadow .18s;
    margin: 0;
}
.pf-input::placeholder, .pf-textarea::placeholder { color: rgba(255,255,255,.28); }
.pf-input:focus, .pf-select:focus, .pf-textarea:focus {
    outline: none;
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(168,216,234,.15);
    background: rgba(255,255,255,.1);
}
.pf-select { cursor: pointer; }
.pf-select option { background: #0F4C6B; color: #fff; }
.pf-textarea { resize: vertical; min-height: 120px; }

.fonc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .65rem;
}
.fonc-label {
    display: flex; flex-direction: column; align-items: center;
    gap: .45rem; text-align: center;
    background: rgba(255,255,255,.05);
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: .85rem .5rem;
    cursor: pointer;
    transition: all .18s;
    font-size: .78rem; font-weight: 600;
    color: rgba(255,255,255,.55);
    user-select: none;
}
.fonc-label:hover { border-color: rgba(168,216,234,.4); color: rgba(255,255,255,.8); }
.fonc-label input { display: none; }
.fonc-label input:checked ~ * { color: var(--sky); }
.fonc-label:has(input:checked) {
    background: rgba(37,137,200,.2);
    border-color: rgba(168,216,234,.45);
    color: var(--sky);
}
.fonc-ico { font-size: 1.4rem; }

.contact-pref-row { display: flex; gap: .65rem; flex-wrap: wrap; }
.pref-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: .5rem .9rem;
    font-size: .83rem; font-weight: 600;
    color: rgba(255,255,255,.55);
    cursor: pointer; transition: all .15s;
}
.pref-btn:has(input:checked) {
    background: rgba(37,137,200,.2);
    border-color: rgba(168,216,234,.45);
    color: var(--sky);
}
.pref-btn input { display: none; }

.toggle-row { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.toggle-item {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.65); font-size: .875rem; font-weight: 600;
    cursor: pointer;
}
.toggle-item input[type="checkbox"] {
    width: 18px; height: 18px; cursor: pointer;
    accent-color: var(--sky);
    flex-shrink: 0;
}

.ndd-highlight {
    background: rgba(91,232,154,.07);
    border: 1.5px solid rgba(91,232,154,.2);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-top: .5rem;
}
.ndd-highlight .toggle-item {
    color: rgba(255,255,255,.85);
    font-size: .95rem;
}

.form-success {
    background: rgba(91,232,154,.12);
    border: 1.5px solid rgba(91,232,154,.3);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    color: #5BE89A;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.form-success .success-ico { font-size: 2rem; display: block; margin-bottom: .5rem; }
.form-error-list {
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.25);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}
.form-error-list li {
    color: #FCA5A5; font-size: .875rem; font-weight: 600;
    margin-bottom: .25rem;
}

.btn-submit-ia {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--sky) 0%, #5BE89A 100%);
    color: #0a1628;
    font-family: var(--font-body);
    font-weight: 800; font-size: 1rem;
    padding: 1rem 2.5rem; border-radius: var(--radius);
    border: none; cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    margin-top: .5rem;
}
.btn-submit-ia:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(91,232,154,.3);
}

@media (max-width: 1000px) {
    .inclus-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(3, 1fr); }
    .process-steps::before { display: none; }
    .fonc-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
    .hero-ia-grid  { grid-template-columns: 1fr; }
    .hero-ia-card  { display: none; }
    .why-ia-grid   { grid-template-columns: 1fr; }
    .pricing-grid  { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-6px); }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .fonc-grid { grid-template-columns: repeat(2, 1fr); }
    .ia-compare-table { overflow-x: auto; }
}
@media (max-width: 640px) {
    .inclus-grid   { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .trust-ia-inner { gap: 1.25rem; }
    .hero-ia {
        padding: 2.35rem 0 0;
    }
    .hero-ia-grid {
        padding-bottom: 2.35rem;
    }
    .hero-ia h1 {
        font-size: 2.15rem;
        margin-bottom: .9rem;
    }
    .hero-ia-desc {
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }
    .hero-ia-stats {
        gap: .75rem;
        margin-bottom: 1.2rem;
    }
    .fonc-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid  { max-width: 100%; }
}

/* Couleurs propres à la page tarifs */
.page-tarifs {
    --amber: var(--ocean);
    --amber-dark: var(--ocean-deep);
    --amber-light: var(--sky-light);
    --slate-900: #1c1917;
    --text-muted: #6B7D8E;
    --radius-xl: 16px;
    background: var(--white);
}

/* Bannière haute page tarifs */
.page-tarifs .hero-inner {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border-bottom: 0;
    margin-bottom: 0;
    padding: clamp(2.25rem, 4vw, 3.25rem) 0;
}

/* Espace entre bannière et formulaire page contact */
.page-contact .hero-inner {
    margin-bottom: 2rem !important;
}

/* Bannière explicative page tarifs */
.tarifs-how-it-works {
    background: var(--white);
    border-top: 1px solid var(--sky-light);
    border-bottom: 1px solid var(--sky-light);
    padding: 1.5rem 0;
}
.tarifs-how-it-works .inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.tarifs-how-it-works .how-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    margin-top: .1rem;
}
.tarifs-how-it-works h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-bottom: .4rem;
}
.tarifs-how-it-works p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.tarifs-how-it-works a {
    color: var(--ocean);
    font-weight: 600;
    text-decoration: underline;
}

.steps-banner {
    background: white;
    border: 2px solid #f0eeea;
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
}
.steps-banner .step {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    flex: 1;
    min-width: 200px;
}
.step-num {
    background: var(--slate-900);
    color: white;
    font-weight: 800;
    font-size: .85rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.step-body strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: #1c1917;
    margin-bottom: .2rem;
}
.step-body span {
    font-size: .88rem;
    color: #78350f;
    line-height: 1.5;
}
.steps-divider {
    font-size: 1.3rem;
    color: #d4b896;
    align-self: center;
    flex-shrink: 0;
}
@media (max-width: 680px) {
    .steps-divider { display: none; }
    .steps-banner { flex-direction: column; gap: 1rem; padding: 1.2rem; }
}

.tabs-sidebar .tab-btn {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1rem;
    padding: .75rem 1rem;
    border-radius: 12px;
    border: 2px solid #e7e5e0;
    line-height: 1.3;
    cursor: pointer;
    background: white;
    transition: all .15s;
    width: 100%;
    text-align: left;
    margin-bottom: .4rem;
}
.tabs-sidebar .tab-btn.active,
.tabs-sidebar .tab-btn:hover {
    border-color: var(--amber-dark);
    background: var(--amber-light);
    color: #92400e;
    font-weight: 600;
}
.tabs-sidebar .tab-diagnostic {
    justify-content: center;
    margin-top: .65rem;
    border-color: rgba(15,76,107,.22);
    background: var(--ocean-deep);
    color: var(--white);
}
.tabs-sidebar .tab-diagnostic:hover {
    border-color: var(--ocean);
    background: var(--ocean);
    color: var(--white);
}

.tab-content h2 {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
}

.service-item {
    background: white;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin-bottom: .85rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border: 2px solid #f0eeea;
    transition: border-color .15s, box-shadow .15s;
}
.service-item:hover {
    border-color: var(--amber-dark);
    box-shadow: 0 4px 20px rgba(245, 158, 11, .12);
}
.service-info {
    flex: 1;
}
.service-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .25rem;
    line-height: 1.3;
    color: #1c1917;
}
.service-info p {
    font-size: .95rem;
    line-height: 1.55;
    color: #57534e;
    margin: 0;
}

.service-price {
    background: var(--slate-900);
    color: white;
    border-radius: 10px;
    padding: .6rem 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
    min-width: 90px;
    text-align: center;
    flex-shrink: 0;
}

.btn-devis {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--amber);
    color: #1c1917;
    border-radius: 10px;
    padding: .6rem 1.1rem;
    font-size: .95rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background .15s, transform .1s;
}
.btn-devis:hover {
    background: var(--amber-dark);
    color: white;
    transform: translateY(-1px);
}
.btn-devis::after {
    content: '→';
}

/* Bloc frais de déplacement page tarifs */
.depl-card {
    background: white;
    border-radius: 14px;
    padding: 1.5rem;
    border: 2px solid #f0eeea;
}
.depl-card h3 {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.1rem;
    margin-bottom: .2rem;
}
.depl-card .depl-subtitle {
    font-size: .92rem;
    color: #78350f;
    margin-bottom: 1.25rem;
}
.depl-legend {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: .85rem;
}
.depl-legend span {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: #57534e;
}
.depl-legend .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.depl-map-layout {
    display: block;
    margin-bottom: 1.2rem;
}
.depl-map-shell {
    position: relative;
    min-height: 430px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e7e5e0;
    box-shadow: 0 18px 42px rgba(15, 76, 107, .14);
    background: #f8fafc;
}
.depl-map,
.depl-map-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.depl-map {
    z-index: 2;
    opacity: 0;
    pointer-events: none;
}
.depl-map-fallback {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    text-align: center;
    color: #0f4c6b;
    background:
        radial-gradient(circle at center, rgba(34, 197, 94, .16) 0 13%, transparent 13.5%),
        radial-gradient(circle at center, rgba(245, 158, 11, .13) 0 33%, transparent 33.5%),
        radial-gradient(circle at center, rgba(239, 68, 68, .10) 0 54%, transparent 54.5%),
        linear-gradient(90deg, rgba(15, 76, 107, .08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(15, 76, 107, .08) 1px, transparent 1px),
        #eef6f9;
    background-size: auto, auto, auto, 42px 42px, 42px 42px, auto;
}
.depl-map-fallback strong {
    font-size: 1rem;
}
.depl-map-fallback span {
    color: #355365;
    font-size: .9rem;
}
.depl-map-shell.is-leaflet-ready .depl-map {
    opacity: 1;
    pointer-events: auto;
}
.depl-map-shell.is-leaflet-ready .depl-map-fallback {
    display: none;
}
.depl-map-panel {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .55rem;
    width: min(380px, calc(100% - 32px));
    border: 1px solid rgba(231, 229, 224, .95);
    border-radius: 12px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 34px rgba(28, 25, 23, .14);
    padding: .95rem 1rem;
    backdrop-filter: blur(8px);
}
.depl-map-panel strong {
    color: #1c1917;
    line-height: 1.25;
}
.depl-map-panel p {
    color: #57534e;
    font-size: .9rem;
    line-height: 1.5;
    margin: 0;
}
.depl-map .leaflet-control-attribution {
    font-size: .65rem;
}
#distSlider {
    width: 100%;
    height: 22px;
    border-radius: 999px;
    outline: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}
#distSlider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--depl-thumb, #22c55e);
    border: 4px solid #fff;
    box-shadow: 0 3px 12px rgba(28,25,23,.22);
    cursor: pointer;
    margin-top: -6px;
}
#distSlider::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e 0 25%, #f59e0b 25% 62.5%, #ef4444 62.5% 100%);
    box-shadow: inset 0 0 0 1px rgba(28,25,23,.08);
}
#distSlider::-moz-range-track {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e 0 25%, #f59e0b 25% 62.5%, #ef4444 62.5% 100%);
    box-shadow: inset 0 0 0 1px rgba(28,25,23,.08);
}
#distSlider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--depl-thumb, #22c55e);
    border: 4px solid #fff;
    box-shadow: 0 3px 12px rgba(28,25,23,.22);
    cursor: pointer;
}
.depl-range-card {
    background: #fafaf9;
    border: 1px solid #f0eeea;
    border-radius: 14px;
    padding: 1rem;
    margin-bottom: 1rem;
}
.depl-range-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: .75rem;
}
.depl-range-head label {
    font-size: .9rem;
    font-weight: 700;
    color: #57534e;
}
.depl-distance-pill {
    background: white;
    border: 1px solid #e7e5e0;
    border-radius: 999px;
    color: #1c1917;
    font-size: .9rem;
    font-weight: 800;
    min-width: 68px;
    padding: .3rem .7rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(28,25,23,.06);
}
.depl-scale {
    display: grid;
    grid-template-columns: 25fr 37.5fr 37.5fr;
    gap: 4px;
    margin-top: .3rem;
}
.depl-scale span {
    color: #78716c;
    font-size: .72rem;
    font-weight: 700;
}
.depl-scale span:nth-child(2) { text-align: center; }
.depl-scale span:nth-child(3) { text-align: right; }
.depl-result-card {
    border-radius: 10px;
    padding: 1rem 1.25rem;
}
.depl-result-card.zone-free {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
}
.depl-result-card.zone-mid {
    background: var(--white);
    border: 2px solid #f59e0b;
}
.depl-result-card.zone-far,
.depl-result-card.zone-outside {
    background: #fef2f2;
    border: 2px solid #fecaca;
}
.depl-result-alert {
    color: #991b1b;
}
.depl-result-alert-link {
    color: #991b1b;
    font-weight: 600;
}
.depl-result-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}
.depl-result-label {
    font-size: .82rem;
    color: #57534e;
    margin: 0 0 2px;
}
.depl-result-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #1c1917;
}
.depl-result-badges {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}
.depl-result-km {
    background: rgba(0,0,0,.06);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: .8rem;
    color: #57534e;
}
.depl-result-note {
    margin: .6rem 0 0;
    font-size: .82rem;
}
.depl-result-note.zone-free { color: #14532d; }
.depl-result-note.zone-mid { color: #92400e; }
.depl-result-note.zone-far,
.depl-result-note.zone-outside { color: #991b1b; }

@media (max-width: 680px) {
    .depl-map-shell {
        min-height: 330px;
        border-radius: 14px;
    }
    .depl-map-panel {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
        padding: .8rem .9rem;
    }
    .tarifs-how-it-works .inner { flex-direction: column; }
    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .service-price, .btn-devis {
        align-self: flex-start;
    }
}
.u-style-001 { max-width:420px; margin:80px auto; padding:0 1.25rem; }
.u-style-002 { text-align:center; margin-bottom:2rem; }
.u-style-003 { font-family:var(--font-display); font-size:2rem; font-weight:800; margin-top:1rem; letter-spacing:-.02em; }
.u-style-004 { color:var(--text-muted); margin-top:.5rem; }
.u-style-005 { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2rem; box-shadow:var(--shadow); }
.u-style-006 { background:#FEF2F2; border:1px solid #FECACA; color:#B91C1C; padding:.875rem 1rem; border-radius:var(--radius); font-size:.9rem; font-weight:600; margin-bottom:1.25rem; }
.u-style-007 { text-align:center; margin-bottom:1.5rem; }
.u-style-008 { font-size:2.5rem; margin-bottom:.5rem; }
.u-style-009 { font-weight:800; font-size:1.1rem; color:var(--text); }
.u-style-010 { color:var(--text-muted); font-size:.875rem; margin-top:.35rem; }
.u-style-011 { font-size:1.6rem; letter-spacing:.25em; text-align:center; font-family:var(--font-display); font-weight:800; padding:.75rem; }
.u-style-012 { width:100%; justify-content:center; margin-top:.25rem; }
.u-style-013 { display:block; text-align:center; margin-top:1rem; font-size:.85rem; color:var(--text-muted); }
.u-style-014 { width:100%; justify-content:center; margin-top:.5rem; }
.u-style-015 { padding-top:1.5rem; padding-bottom:3rem; }
.u-style-016 { margin-left:auto; background:rgba(255,255,255,.2); border:none; color:white; width:24px; height:24px; border-radius:50%; cursor:pointer; font-size:.85rem; }
.u-style-017 { margin-bottom:.5rem; }
.u-style-018 { font-size:.875rem; }
.u-style-019 { background:#EF4444; color:white; border-radius:100px; font-size:.68rem; padding:1px 7px; font-weight:800; }
.u-style-020 { display:flex; flex-direction:column; gap:1.5rem; }
.u-style-021 { margin-bottom:1rem; }
.u-style-022 { margin-bottom:0; }
.u-style-023 { font-family:monospace; font-size:.875rem; min-height:120px; }
.u-style-024 { font-weight:400; opacity:.6; }
.u-style-025 { flex:1; justify-content:center; }
.u-style-026 { overflow-x:auto; }
.u-style-027 { font-family:var(--font-display); }
.u-style-028 { color:var(--text-muted); }
.u-style-029 { min-height:80px; }
.u-style-030 { width:100%; justify-content:center; }
.u-style-031 { display:none; width:100%; justify-content:center; margin-top:.5rem; }
.u-style-032 { color:var(--text-muted); font-size:.85rem; }
.u-style-033 { display:flex; gap:5px; flex-wrap:wrap; }
.u-style-034 { font-size:.8rem; font-weight:400; color:var(--text-muted); }
.u-style-035 { font-weight:400; opacity:.6; font-size:.78rem; }
.u-style-036 { border:1px solid var(--border); border-top:none; border-radius:0 0 var(--radius) var(--radius); overflow:hidden; }
.u-style-037 { display:grid; grid-template-columns:2fr 2fr 1fr auto; gap:.5rem; padding:.4rem .75rem; background:var(--slate-50); border-bottom:1px solid var(--border); }
.u-style-038 { font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--text-muted); }
.u-style-039 { display:flex; gap:4px; }
.u-style-040 { margin-top:1rem; }
.u-style-041 { text-align:center; padding:3rem; }
.u-style-042 { font-size:2.5rem; margin-bottom:1rem; }
.u-style-043 { color:var(--text-muted); font-weight:600; }
.u-style-044 { background:#059669; color:white; border-radius:100px; font-size:.65rem; padding:2px 8px; font-weight:800; }
.u-style-045 { margin-left:auto; font-size:.8rem; }
.u-style-046 { font-size:.78rem; color:var(--text-muted); font-style:italic; margin-top:2px; }
.u-style-047 { font-size:.72rem; padding:2px 6px; }
.u-style-048 { font-size:.875rem; color:var(--text-muted); }
.u-style-049 { display:flex; flex-direction:column; gap:4px; align-items:flex-start; }
.u-style-050 { color:var(--text-muted); font-size:.8rem; }
.u-style-051 { font-size:.85rem; color:var(--text-muted); max-width:220px; }
.u-style-052 { font-weight:400; color:var(--text-muted); font-size:.85rem; }
.u-style-053 { color:var(--text-muted); text-align:center; padding:2rem 0; }
.u-style-054 { color:var(--text-muted); white-space:nowrap; }
.u-style-055 { white-space:nowrap; }
.u-style-056 { text-align:center; }
.u-style-057 { color:#059669; font-size:1.1rem; }
.u-style-058 { min-width:160px; }
.u-style-059 { display:flex; gap:4px; flex-wrap:wrap; }
.u-style-060 { font-size:.75rem; opacity:.6; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:4px; }
.u-style-061 { display:flex; gap:.65rem; flex-wrap:wrap; margin-bottom:1.5rem; }
.u-style-062 { margin-top:.25rem; }
.u-style-063 { margin-top:1.25rem; }
.u-style-064 { font-size:.72rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--text-muted); margin-bottom:.5rem; }
.u-style-065 { border-left-color:#8B5CF6; }
.u-style-066 { background:#1e3a5f; }
.u-style-067 { grid-column:1/-1; margin-bottom:0; }
.u-style-068 { grid-column:1/-1; margin-bottom:0; margin-top:.75rem; }
.u-style-069 { min-height:120px; }
.u-style-070 { display:flex; gap:.75rem; margin-top:1.75rem; padding-top:1.25rem; border-top:1px solid var(--border); flex-wrap:wrap; }
.u-style-071 { padding-bottom:4rem; }
.u-style-072 { color:#EF4444; padding:1rem; border:1px solid #EF4444; margin-bottom:1.5rem; border-radius:6px; }
.u-style-073 { display:flex; gap:1rem; flex-wrap:wrap; }
.u-style-074 { margin-top:4px; }
.u-style-075 { color:var(--amber); }
.u-style-076 { background:var(--amber); color:var(--slate-900); border:none; border-radius:10px; padding:10px 20px; font-weight:700; font-size:.9rem; cursor:pointer; margin-top:1rem; flex-shrink:0; }
.u-style-077 { background:#fef3c7; color:#92400e; }
.u-style-078 { background:#dbeafe; color:#1d4ed8; }
.u-style-079 { background:#d1fae5; color:#065f46; }
.u-style-080 { font-size:.8rem; color:var(--text-muted); margin-top:.5rem; }
.u-style-081 { gap:20px; }
.u-style-082 { flex:1; }
.u-style-083 { color:var(--text-muted); font-weight:400; }
.u-style-084 { width:100%; justify-content:center; font-size:1.05rem; padding:16px; }
.u-style-085 { text-align:center; font-size:.8rem; color:var(--text-muted); margin-top:1rem; margin-bottom:0; }
.u-style-086 { display:none; position:fixed; inset:0; background:rgba(15,23,42,.55); z-index:9999; align-items:center; justify-content:center; padding:1rem; }
.u-style-087 { background:#fff; border-radius:20px; max-width:560px; width:100%; max-height:90vh; overflow-y:auto; position:relative; box-shadow:0 24px 60px rgba(0,0,0,.18); }
.u-style-088 { background:linear-gradient(135deg,#1e293b,#334155); border-radius:20px 20px 0 0; padding:2rem 2rem 1.5rem; position:relative; }
.u-style-089 { position:absolute; top:1rem; right:1rem; background:rgba(255,255,255,.12); border:none; color:#fff; width:32px; height:32px; border-radius:50%; font-size:1.1rem; cursor:pointer; display:flex; align-items:center; justify-content:center; line-height:1; }
.u-style-090 { display:flex; align-items:center; gap:1rem; }
.u-style-091 { background:var(--amber); border-radius:50%; width:56px; height:56px; display:flex; flex-direction:column; align-items:center; justify-content:center; flex-shrink:0; font-family:var(--font-display); font-weight:900; font-size:1.1rem; color:var(--slate-900); line-height:1.1; }
.u-style-092 { font-size:.55rem; font-weight:700; }
.u-style-093 { color:#fff; font-family:var(--font-display); font-size:1.25rem; font-weight:800; margin:0 0 .25rem; }
.u-style-094 { color:#94a3b8; font-size:.875rem; margin:0; }
.u-style-095 { padding:1.75rem 2rem 2rem; }
.u-style-096 { font-size:.925rem; line-height:1.75; color:#334155; margin-bottom:1.5rem; }
.u-style-097 { display:flex; flex-direction:column; gap:.875rem; margin-bottom:1.75rem; }
.u-style-098 { display:flex; gap:.875rem; align-items:flex-start; }
.u-style-099 { width:28px; height:28px; border-radius:50%; background:#fef3c7; color:#92400e; font-weight:800; font-size:.8rem; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
.u-style-100 { margin:0; font-size:.875rem; line-height:1.65; color:#475569; }
.u-style-101 { color:#1e293b; }
.u-style-102 { background:#f8fafc; border:1.5px solid #e2e8f0; border-radius:14px; padding:1.25rem 1.5rem; margin-bottom:1.5rem; }
.u-style-103 { font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:#94a3b8; margin:0 0 .75rem; }
.u-style-104 { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:.75rem; text-align:center; }
.u-style-105 { font-family:var(--font-display); font-size:1.5rem; font-weight:900; color:#1e293b; }
.u-style-106 { font-size:.78rem; color:#94a3b8; margin-top:2px; }
.u-style-107 { color:#fbbf24; font-size:1.25rem; font-weight:700; }
.u-style-108 { font-family:var(--font-display); font-size:1.5rem; font-weight:900; color:#d97706; }
.u-style-109 { background:#fef3c7; border-left:3px solid #f59e0b; border-radius:0 8px 8px 0; padding:.875rem 1rem; margin-bottom:1.75rem; font-size:.85rem; line-height:1.65; color:#78350f; }
.u-style-110 { display:flex; align-items:center; justify-content:center; gap:.5rem; background:#fbbf24; color:#1e293b; font-weight:700; font-size:.95rem; border-radius:10px; padding:14px; text-decoration:none; transition:opacity .2s; }
.u-style-111 { margin-top:1rem; display:flex; gap:.65rem; flex-wrap:wrap; }
.u-style-112 { display:inline-flex; align-items:center; gap:6px; background:rgba(168,216,234,.15); border:1px solid rgba(168,216,234,.25); color:var(--sky); font-size:.82rem; font-weight:700; padding:6px 14px; border-radius:100px; text-decoration:none; }
.u-style-113 { display:none; }
.u-style-114 { display:block; width:100%; height:70px; }
.u-style-115 { padding-top:2.5rem; padding-bottom:2.5rem; background:#f8f9fb; }
.u-style-116 { grid-template-columns:repeat(auto-fit, minmax(240px, 1fr)); }
.u-style-117 { background:linear-gradient(135deg, #1a4a6b 0%, #0e2d44 100%); }
.u-style-118 { color:#fff; }
.u-style-119 { display:flex; flex-direction:column; gap:1rem; }
.u-style-120 { border-radius:1rem; }
.u-style-121 { margin-bottom:2rem; }
.u-style-122 { text-align:center; color:var(--ocean); margin-bottom:1.5rem; font-size:1.1rem; letter-spacing:.03em; }
.u-style-123 { font-size:2.8rem; margin-bottom:.5rem; }
.u-style-124 { padding:clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 8vw, 5rem); }
.u-style-125 { max-width:860px; margin:0 auto; display:flex; flex-direction:column; gap:1.35rem; }
.u-style-126 { background:var(--white); border:1px solid rgba(37,137,200,.16); border-radius:var(--radius-lg); overflow:hidden; box-shadow:0 14px 34px rgba(15,76,107,.08); }
.u-style-127 { background:linear-gradient(135deg,var(--ocean-deep),var(--ocean)); padding:1rem 1.5rem; display:flex; align-items:center; gap:12px; }
.u-style-128 { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.14); display:inline-flex; align-items:center; justify-content:center; font-size:1.15rem; flex-shrink:0; }
.u-style-129 { font-family:var(--font-display); font-size:1.05rem; font-weight:800; color:var(--white); letter-spacing:0; line-height:1.25; }
.u-style-130 { padding:1.6rem; }
.u-style-131 { color:var(--text-muted); margin-bottom:1.25rem; }
.u-style-132 { display:flex; flex-direction:column; gap:.75rem; }
.u-style-133 { display:flex; align-items:flex-start; gap:12px; font-size:.92rem; background:var(--slate-50); border:1px solid var(--border); border-radius:12px; padding:.75rem .85rem; }
.u-style-134 { width:28px; height:28px; border-radius:50%; background:var(--sky-light); display:inline-flex; align-items:center; justify-content:center; color:var(--ocean-deep); font-size:1rem; flex-shrink:0; }
.u-style-135 { color:var(--text-muted); font-size:.9rem; margin-top:0.5rem; }
.u-style-136 { color:var(--text-muted); margin-bottom:1rem; }
.u-style-137 { background:var(--amber-light); border:1px solid #FCD34D; border-radius:var(--radius); padding:1rem 1.25rem; font-size:.9rem; color:var(--amber-dark); display:flex; gap:10px; align-items:flex-start; }
.u-style-138 { flex-shrink:0; font-size:1rem; }
.u-style-139 { margin:0; }
.u-style-140 { color:var(--text-muted); font-size:.9rem; }
.u-style-141 { color:var(--text-muted); font-size:.9rem; margin-bottom:0.5rem; }
.u-style-142 { background:var(--sky-light); border:1px solid rgba(37,137,200,.22); border-radius:var(--radius-lg); padding:1.25rem 1.5rem; font-size:.875rem; color:var(--ocean-deep); display:flex; gap:12px; align-items:flex-start; box-shadow:0 10px 24px rgba(15,76,107,.06); }
.u-style-143 { width:32px; height:32px; border-radius:50%; background:var(--white); display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.u-style-144 { color:var(--text); }
.u-style-145 { display:block; width:100%; height:60px; }
.u-style-146 { color:var(--ocean-deep); }
.u-style-147 { text-align:center; margin-top:1.75rem; color:var(--text-muted); font-size:.875rem; }
.u-style-148 { padding:clamp(2.5rem,6vw,4rem) 0; }
.u-style-149 { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:1.5rem; margin-top:2rem; }
.u-style-150 { background:var(--white); border:1.5px solid var(--sand-dark); border-radius:var(--radius-xl); overflow:hidden; }
.u-style-151 { background:#f3f4f6; border-bottom:1px solid var(--sand-dark); height:28px; display:flex; align-items:center; padding:0 10px; gap:5px; }
.u-style-152 { width:8px; height:8px; border-radius:50%; background:#EF4444; display:inline-block; }
.u-style-153 { width:8px; height:8px; border-radius:50%; background:#F59E0B; display:inline-block; }
.u-style-154 { width:8px; height:8px; border-radius:50%; background:#22C55E; display:inline-block; }
.u-style-155 { flex:1; height:14px; background:#d1d5db; border-radius:20px; margin:0 8px; }
.u-style-156 { font-size:10px; color:#9ca3af; }
.u-style-157 { height:280px; overflow:hidden; position:relative; }
.u-style-158 { width:250%; height:900px; transform:scale(0.40); transform-origin:top left; border:none; pointer-events:none; }
.u-style-159 { padding:1.25rem 1.5rem; }
.u-style-160 { display:flex; gap:6px; margin-bottom:10px; }
.u-style-161 { font-size:.72rem; padding:3px 10px; border-radius:100px; background:var(--sky-light); color:var(--ocean-deep); font-weight:700; }
.u-style-162 { font-size:1.05rem; font-weight:800; color:var(--ocean-deep); margin:0 0 .4rem; }
.u-style-163 { font-size:.875rem; color:var(--text-muted); line-height:1.6; margin:0 0 1rem; }
.u-style-164 { display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--sand-dark); padding-top:1rem; }
.u-style-165 { font-size:.78rem; color:var(--text-muted); }
.u-style-166 { font-size:.83rem; padding:.5rem 1.1rem; }
.u-style-167 { color:rgba(255,255,255,.45); font-size:.82rem; margin-bottom:.85rem; }
.u-style-168 { color:rgba(255,255,255,.3); font-size:.78rem; margin-top:.65rem; }
.u-style-169 { color:#fbbf24; }
.u-style-170 { color:#78350f; }
.u-style-171 { font-size:.82rem; color:#a8a29e; margin-top:1rem; border-top:1px solid #f0eeea; padding-top:.75rem; }
.u-style-172 { background:#22c55e; }
.u-style-173 { background:#f59e0b; }
.u-style-174 { background:#ef4444; }
.u-style-175 { border:none; border-top:1px solid #f0eeea; margin:1rem 0; }
.u-style-176 { font-size:.88rem; color:#78350f; margin:0 0 .6rem; }
.u-style-177 { display:flex; gap:.5rem; margin-bottom:1rem; position:relative; }
.u-style-178 { flex:1; padding:.55rem .85rem; border-radius:10px; border:2px solid #e7e5e0; font-size:.95rem; }
.u-style-179 { padding:.55rem 1.1rem; border-radius:10px; background:#1c1917; color:white; border:none; font-size:.9rem; cursor:pointer; }
.u-style-180 { display:none; position:absolute; top:42px; left:0; right:90px; background:white; border:2px solid #e7e5e0; border-radius:10px; z-index:10; overflow:hidden; box-shadow:0 4px 12px rgba(0,0,0,.08); }
.u-style-190 { padding:.55rem .85rem; font-size:.9rem; cursor:pointer; color:#1c1917; display:flex; justify-content:space-between; align-items:center; border-bottom:1px solid #f0eeea; }
.u-style-191 { font-size:.8rem; color:#78350f; }
.u-style-192 { font-size:.9rem; color:#78350f; }
.u-style-193 { color:#b91c1c; }
