/* ==========================================================
   A.T.I.A.M. — Feuille de style principale
   Site institutionnel premium responsive
   ========================================================== */

/* =========================
   Variables globales
   ========================= */

:root {
    --cyan: #00aac3;
    --cyan-dark: #087f92;
    --cyan-soft: #e7fbff;

    --navy: #0f2a3a;
    --navy-2: #14394d;
    --navy-dark: #071722;

    --ink: #1e293b;
    --muted: #64748b;
    --muted-light: #94a3b8;

    --line: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
    --gold: #d7a84f;

    --shadow: 0 24px 70px rgba(15, 42, 58, .12);
    --shadow-soft: 0 14px 40px rgba(15, 42, 58, .08);
    --shadow-hover: 0 28px 80px rgba(15, 42, 58, .16);

    --radius: 24px;
    --radius-sm: 16px;
    --radius-lg: 34px;

    --container: 1180px;
}

/* =========================
   Reset / base
   ========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 0%, rgba(0, 170, 195, .08), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(15, 42, 58, .07), transparent 32%);
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

::selection {
    background: rgba(0, 170, 195, .22);
}

/* =========================
   Helpers
   ========================= */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 999;
    background: var(--navy);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 800;
}

.skip-link:focus {
    top: 20px;
}

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

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mt-24 {
    margin-top: 24px;
}

.mini-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .14);
    margin: 26px 0;
}

/* =========================
   Header / navigation premium
   ========================= */

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, .95);
    transition: box-shadow .25s ease, background .25s ease;
}

.topbar.is-scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 14px 45px rgba(15, 42, 58, .09);
}

.nav-shell {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 245px;
    flex-shrink: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan-soft), var(--white));
    color: var(--cyan);
    box-shadow:
        inset 0 0 0 1px rgba(0, 170, 195, .16),
        0 10px 25px rgba(0, 170, 195, .08);
}

.brand-mark svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.brand-text strong {
    display: block;
    font-size: 1.35rem;
    letter-spacing: -.04em;
    color: var(--navy);
    line-height: 1;
}

.brand-text small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .62rem;
}

.desktop-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 8px;
    color: #475569;
    font-weight: 800;
    font-size: .86rem;
    border-radius: 999px;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--cyan-dark);
    background: var(--cyan-soft);
}

.nav-highlight::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 5px rgba(0, 170, 195, .12);
}

.nav-link.is-active,
.dropdown a.is-active,
.mobile-nav a.is-active {
    background: var(--cyan-soft);
    color: var(--cyan-dark);
}

.chevron {
    font-size: 0;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: .45;
    margin-left: 3px;
}

/* Dropdown */

.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 290px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    scrollbar-width: thin;
}

.nav-item:nth-last-child(-n+3) .dropdown {
    left: auto;
    right: 0;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dropdown a {
    display: block;
    padding: 11px 12px;
    border-radius: 12px;
    color: #475569;
    font-weight: 750;
    font-size: .92rem;
    line-height: 1.35;
    white-space: normal;
}

.dropdown a:hover {
    background: var(--cyan-soft);
    color: var(--cyan-dark);
}

/* Mobile nav */

.mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 16px;
    padding: 12px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    background: var(--white);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav-inner {
    padding: 14px 0 22px;
}

.mobile-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 800;
    color: #475569;
}

.mobile-nav a:hover {
    background: var(--cyan-soft);
    color: var(--cyan-dark);
}

.mobile-sub {
    display: grid;
    gap: 2px;
    margin: 2px 0 10px 12px;
    padding-left: 12px;
    border-left: 2px solid var(--cyan-soft);
}

.mobile-sub a {
    padding: 9px 12px;
    font-weight: 650;
    font-size: .93rem;
    color: var(--muted);
}

.mobile-cta {
    background: var(--cyan);
    color: var(--white) !important;
    text-align: center;
    margin-top: 8px;
}

/* =========================
   Boutons
   ========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    min-height: 48px;
    padding: 0 22px;
    font-weight: 850;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: var(--white);
    box-shadow: 0 16px 34px rgba(0, 170, 195, .27);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
}

.btn-outline-light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .06);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, .12);
}

.btn-sm {
    min-height: 40px;
    padding-inline: 17px;
    font-size: .88rem;
}

/* =========================
   Hero accueil
   ========================= */

.hero-home {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(115deg, rgba(15, 42, 58, .96), rgba(15, 42, 58, .82)),
        radial-gradient(circle at 80% 20%, rgba(0, 170, 195, .45), transparent 34%);
}

.hero-home::after {
    content: "";
    position: absolute;
    inset: auto -10% -35% 40%;
    height: 460px;
    background: radial-gradient(circle, rgba(0, 170, 195, .35), transparent 60%);
    filter: blur(20px);
}

.hero-home-inner {
    min-height: 720px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 58px;
    position: relative;
    z-index: 1;
    padding: 90px 0 80px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--cyan);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .78rem;
}

.hero-home .eyebrow {
    color: #73efff;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.hero-home h1,
.page-hero h1 {
    color: var(--white);
}

.hero-home h1 {
    font-size: clamp(2.55rem, 6vw, 5.5rem);
    max-width: 900px;
}

.lead {
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
    color: #dbeafe;
    max-width: 680px;
    margin: 24px 0 0;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero-card {
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
}

.hero-card h2 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.hero-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.hero-card li {
    display: flex;
    gap: 12px;
    color: #e2e8f0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 12px;
}

.hero-card li:first-child {
    border-top: 0;
    padding-top: 0;
}

.check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(0, 170, 195, .22);
    color: #73efff;
    display: grid;
    place-items: center;
    font-weight: 900;
}

/* =========================
   Hero pages intérieures
   ========================= */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 86px;
    background: linear-gradient(135deg, var(--navy), #0a1b26);
    color: var(--white);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.9rem);
}

.hero-subtitle {
    color: #cbd5e1;
    font-size: 1.22rem;
    max-width: 760px;
    margin: 22px 0 0;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: .55;
}

.hero-glow-one {
    width: 370px;
    height: 370px;
    background: rgba(0, 170, 195, .26);
    right: -80px;
    top: -130px;
}

.hero-glow-two {
    width: 260px;
    height: 260px;
    background: rgba(215, 168, 79, .18);
    left: 8%;
    bottom: -120px;
}

/* =========================
   Breadcrumb
   ========================= */

.breadcrumb {
    margin-top: 22px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: .92rem;
}

.breadcrumb a {
    color: var(--cyan-dark);
    font-weight: 800;
}

/* =========================
   Quick access / cards
   ========================= */

.quick-access {
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.quick-card,
.premium-card,
.branch-card,
.document-card,
.job-card,
.measure-card {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-soft);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.quick-card:hover,
.premium-card:hover,
.branch-card:hover,
.document-card:hover,
.job-card:hover,
.measure-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(0, 170, 195, .28);
}

.quick-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.quick-card p,
.premium-card p,
.branch-card p,
.document-card p,
.job-card p,
.measure-card p {
    color: var(--muted);
    margin: 0;
}

/* =========================
   Sections / grilles
   ========================= */

.section {
    padding: 86px 0;
}

.section-tight {
    padding: 52px 0;
}

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

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

.section-navy h2,
.section-navy h3 {
    color: var(--white);
}

.section-navy .section-head p {
    color: #cbd5e1;
}

.section-head {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-head.center {
    text-align: center;
    margin-inline: auto;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-head p {
    font-size: 1.1rem;
    color: var(--muted);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

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

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

/* =========================
   Stats
   ========================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat {
    padding: 26px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.stat strong {
    display: block;
    font-size: 2.45rem;
    line-height: 1;
    color: var(--cyan-dark);
    letter-spacing: -.06em;
}

.stat span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-weight: 750;
}

/* =========================
   Contenus
   ========================= */

.premium-card h3,
.measure-card h3 {
    font-size: 1.28rem;
    margin-bottom: 12px;
}

.measure-card a {
    color: var(--cyan-dark);
    font-weight: 900;
}

.icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--cyan-soft);
    color: var(--cyan-dark);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.icon-circle svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.content-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(26px, 4vw, 54px);
    box-shadow: var(--shadow-soft);
}

.content-panel h2 {
    font-size: 2rem;
    margin-top: 34px;
}

.content-panel h2:first-child,
.content-panel .section-kicker + h2 {
    margin-top: 0;
}

.content-panel p,
.content-panel li {
    color: #475569;
}

.content-panel ul {
    padding-left: 1.2rem;
}

.content-panel a {
    color: var(--cyan-dark);
    font-weight: 800;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(0, 170, 195, .06);
}

/* =========================
   Tableaux
   ========================= */

.content-panel table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    background: var(--white);
}

.content-panel table td,
.content-panel table th {
    border: 1px solid var(--line);
    padding: 14px;
    vertical-align: top;
}

.content-panel table th {
    background: var(--cyan-soft);
    color: var(--navy);
    font-weight: 900;
}

.content-panel table tr:nth-child(even) {
    background: #f8fafc;
}

.content-panel figcaption {
    color: var(--muted);
    font-size: .9rem;
    margin-top: 10px;
    text-align: center;
}

/* =========================
   Timeline
   ========================= */

.timeline {
    position: relative;
    display: grid;
    gap: 18px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-soft);
}

.timeline-year {
    color: var(--cyan-dark);
    font-weight: 950;
    font-size: 1.5rem;
}

/* =========================
   Antennes
   ========================= */

.branch-grid,
.antenne-premium-grid,
.home-branches-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.branch-card,
.antenne-premium-card,
.home-branch-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 245px;
    padding: 28px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, .95);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    color: var(--ink);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.branch-card::before,
.antenne-premium-card::before,
.home-branch-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
}

.branch-card:hover,
.antenne-premium-card:hover,
.home-branch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 170, 195, .45);
}

.antenne-premium-card:focus-within,
.home-branch-card:focus-within {
    outline: 3px solid rgba(0, 170, 195, .28);
    outline-offset: 4px;
}

.antenne-card-link,
.home-branch-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: var(--radius);
    text-indent: -9999px;
    overflow: hidden;
}

.antenne-card-content,
.home-branch-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    pointer-events: none;
}

.antenne-card-content a,
.home-branch-card-content a {
    pointer-events: auto;
    position: relative;
    z-index: 5;
}

.branch-icon,
.antenne-icon,
.home-branch-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--cyan-soft);
    color: var(--cyan-dark);
    display: grid;
    place-items: center;
    font-size: 21px;
    margin-bottom: 18px;
}

.branch-icon::before {
    content: "◆";
    font-size: 1.1rem;
}

.branch-card h3,
.antenne-premium-card h3,
.home-branch-card h3 {
    color: var(--navy) !important;
    font-size: 1.25rem;
    font-weight: 900;
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.antenne-sector,
.home-branch-card p,
.branch-card p {
    color: #475569 !important;
    line-height: 1.6;
    margin: 0 0 16px;
}

.branch-meta {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: #475569;
    font-size: .94rem;
}

.antenne-phone,
.home-branch-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan-dark) !important;
    font-weight: 900;
    margin: 0 0 16px;
    position: relative;
    z-index: 5;
}

.antenne-phone:hover,
.home-branch-phone:hover {
    color: var(--cyan) !important;
}

.antenne-link,
.home-branch-link,
.card-link {
    margin-top: auto;
    color: var(--cyan-dark) !important;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.antenne-premium-card:hover .antenne-link,
.home-branch-card:hover .home-branch-link,
.branch-card:hover .card-link {
    color: var(--cyan) !important;
}

/* =========================
   Infos contact / antennes
   ========================= */

.info-list {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 18px;
    background: rgba(0, 170, 195, .055);
    border: 1px solid rgba(0, 170, 195, .10);
}

.info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: var(--cyan-soft);
    color: var(--cyan-dark);
}

.info-item h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.info-item p {
    margin: 0;
}

.siege-panel-clean p {
    margin-bottom: 12px;
}

/* =========================
   Map
   ========================= */

.map-frame {
    width: 100%;
    height: 390px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    background: #e2e8f0;
}

/* =========================
   Contact
   ========================= */

.contact-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: var(--shadow);
}

.contact-card h2,
.contact-card h3 {
    color: var(--white);
}

.contact-card p {
    color: #dbeafe;
}

.contact-card a {
    color: #9cf4ff;
    font-weight: 800;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
}

/* =========================
   Formulaires
   ========================= */

.form {
    display: grid;
    gap: 16px;
}

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

.form label {
    font-weight: 850;
    color: var(--navy);
    font-size: .92rem;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    margin-top: 8px;
    border: 1px solid var(--line);
    border-radius: 15px;
    min-height: 50px;
    padding: 12px 14px;
    background: var(--white);
    outline: none;
    transition: border .2s ease, box-shadow .2s ease;
}

.form textarea {
    min-height: 160px;
    resize: vertical;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 170, 195, .12);
}

.alert {
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
}

/* =========================
   CTA
   ========================= */

.cta-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #dbeafe;
    border-radius: var(--radius-lg);
    padding: clamp(28px, 5vw, 56px);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.cta-panel::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(0, 170, 195, .22);
}

.cta-panel > * {
    position: relative;
    z-index: 1;
}

.cta-panel h2 {
    color: var(--white);
    font-size: clamp(1.9rem, 3.3vw, 3rem);
}

.cta-panel p {
    max-width: 720px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* =========================
   Documents / recrutement
   ========================= */

.document-card h3,
.job-card h3 {
    margin-bottom: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 10px;
    background: var(--cyan-soft);
    color: var(--cyan-dark);
    font-size: .78rem;
    font-weight: 900;
    margin-bottom: 12px;
}

/* =========================
   Footer
   ========================= */

.site-footer {
    background: var(--navy-dark);
    color: #cbd5e1;
    padding: 72px 0 0;
}

.site-footer h2 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 18px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr .8fr 1fr;
    gap: 44px;
}

.brand-footer .brand-text strong {
    color: var(--white);
}

.brand-footer .brand-text small {
    color: var(--muted-light);
}

.footer-brand p {
    max-width: 380px;
}

.trust-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.trust-list span {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: .82rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.site-footer a {
    color: #cbd5e1;
    transition: color .2s ease, border-color .2s ease;
}

.site-footer a:hover {
    color: var(--white);
}

.site-footer address {
    font-style: normal;
    margin-bottom: 18px;
}

.footer-bottom {
    margin-top: 58px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted-light);
    font-size: .9rem;
}

.footer-bottom nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-bottom-left p {
    margin: 0;
}

.footer-credit {
    font-size: .92rem;
    color: rgba(255, 255, 255, .72);
    margin: 0;
}

.footer-credit a {
    color: var(--white);
    font-weight: 850;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
}

.footer-credit a:hover {
    color: var(--cyan);
    border-color: var(--cyan);
}

/* =========================
   Responsive grand écran / tablette
   ========================= */

@media (max-width: 1280px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-shell {
        height: 76px;
    }

    .brand {
        min-width: auto;
    }
}

@media (max-width: 1080px) {
    .hero-home-inner,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .quick-grid,
    .stats-grid,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .branch-grid,
    .grid-3,
    .antenne-premium-grid,
    .home-branches-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .cta-panel {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Responsive mobile
   ========================= */

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .nav-shell {
        height: 72px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .brand-text strong {
        font-size: 1.25rem;
    }

    .brand-text small {
        display: none;
    }

    .hero-home-inner {
        min-height: auto;
        padding: 72px 0 110px;
    }

    .quick-access {
        margin-top: -80px;
    }

    .quick-grid,
    .stats-grid,
    .grid-3,
    .grid-4,
    .branch-grid,
    .footer-grid,
    .form-row,
    .antenne-premium-grid,
    .home-branches-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 62px 0;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .page-hero {
        padding: 82px 0 58px;
    }

    .content-panel {
        border-radius: 24px;
        padding: 26px;
    }

    .contact-card {
        border-radius: 24px;
        padding: 26px;
    }

    .map-frame {
        height: 320px;
        border-radius: 20px;
    }

    .branch-card,
    .antenne-premium-card,
    .home-branch-card {
        min-height: auto;
        padding: 22px;
        border-radius: 20px;
    }

    .antenne-card-link,
    .home-branch-card-link {
        border-radius: 20px;
    }

    .content-panel table,
    .content-panel tbody,
    .content-panel tr,
    .content-panel td,
    .content-panel th {
        display: block;
        width: 100%;
    }

    .content-panel tr {
        margin-bottom: 14px;
        border: 1px solid var(--line);
        border-radius: 16px;
        overflow: hidden;
        background: var(--white);
    }

    .content-panel td,
    .content-panel th {
        border: 0;
        border-bottom: 1px solid var(--line);
    }

    .content-panel td:last-child,
    .content-panel th:last-child {
        border-bottom: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-bottom nav {
        justify-content: center;
    }

    .footer-bottom-left {
        text-align: center;
        align-items: center;
    }
}

/* =========================
   Très petits écrans
   ========================= */

@media (max-width: 420px) {
    .hero-home h1,
    .page-hero h1 {
        font-size: 2.35rem;
    }

    .section-head h2 {
        font-size: 2rem;
    }

    .stat strong {
        font-size: 2.15rem;
    }

    .content-panel h2 {
        font-size: 1.65rem;
    }
}
/* ==========================================================
   Finalisation V1 A.T.I.A.M. — Contact téléphone uniquement
   ========================================================== */

.contact-phone-panel .phone-number {
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.04em;
    color: var(--cyan-dark);
}

.contact-phone-panel .phone-number a {
    color: var(--cyan-dark);
}

.contact-main-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

@media (max-width: 680px) {
    .contact-main-actions {
        flex-direction: column;
    }
}

/* ==========================================================
   Finalisation V2 A.T.I.A.M. — Pages institutionnelles premium
   ========================================================== */

.institutional-layout {
    display: grid;
    gap: 28px;
}

.notice-box,
.validation-box,
.resource-panel {
    border: 1px solid rgba(0, 170, 195, .18);
    background: linear-gradient(135deg, rgba(231, 251, 255, .84), rgba(255, 255, 255, .96));
    border-radius: var(--radius);
    padding: clamp(22px, 3vw, 32px);
    box-shadow: var(--shadow-soft);
}

.notice-box h3,
.validation-box h3,
.resource-panel h3 {
    margin-bottom: 10px;
}

.validation-box {
    border-color: rgba(215, 168, 79, .32);
    background: linear-gradient(135deg, rgba(255, 251, 235, .92), rgba(255, 255, 255, .96));
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.pill-list li {
    border-radius: 999px;
    padding: 9px 13px;
    background: var(--cyan-soft);
    color: var(--cyan-dark);
    font-weight: 850;
    font-size: .9rem;
}

.document-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.document-list a,
.document-list span {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    color: var(--navy);
    font-weight: 850;
}

.document-list small {
    color: var(--muted);
    font-weight: 750;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.legal-item {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #f8fafc;
}

.legal-item strong {
    display: block;
    color: var(--navy);
    margin-bottom: 5px;
}

@media (max-width: 680px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .document-list a,
    .document-list span {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================
   Finalisation V3 A.T.I.A.M. — Effet agence institutionnelle
   ========================================================== */

.premium-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(7, 23, 34, .98), rgba(15, 42, 58, .90)),
        radial-gradient(circle at 82% 18%, rgba(0, 170, 195, .42), transparent 34%),
        radial-gradient(circle at 18% 84%, rgba(215, 168, 79, .22), transparent 32%);
}

.premium-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.88), transparent 92%);
}

.premium-hero-inner {
    min-height: 760px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 58px;
    align-items: center;
    padding: 92px 0 118px;
}

.premium-hero h1 {
    color: var(--white);
    font-size: clamp(2.7rem, 6vw, 5.65rem);
    max-width: 980px;
}

.premium-hero .lead {
    color: #dbeafe;
    max-width: 760px;
}

.hero-proof-card {
    display: grid;
    gap: 18px;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .24);
    backdrop-filter: blur(18px);
}

.hero-proof-card h2,
.hero-proof-card h3 {
    color: var(--white);
}

.hero-proof-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: start;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .11);
}

.hero-proof-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(0, 170, 195, .22);
    color: #9cf4ff;
    font-size: 1.35rem;
}

.hero-proof-row p {
    margin: 7px 0 0;
    color: #dbeafe;
}

.home-trust-strip {
    margin-top: -64px;
    position: relative;
    z-index: 6;
}

.home-trust-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--line);
    box-shadow: var(--shadow);
}

.home-trust-item {
    background: var(--white);
    padding: 24px;
}

.home-trust-item strong {
    display: block;
    color: var(--navy);
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: -.04em;
}

.home-trust-item span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 750;
}

.audience-card,
.step-card,
.measure-link-card,
.resource-highlight-card,
.branch-mini-card {
    position: relative;
    overflow: hidden;
}

.audience-card::after,
.measure-link-card::after,
.resource-highlight-card::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(0, 170, 195, .09);
}

.audience-card > *,
.measure-link-card > *,
.resource-highlight-card > * {
    position: relative;
    z-index: 1;
}

.card-number {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--cyan-soft);
    color: var(--cyan-dark);
    font-weight: 950;
    margin-bottom: 18px;
}

.step-card {
    counter-increment: step;
}

.step-card::before {
    content: counter(step);
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(0, 170, 195, .25);
}

.steps-grid {
    counter-reset: step;
}

.premium-link-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.document-card-note {
    margin-top: 18px;
}

.sitemap-grid {
    align-items: start;
}

.premium-link-list a {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 16px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid var(--line);
    color: var(--navy);
    font-weight: 850;
}

.premium-link-list a:hover {
    border-color: rgba(0, 170, 195, .35);
    color: var(--cyan-dark);
}

.premium-link-list a::after {
    content: "→";
    color: var(--cyan-dark);
    font-weight: 950;
}

.branch-mini-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px;
}

.branch-mini-card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(226, 232, 240, .9);
    box-shadow: var(--shadow-soft);
    color: var(--ink);
}

.branch-mini-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.branch-mini-card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.45;
    margin: 0 0 12px;
}

.branch-mini-card a {
    color: var(--cyan-dark);
    font-weight: 900;
    font-size: .9rem;
}

.target-layout {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 28px;
    align-items: start;
}

.target-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(26px, 4vw, 50px);
    box-shadow: var(--shadow-soft);
}

.target-panel h2 {
    font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.target-panel p {
    color: #475569;
}

.target-aside-list {
    display: grid;
    gap: 16px;
}

.target-aside-item {
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(0, 170, 195, .14);
    background: rgba(231, 251, 255, .58);
}

.target-aside-item h3 {
    font-size: 1.12rem;
    margin-bottom: 8px;
}

.target-aside-item p {
    margin: 0;
    color: var(--muted);
}

.reassurance-band {
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #dbeafe;
    padding: clamp(28px, 5vw, 52px);
    box-shadow: var(--shadow);
}

.reassurance-band h2,
.reassurance-band h3 {
    color: var(--white);
}

.reassurance-band p {
    color: #dbeafe;
}

.prep-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.prep-list li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
    color: #475569;
}

.prep-list li::before {
    content: "✓";
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--cyan-soft);
    color: var(--cyan-dark);
    font-weight: 950;
}

.executive-note {
    border-left: 5px solid var(--cyan);
    background: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.executive-note p {
    margin: 0;
    color: #475569;
    font-size: 1.05rem;
}

@media (max-width: 1180px) {
    .branch-mini-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .premium-hero-inner,
    .target-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 880px) {
    .home-trust-panel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .premium-hero-inner {
        min-height: auto;
        padding: 76px 0 112px;
    }

    .home-trust-strip {
        margin-top: -72px;
    }

    .home-trust-panel,
    .branch-mini-grid {
        grid-template-columns: 1fr;
    }

    .hero-proof-row {
        grid-template-columns: 1fr;
    }

    .premium-link-list a {
        align-items: flex-start;
    }
}

/* ==========================================================
   Finalisation V4 A.T.I.A.M. — Sobriété agence premium
   Objectif : réduire l’effet trop gras, renforcer le sérieux institutionnel
   ========================================================== */

:root {
    --shadow: 0 22px 62px rgba(15, 42, 58, .10);
    --shadow-soft: 0 12px 34px rgba(15, 42, 58, .065);
    --shadow-hover: 0 24px 70px rgba(15, 42, 58, .13);
}

/* Base typographique plus élégante */
body {
    font-weight: 400;
    line-height: 1.68;
    color: #253244;
}

p,
li,
.content-panel p,
.content-panel li,
.premium-card p,
.document-card p,
.job-card p,
.measure-card p,
.branch-card p {
    font-weight: 400;
    color: #526174;
}

/* Titres moins massifs */
h1,
h2,
h3 {
    letter-spacing: -0.032em;
    font-weight: 740;
}

.hero-home h1,
.page-hero h1,
.premium-hero h1 {
    font-weight: 760;
    letter-spacing: -0.045em;
}

.premium-hero h1 {
    font-size: clamp(2.45rem, 5.3vw, 4.95rem);
    max-width: 940px;
}

.section-head h2 {
    font-weight: 720;
    letter-spacing: -0.035em;
}

.content-panel h2,
.target-panel h2,
.cta-panel h2 {
    font-weight: 720;
}

/* Sous-titres plus lisibles */
.lead,
.hero-subtitle,
.section-head p {
    font-weight: 400;
    color: #64748b;
}

.premium-hero .lead,
.hero-home .lead,
.page-hero .hero-subtitle {
    color: #d7e7f5 !important;
    font-weight: 400;
}

/* Eyebrows moins agressifs */
.eyebrow,
.section-kicker {
    font-weight: 760;
    letter-spacing: .18em;
    font-size: .72rem;
}

/* Navigation moins grasse */
.nav-link {
    font-weight: 650;
    font-size: .85rem;
}

.dropdown a {
    font-weight: 600;
}

.mobile-nav a {
    font-weight: 650;
}

.mobile-sub a {
    font-weight: 500;
}

/* Marque plus institutionnelle */
.brand-text strong {
    font-weight: 760;
    letter-spacing: -0.035em;
}

.brand-text small {
    font-weight: 650;
    letter-spacing: .13em;
}

/* Boutons moins massifs */
.btn {
    font-weight: 720;
    min-height: 46px;
    padding: 0 20px;
}

.btn-sm {
    font-weight: 700;
    min-height: 38px;
}

/* Cartes plus sobres */
.quick-card,
.premium-card,
.branch-card,
.document-card,
.job-card,
.measure-card,
.content-panel,
.target-panel,
.hero-proof-card,
.contact-card {
    box-shadow: var(--shadow-soft);
}

.quick-card:hover,
.premium-card:hover,
.branch-card:hover,
.document-card:hover,
.job-card:hover,
.measure-card:hover,
.antenne-premium-card:hover,
.home-branch-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.premium-card h3,
.document-card h3,
.job-card h3,
.measure-card h3,
.branch-card h3,
.antenne-premium-card h3,
.home-branch-card h3,
.hero-proof-card h3 {
    font-weight: 700;
    letter-spacing: -0.018em;
}

/* Hero V3 plus propre et moins tassé */
.premium-hero-inner {
    min-height: 700px;
    gap: 54px;
    padding: 84px 0 108px;
}

.hero-proof-card {
    gap: 16px;
    padding: 28px;
}

.hero-proof-card h2 {
    font-weight: 720;
}

.hero-proof-row {
    padding: 15px;
}

.hero-proof-icon {
    width: 50px;
    height: 50px;
    font-size: 1.18rem;
}

.hero-proof-row p {
    font-size: .96rem;
}

/* Bande stats plus fine */
.home-trust-item strong {
    font-weight: 760;
    font-size: 1.25rem;
}

.home-trust-item span {
    font-weight: 500;
}

/* Cartes accès rapide plus élégantes */
.icon-circle,
.branch-icon,
.antenne-icon,
.home-branch-icon {
    box-shadow: inset 0 0 0 1px rgba(0, 170, 195, .10);
}

.card-link,
.antenne-link,
.home-branch-link,
.branch-mini-card a,
.premium-link-list a,
.antenne-phone,
.home-branch-phone {
    font-weight: 720;
}

/* Badges moins “gras marketing” */
.badge {
    font-weight: 700;
    font-size: .74rem;
}

/* Listes premium */
.feature-list li {
    background: rgba(0, 170, 195, .045);
}

.check {
    font-weight: 760;
}

/* Contact plus institutionnel */
.contact-card {
    background: linear-gradient(135deg, #0f2a3a, #102f42);
}

.contact-card h2,
.contact-card h3 {
    font-weight: 720;
}

.contact-card p {
    color: #d7e7f5;
}

/* Footer plus sobre */
.site-footer h2 {
    font-weight: 700;
    letter-spacing: .06em;
}

.site-footer a,
.site-footer p,
.site-footer address {
    font-weight: 400;
}

.trust-list span {
    font-weight: 500;
}

/* Pages internes */
.target-panel h2 {
    line-height: 1.12;
}

.executive-note p {
    font-weight: 400;
}

.prep-list li {
    font-weight: 400;
}

/* Responsive : moins gros sur mobile */
@media (max-width: 680px) {
    .premium-hero h1,
    .hero-home h1,
    .page-hero h1 {
        font-size: clamp(2.15rem, 11vw, 3.15rem);
    }

    .premium-hero-inner {
        min-height: auto;
        padding: 66px 0 96px;
    }

    .section-head h2 {
        font-size: clamp(1.8rem, 9vw, 2.35rem);
    }

    .btn {
        min-height: 46px;
    }
}

/* V4 — Bouton contact navigation plus discret */
.nav-contact-btn {
    box-shadow: 0 12px 26px rgba(0, 170, 195, .20);
    padding-inline: 18px;
}

/* ==========================================================
   Finalisation V5 A.T.I.A.M. — Boutons, liens, contrastes
   Objectif : tous les boutons visibles, cohérents, premium et accessibles
   ========================================================== */

/* Base boutons : plus nette, plus institutionnelle */
.btn,
a.btn,
button.btn {
    position: relative;
    min-height: 46px;
    padding: 0 21px;
    border-radius: 999px;
    font-weight: 720;
    letter-spacing: -0.005em;
    text-decoration: none !important;
    white-space: normal;
    line-height: 1.15;
    border: 1px solid transparent;
    isolation: isolate;
}

.btn:hover,
a.btn:hover,
button.btn:hover {
    transform: translateY(-1px);
}

.btn:active,
a.btn:active,
button.btn:active {
    transform: translateY(0);
}

/* Focus visible pour le service informatique / accessibilité */
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
.mobile-toggle:focus-visible {
    outline: 3px solid rgba(0, 170, 195, .36);
    outline-offset: 4px;
}

/* Bouton principal : toujours lisible */
.btn-primary,
a.btn-primary,
button.btn-primary {
    background: linear-gradient(135deg, #00aac3, #087f92) !important;
    color: #ffffff !important;
    border-color: rgba(0, 170, 195, .25) !important;
    box-shadow: 0 14px 30px rgba(0, 170, 195, .24);
}

.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #08b8d1, #087f92) !important;
    box-shadow: 0 18px 36px rgba(0, 170, 195, .30);
}

/* Bouton secondaire : plus visible sur fond clair */
.btn-secondary,
a.btn-secondary,
button.btn-secondary {
    background: #ffffff !important;
    color: #0f2a3a !important;
    border-color: rgba(15, 42, 58, .14) !important;
    box-shadow: 0 10px 26px rgba(15, 42, 58, .08);
}

.btn-secondary:hover,
a.btn-secondary:hover,
button.btn-secondary:hover {
    color: #087f92 !important;
    border-color: rgba(0, 170, 195, .38) !important;
    background: #f8feff !important;
}

/* Bouton clair : visible sur fond sombre */
.btn-outline-light,
a.btn-outline-light,
button.btn-outline-light {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, .36) !important;
    background: rgba(255, 255, 255, .10) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.btn-outline-light:hover,
a.btn-outline-light:hover,
button.btn-outline-light:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, .17) !important;
    border-color: rgba(255, 255, 255, .52) !important;
}

/* Si un bouton outline-light se retrouve accidentellement sur fond clair */
.section-white .btn-outline-light,
.content-panel .btn-outline-light,
.target-panel .btn-outline-light,
.premium-card .btn-outline-light,
.document-card .btn-outline-light,
.job-card .btn-outline-light {
    color: #0f2a3a !important;
    background: #ffffff !important;
    border-color: rgba(15, 42, 58, .16) !important;
    box-shadow: 0 10px 24px rgba(15, 42, 58, .08);
}

.section-white .btn-outline-light:hover,
.content-panel .btn-outline-light:hover,
.target-panel .btn-outline-light:hover,
.premium-card .btn-outline-light:hover,
.document-card .btn-outline-light:hover,
.job-card .btn-outline-light:hover {
    color: #087f92 !important;
    border-color: rgba(0, 170, 195, .38) !important;
}

/* Mais dans les zones sombres, on garde le blanc */
.section-navy .btn-outline-light,
.contact-card .btn-outline-light,
.cta-panel .btn-outline-light,
.premium-hero .btn-outline-light,
.hero-home .btn-outline-light,
.page-hero .btn-outline-light {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, .38) !important;
    background: rgba(255, 255, 255, .10) !important;
}

/* Navigation */
.nav-contact-btn {
    min-height: 40px !important;
    padding-inline: 19px !important;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(0, 170, 195, .22) !important;
}

.nav-contact-btn:hover {
    color: #ffffff !important;
}

/* Liens texte dans contenus : visibles sans être agressifs */
.content-panel a:not(.btn),
.target-panel a:not(.btn),
.premium-card a:not(.btn),
.document-card a:not(.btn),
.job-card a:not(.btn),
.measure-card a:not(.btn) {
    color: #087f92;
    font-weight: 650;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.content-panel a:not(.btn):hover,
.target-panel a:not(.btn):hover,
.premium-card a:not(.btn):hover,
.document-card a:not(.btn):hover,
.job-card a:not(.btn):hover,
.measure-card a:not(.btn):hover {
    color: #00aac3;
}

/* Card links : vrais appels à l’action */
.card-link,
.antenne-link,
.home-branch-link,
.branch-mini-card a,
.premium-link-list a {
    color: #087f92 !important;
    font-weight: 720 !important;
}

.card-link:hover,
.antenne-link:hover,
.home-branch-link:hover,
.branch-mini-card a:hover,
.premium-link-list a:hover {
    color: #00aac3 !important;
}

/* Téléphones : mieux visibles */
a[href^="tel:"] {
    color: #087f92;
    font-weight: 720;
}

.contact-card a[href^="tel:"],
.section-navy a[href^="tel:"],
.cta-panel a[href^="tel:"] {
    color: #ffffff;
}

/* CTA final : meilleure lisibilité des boutons */
.cta-panel {
    gap: 30px;
}

.cta-actions {
    align-items: center;
}

.cta-actions .btn {
    min-width: 178px;
}

.cta-panel .btn-secondary {
    background: rgba(255, 255, 255, .96) !important;
    color: #0f2a3a !important;
    border-color: rgba(255, 255, 255, .65) !important;
}

.cta-panel .btn-secondary:hover {
    color: #087f92 !important;
}

/* Contact cards : éviter les boutons trop fades */
.contact-card .btn-primary {
    background: #ffffff !important;
    color: #0f2a3a !important;
    border-color: rgba(255, 255, 255, .6) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.contact-card .btn-primary:hover {
    color: #087f92 !important;
    background: #f8feff !important;
}

.contact-card .btn-outline-light {
    color: #ffffff !important;
}

/* Premium link list : plus pro */
.premium-link-list a {
    background: #ffffff;
    border-color: rgba(15, 42, 58, .11);
    box-shadow: 0 8px 22px rgba(15, 42, 58, .045);
}

.premium-link-list a:hover {
    background: #f7fdff;
    transform: translateX(2px);
}

/* Cartes antennes et téléphone */
.antenne-phone,
.home-branch-phone {
    color: #087f92 !important;
    background: rgba(231, 251, 255, .72);
    border: 1px solid rgba(0, 170, 195, .16);
    border-radius: 999px;
    padding: 8px 12px;
    width: fit-content;
}

.antenne-phone:hover,
.home-branch-phone:hover {
    color: #00aac3 !important;
    border-color: rgba(0, 170, 195, .34);
}

/* Boutons dans les pages sombres */
.section-navy .btn-secondary {
    color: #0f2a3a !important;
}

.section-navy .premium-card .btn-secondary,
.section-navy .content-panel .btn-secondary {
    color: #0f2a3a !important;
}

/* Contraste des cartes dans section navy */
.section-navy .premium-card,
.section-navy .content-panel {
    color: #253244;
}

.section-navy .premium-card p,
.section-navy .content-panel p,
.section-navy .premium-card li,
.section-navy .content-panel li {
    color: #526174;
}

/* Petits boutons */
.btn-sm,
a.btn-sm,
button.btn-sm {
    min-height: 38px;
    padding-inline: 17px;
    font-size: .86rem;
}

/* Mobile : boutons bien lisibles et pas trop énormes */
@media (max-width: 680px) {
    .btn,
    a.btn,
    button.btn {
        width: 100%;
        min-height: 48px;
        padding: 0 18px;
    }

    .cta-actions,
    .contact-actions,
    .hero-actions,
    .contact-main-actions {
        width: 100%;
    }

    .cta-actions .btn {
        min-width: 0;
    }

    .premium-link-list a {
        transform: none !important;
    }

    .antenne-phone,
    .home-branch-phone {
        width: 100%;
        justify-content: center;
    }
}

/* 
   FIN V5 A.T.I.A.M.
   ========================================================== */

/* ==========================================================
   Finalisation V6 A.T.I.A.M. — Maximum pro / accessibilité / print
   ========================================================== */

html {
    scroll-padding-top: 92px;
}

body {
    overflow-x: hidden;
}

.topbar {
    z-index: 1000;
}

.nav-link.is-active,
.mobile-nav a.is-active,
.dropdown a.is-active {
    background: rgba(231, 251, 255, .92) !important;
    color: var(--cyan-dark) !important;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 980px;
    margin-inline: auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 24px;
    font-weight: 720;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--cyan-soft);
    color: var(--cyan-dark);
    font-weight: 800;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    margin: 0;
    padding: 0 24px 24px;
    color: #526174;
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.glossary-card h3 {
    color: var(--cyan-dark);
}

.map-frame {
    min-height: 360px;
}

.content-panel,
.target-panel,
.premium-card,
.document-card,
.job-card,
.measure-card,
.branch-card,
.antenne-premium-card,
.home-branch-card {
    outline: 1px solid transparent;
}

.content-panel:hover,
.target-panel:hover {
    outline-color: rgba(0, 170, 195, .08);
}

img[loading="lazy"],
iframe[loading="lazy"] {
    content-visibility: auto;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 1080px) {
    .glossary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .faq-item summary {
        padding: 18px 18px;
        align-items: flex-start;
    }

    .faq-item p {
        padding: 0 18px 20px;
    }

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

    .topbar {
        position: sticky;
    }
}

@media print {
    .topbar,
    .site-footer,
    .cta-panel,
    .hero-actions,
    .contact-actions,
    .mobile-toggle,
    .mobile-nav,
    iframe {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
        font-size: 11pt;
    }

    body::before,
    .premium-hero::before,
    .page-hero::before {
        display: none !important;
    }

    .page-hero,
    .premium-hero,
    .hero-home,
    .section-navy {
        background: #fff !important;
        color: #000 !important;
        padding: 24px 0 !important;
    }

    .page-hero h1,
    .premium-hero h1,
    .hero-home h1,
    h1,
    h2,
    h3 {
        color: #000 !important;
    }

    .content-panel,
    .premium-card,
    .document-card,
    .job-card,
    .measure-card,
    .target-panel,
    .contact-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        break-inside: avoid;
    }

    a {
        color: #000 !important;
        text-decoration: underline !important;
    }
}

/* 
   FIN V6 A.T.I.A.M.
   ========================================================== */

/* ==========================================================
   Finalisation V7 A.T.I.A.M. — Finition institutionnelle
   ========================================================== */

.institutional-quote {
    border-radius: var(--radius-lg);
    padding: clamp(26px, 4vw, 48px);
    background:
        linear-gradient(135deg, rgba(15, 42, 58, .96), rgba(20, 57, 77, .94)),
        radial-gradient(circle at 88% 18%, rgba(0, 170, 195, .26), transparent 34%);
    color: #dbeafe;
    box-shadow: var(--shadow);
}

.institutional-quote h2,
.institutional-quote h3 {
    color: #fff !important;
}

.institutional-quote p {
    color: #dbeafe !important;
    font-size: 1.08rem;
    max-width: 860px;
}

.premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.premium-table th,
.premium-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    text-align: left;
}

.premium-table th {
    background: var(--cyan-soft);
    color: var(--navy);
    font-weight: 720;
}

.premium-table tr:last-child td {
    border-bottom: 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.value-chip {
    border-radius: 999px;
    padding: 13px 15px;
    background: #fff;
    border: 1px solid rgba(0, 170, 195, .16);
    box-shadow: 0 10px 24px rgba(15, 42, 58, .045);
    color: var(--navy);
    font-weight: 650;
    text-align: center;
}

.process-line {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    counter-reset: process;
}

.process-item {
    position: relative;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    counter-increment: process;
}

.process-item::before {
    content: counter(process);
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    background: var(--cyan-soft);
    color: var(--cyan-dark);
    font-weight: 760;
}

.process-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-item p {
    margin: 0;
    color: var(--muted);
}

.timeline-enhanced .timeline-item {
    transition: transform .22s ease, box-shadow .22s ease;
}

.timeline-enhanced .timeline-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

@media (max-width: 1080px) {
    .value-grid,
    .process-line {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .value-grid,
    .process-line {
        grid-template-columns: 1fr;
    }

    .premium-table,
    .premium-table tbody,
    .premium-table tr,
    .premium-table th,
    .premium-table td {
        display: block;
        width: 100%;
    }

    .premium-table tr {
        border-bottom: 1px solid var(--line);
    }

    .premium-table tr:last-child {
        border-bottom: 0;
    }

    .premium-table th,
    .premium-table td {
        border-bottom: 0;
    }
}

/* FIN V7 A.T.I.A.M. */

/* ==========================================================
   Finalisation V8 A.T.I.A.M. — Antennes centralisées
   ========================================================== */

.branch-detail-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: start;
}

.branch-detail-main {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(26px, 4vw, 50px);
    box-shadow: var(--shadow-soft);
}

.branch-detail-main h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px;
}

.branch-detail-intro {
    max-width: 760px;
    color: #526174;
    font-size: 1.06rem;
}

.branch-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.branch-detail-info {
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, .95);
    background: #f8fafc;
    padding: 18px;
}

.branch-detail-info span {
    display: block;
    color: var(--muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 720;
    margin-bottom: 8px;
}

.branch-detail-info strong {
    display: block;
    color: var(--navy);
    line-height: 1.35;
    font-weight: 680;
}

.branch-detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.branch-call-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.branch-call-list li {
    position: relative;
    padding-left: 28px;
    color: #dbeafe;
}

.branch-call-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #9cf4ff;
    font-weight: 800;
}

.siege-panel-clean .btn {
    margin-top: 16px;
}

@media (max-width: 980px) {
    .branch-detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .branch-detail-grid {
        grid-template-columns: 1fr;
    }

    .branch-detail-actions {
        width: 100%;
    }
}

/* FIN V8 A.T.I.A.M. */

/* ==========================================================
   Finalisation V9 A.T.I.A.M. — Stats accueil centrées premium
   ========================================================== */

.home-trust-strip {
    margin-top: -54px;
    position: relative;
    z-index: 6;
}

.home-trust-strip .container {
    display: flex;
    justify-content: center;
}

.home-trust-panel {
    width: min(100%, 1120px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(226, 232, 240, .95);
    box-shadow: 0 26px 70px rgba(15, 42, 58, .11);
    border: 1px solid rgba(255, 255, 255, .82);
}

.home-trust-item {
    min-height: 104px;
    padding: 26px 22px;
    background: rgba(255, 255, 255, .96);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.home-trust-item strong {
    display: block;
    color: var(--navy);
    font-size: clamp(1.28rem, 2.1vw, 1.72rem);
    line-height: 1;
    font-weight: 780;
    letter-spacing: -0.045em;
    text-align: center;
}

.home-trust-item span {
    display: block;
    margin: 0;
    color: #64748b;
    font-size: .92rem;
    line-height: 1.35;
    font-weight: 520;
    text-align: center;
}

.home-trust-item:first-child {
    border-radius: 30px 0 0 30px;
}

.home-trust-item:last-child {
    border-radius: 0 30px 30px 0;
}

.home-trust-item:hover {
    background: linear-gradient(180deg, #ffffff, #f7fdff);
}

@media (max-width: 880px) {
    .home-trust-panel {
        width: min(100%, 680px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 26px;
    }

    .home-trust-item:first-child,
    .home-trust-item:last-child {
        border-radius: 0;
    }
}

@media (max-width: 560px) {
    .home-trust-strip {
        margin-top: -44px;
    }

    .home-trust-panel {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .home-trust-item {
        min-height: 88px;
        padding: 22px 18px;
    }

    .home-trust-item strong {
        font-size: 1.45rem;
    }
}

/* 
   FIN V9 A.T.I.A.M.
   ========================================================== */

/* ==========================================================
   Finalisation V10 A.T.I.A.M. — 100% préproduction
   ========================================================== */

.skip-link {
    position: fixed;
    left: 18px;
    top: 18px;
    z-index: 99999;
    transform: translateY(-140%);
    background: #ffffff;
    color: #0f2a3a;
    border: 2px solid #00aac3;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 750;
    box-shadow: 0 18px 42px rgba(15, 42, 58, .22);
}

.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid rgba(0, 170, 195, .35);
    outline-offset: 3px;
}

.main-content:focus {
    outline: none;
}

a[href^="tel:"],
a[href^="mailto:"] {
    word-break: break-word;
}

.site-footer a:focus-visible,
.topbar a:focus-visible,
.dropdown a:focus-visible {
    outline: 3px solid rgba(0, 170, 195, .35);
    outline-offset: 4px;
    border-radius: 10px;
}

.document-card,
.premium-card,
.content-panel,
.target-panel,
.contact-card,
.branch-detail-main {
    backface-visibility: hidden;
}

.map-frame {
    width: 100%;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

@media (max-width: 680px) {
    .skip-link {
        left: 12px;
        top: 12px;
        max-width: calc(100% - 24px);
    }
}

/* 
   FIN V10 A.T.I.A.M.
   ========================================================== */

/* ==========================================================
   Finalisation Antennes détaillées A.T.I.A.M.
   ========================================================== */

.branch-detail-section {
    position: relative;
}

.branch-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, .8fr);
    gap: clamp(24px, 4vw, 44px);
    align-items: start;
}

.branch-info-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.branch-info-item {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(15, 42, 58, .10);
}

.branch-info-item strong {
    color: var(--color-primary, #0f2a3a);
    font-weight: 750;
}

.branch-info-item span,
.branch-info-item a {
    color: var(--color-text, #243746);
    line-height: 1.6;
}

.branch-info-item a {
    font-weight: 750;
    text-decoration: none;
}

.branch-info-item a:hover {
    text-decoration: underline;
}

.branch-reception-list {
    display: grid;
    gap: 18px;
    max-width: 980px;
    margin: 38px auto 0;
}

.branch-reception-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    padding: clamp(20px, 3vw, 28px);
    background: #ffffff;
    border: 1px solid rgba(15, 42, 58, .10);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(15, 42, 58, .07);
}

.branch-reception-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(0, 170, 195, .10);
    font-size: 1.35rem;
}

.branch-reception-card h3 {
    margin: 0 0 8px;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--color-primary, #0f2a3a);
}

.branch-reception-address {
    margin: 0;
    color: var(--color-text, #243746);
    line-height: 1.6;
}

.branch-reception-schedule {
    margin: 10px 0 0;
    font-weight: 800;
    color: var(--color-primary, #0f2a3a);
}

.branch-reception-empty {
    max-width: 780px;
    margin: 38px auto 0;
    padding: clamp(24px, 4vw, 34px);
    background: #ffffff;
    border: 1px solid rgba(15, 42, 58, .10);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(15, 42, 58, .07);
    text-align: center;
}

.branch-contact-card {
    position: sticky;
    top: 110px;
}

@media (max-width: 980px) {
    .branch-detail-grid {
        grid-template-columns: 1fr;
    }

    .branch-contact-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .branch-info-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .branch-reception-card {
        grid-template-columns: 1fr;
    }

    .branch-reception-icon {
        width: 48px;
        height: 48px;
    }
}

/* 
   FIN ANTENNES DÉTAILLÉES A.T.I.A.M.
   ========================================================== */

/* ==========================================================
   V11 Antennes premium cartes A.T.I.A.M.
   ========================================================== */

.branch-hero-premium,
.antennas-hero-premium {
    overflow: hidden;
}

.branch-hero-grid,
.antennas-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.branch-hero-card,
.antennas-hero-stats {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 32px;
    padding: clamp(24px, 4vw, 34px);
    box-shadow: 0 28px 80px rgba(15, 42, 58, .18);
    color: #102a3a;
}

.branch-hero-card-label {
    display: inline-flex;
    margin-bottom: 14px;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
    color: #007c91;
}

.branch-hero-card strong {
    display: block;
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.1;
    margin-bottom: 12px;
}

.branch-hero-card p {
    margin: 0;
    line-height: 1.65;
    color: #2b4656;
}

.branch-hero-meta {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 42, 58, .12);
}

.branch-hero-meta span {
    font-weight: 750;
    color: #102a3a;
}

.antennas-hero-stats {
    display: grid;
    gap: 18px;
}

.antennas-hero-stats div {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(15, 42, 58, .10);
}

.antennas-hero-stats div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.antennas-hero-stats strong {
    display: block;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1;
    color: #102a3a;
}

.antennas-hero-stats span {
    display: block;
    margin-top: 8px;
    color: #526a78;
    font-weight: 700;
}

.branch-premium-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
    gap: clamp(26px, 4vw, 46px);
    align-items: stretch;
}

.branch-premium-panel,
.branch-map-card {
    background: #ffffff;
    border: 1px solid rgba(15, 42, 58, .10);
    border-radius: 32px;
    padding: clamp(24px, 4vw, 36px);
    box-shadow: 0 22px 70px rgba(15, 42, 58, .08);
}

.branch-info-premium-grid {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.branch-info-premium-item {
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0, 170, 195, .07), rgba(0, 170, 195, .025));
    border: 1px solid rgba(0, 170, 195, .14);
}

.branch-info-premium-item span {
    display: block;
    margin-bottom: 6px;
    color: #607787;
    font-size: .86rem;
    font-weight: 750;
}

.branch-info-premium-item strong,
.branch-info-premium-item a {
    display: block;
    color: #102a3a;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 800;
    text-decoration: none;
}

.branch-info-premium-item a:hover {
    text-decoration: underline;
}

.branch-map-card {
    position: relative;
    overflow: hidden;
}

.branch-map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(0, 170, 195, .14), transparent 35%),
        radial-gradient(circle at bottom left, rgba(15, 42, 58, .08), transparent 40%);
    pointer-events: none;
}

.branch-map-card > * {
    position: relative;
    z-index: 1;
}

.branch-map-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.branch-map-head h2 {
    margin: 0;
}

.branch-map-head a,
.branch-map-note a {
    color: #007c91;
    font-weight: 800;
    text-decoration: none;
}

.branch-map-head a:hover,
.branch-map-note a:hover {
    text-decoration: underline;
}

.branch-map-frame,
.antenna-premium-map {
    overflow: hidden;
    border-radius: 26px;
    background: #eef6f8;
    border: 1px solid rgba(15, 42, 58, .10);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}

.branch-map-frame iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
    filter: saturate(.88) contrast(1.02);
}

.branch-map-note {
    margin: 16px 0 0;
    color: #607787;
    line-height: 1.55;
    font-size: .94rem;
}

.branch-reception-premium-list {
    counter-reset: reception;
    display: grid;
    gap: 18px;
    max-width: 980px;
    margin: 38px auto 0;
}

.branch-reception-premium-card {
    counter-increment: reception;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
    padding: clamp(22px, 3vw, 30px);
    background: #ffffff;
    border: 1px solid rgba(15, 42, 58, .10);
    border-radius: 28px;
    box-shadow: 0 20px 58px rgba(15, 42, 58, .075);
}

.branch-reception-number {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0f2a3a, #007c91);
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(15, 42, 58, .18);
}

.branch-reception-number::before {
    content: counter(reception, decimal-leading-zero);
}

.branch-reception-premium-card h3 {
    margin: 0 0 8px;
    color: #102a3a;
    font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.branch-reception-address {
    margin: 0;
    color: #465e6e;
    line-height: 1.6;
}

.branch-reception-schedule {
    margin: 10px 0 0;
    color: #102a3a;
    font-weight: 850;
}

.antennas-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 34px);
    margin-top: 42px;
}

.antenna-premium-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 42, 58, .10);
    border-radius: 34px;
    box-shadow: 0 24px 76px rgba(15, 42, 58, .085);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.antenna-premium-map {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(15, 42, 58, .10);
}

.antenna-premium-map iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: 0;
    filter: saturate(.88) contrast(1.02);
}

.antenna-premium-content {
    padding: clamp(22px, 3vw, 30px);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.antenna-premium-content h3 {
    margin: 0 0 18px;
    color: #102a3a;
    font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

.antenna-premium-lines {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.antenna-premium-lines p {
    margin: 0;
    display: grid;
    gap: 4px;
}

.antenna-premium-lines strong {
    color: #607787;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.antenna-premium-lines span,
.antenna-premium-lines a {
    color: #102a3a;
    line-height: 1.55;
    font-weight: 750;
    text-decoration: none;
}

.antenna-premium-lines a:hover {
    text-decoration: underline;
}

.antenna-premium-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 1050px) {
    .branch-hero-grid,
    .antennas-hero-grid,
    .branch-premium-layout,
    .antennas-premium-grid {
        grid-template-columns: 1fr;
    }

    .branch-map-frame iframe {
        height: 360px;
    }
}

@media (max-width: 640px) {
    .branch-hero-card,
    .antennas-hero-stats,
    .branch-premium-panel,
    .branch-map-card {
        border-radius: 26px;
    }

    .branch-map-head {
        display: block;
    }

    .branch-map-head a {
        display: inline-flex;
        margin-top: 12px;
    }

    .branch-map-frame iframe {
        height: 310px;
    }

    .antenna-premium-map iframe {
        height: 220px;
    }

    .branch-reception-premium-card {
        grid-template-columns: 1fr;
    }

    .antenna-premium-actions {
        flex-direction: column;
    }

    .antenna-premium-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* 
   FIN V11 ANTENNES PREMIUM CARTES A.T.I.M.
   ========================================================== */

/* ==========================================================
   V12 Antennes premium Google Maps A.T.I.A.M.
   ========================================================== */

.branch-luxury-page,
.antennas-luxury-page {
    background:
        radial-gradient(circle at top left, rgba(0, 170, 195, .08), transparent 34rem),
        linear-gradient(180deg, #ffffff 0%, #f7fafb 45%, #ffffff 100%);
}

.branch-luxury-page h1,
.branch-luxury-page h2,
.branch-luxury-page h3,
.antennas-luxury-page h1,
.antennas-luxury-page h2,
.antennas-luxury-page h3 {
    font-weight: 480;
    letter-spacing: -0.035em;
    color: #102a3a;
}

.branch-luxury-page p,
.branch-luxury-page span,
.branch-luxury-page small,
.branch-luxury-page em,
.antennas-luxury-page p,
.antennas-luxury-page span,
.antennas-luxury-page small {
    font-weight: 360;
}

.branch-luxury-page .btn,
.antennas-luxury-page .btn {
    font-weight: 520;
}

.branch-luxury-kicker {
    margin: 0 0 14px;
    color: #007f94;
    font-size: .76rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 520 !important;
}

.branch-luxury-hero,
.antennas-luxury-hero {
    padding: clamp(84px, 12vw, 138px) 0 clamp(54px, 8vw, 92px);
    background:
        linear-gradient(135deg, rgba(15, 42, 58, .98), rgba(18, 77, 94, .94)),
        radial-gradient(circle at 80% 20%, rgba(0, 170, 195, .35), transparent 28rem);
    color: #ffffff;
    overflow: hidden;
}

.branch-luxury-hero h1,
.antennas-luxury-hero h1 {
    max-width: 780px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    line-height: .96;
    font-weight: 430;
}

.branch-luxury-hero-text > p:last-of-type,
.antennas-luxury-hero-grid > div > p:last-child {
    max-width: 760px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.78);
    font-size: clamp(1.06rem, 2vw, 1.28rem);
    line-height: 1.75;
}

.branch-luxury-hero-grid,
.antennas-luxury-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: clamp(32px, 6vw, 84px);
    align-items: end;
}

.branch-luxury-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.branch-luxury-identity,
.antennas-luxury-hero aside {
    padding: clamp(26px, 4vw, 38px);
    border-radius: 34px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 30px 90px rgba(0,0,0,.18);
    backdrop-filter: blur(18px);
}

.branch-luxury-identity span,
.antennas-luxury-hero aside small {
    display: block;
    color: rgba(255,255,255,.62);
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.branch-luxury-identity p,
.antennas-luxury-hero aside p {
    margin: 14px 0 10px;
    color: #ffffff;
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.12;
    font-weight: 420;
}

.branch-luxury-identity small {
    display: block;
    color: rgba(255,255,255,.72);
    line-height: 1.65;
    font-size: 1rem;
}

.antennas-luxury-hero aside span {
    display: block;
    color: #ffffff;
    font-size: clamp(3rem, 8vw, 5.8rem);
    line-height: .9;
    font-weight: 360;
    letter-spacing: -.08em;
}

.branch-luxury-map-section,
.branch-luxury-info-section,
.branch-luxury-receptions-section,
.branch-luxury-final,
.antennas-luxury-list-section {
    padding: clamp(58px, 8vw, 96px) 0;
}

.branch-luxury-map-card {
    overflow: hidden;
    border-radius: 38px;
    background: #ffffff;
    border: 1px solid rgba(15,42,58,.08);
    box-shadow: 0 34px 110px rgba(15,42,58,.10);
}

.branch-luxury-map-header {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: flex-start;
    padding: clamp(28px, 4vw, 42px);
}

.branch-luxury-map-header h2,
.branch-luxury-section-title h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
}

.branch-luxury-map-header p,
.branch-luxury-section-title p {
    margin: 14px 0 0;
    color: #5b7280;
    line-height: 1.72;
}

.branch-luxury-map-header a {
    flex: 0 0 auto;
    color: #007f94;
    text-decoration: none;
    font-weight: 500;
}

.branch-luxury-map-header a:hover {
    text-decoration: underline;
}

.branch-luxury-map-frame iframe {
    display: block;
    width: 100%;
    height: clamp(360px, 52vw, 560px);
    border: 0;
    filter: saturate(.92) contrast(1.02);
}

.branch-luxury-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr);
    gap: clamp(26px, 4vw, 44px);
    align-items: stretch;
}

.branch-luxury-panel,
.branch-luxury-call-card,
.branch-luxury-final-card,
.branch-luxury-empty {
    border-radius: 34px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(15,42,58,.08);
    box-shadow: 0 28px 88px rgba(15,42,58,.075);
}

.branch-luxury-panel,
.branch-luxury-call-card,
.branch-luxury-empty {
    padding: clamp(28px, 4vw, 42px);
}

.branch-luxury-panel h2,
.branch-luxury-call-card h2,
.branch-luxury-final-card h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    line-height: 1.04;
}

.branch-luxury-lines {
    display: grid;
    gap: 0;
    margin-top: 32px;
}

.branch-luxury-lines div {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    padding: 19px 0;
    border-top: 1px solid rgba(15,42,58,.08);
}

.branch-luxury-lines span,
.antennas-luxury-details span {
    color: #7b909c;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.branch-luxury-lines p,
.antennas-luxury-details p {
    margin: 0;
    color: #183242;
    line-height: 1.65;
}

.branch-luxury-lines a,
.antennas-luxury-details a {
    color: #183242;
    text-decoration: none;
}

.branch-luxury-lines a:hover,
.antennas-luxury-details a:hover {
    text-decoration: underline;
}

.branch-luxury-call-card {
    display: flex;
    flex-direction: column;
}

.branch-luxury-call-card p:not(.branch-luxury-kicker) {
    color: #5b7280;
    line-height: 1.7;
}

.branch-luxury-call-card a {
    margin-top: auto;
    color: #102a3a;
    text-decoration: none;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.1;
    font-weight: 440;
}

.branch-luxury-call-card span {
    display: block;
    margin-top: 14px;
    color: #5b7280;
    line-height: 1.55;
}

.branch-luxury-section-title {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.branch-luxury-receptions {
    max-width: 980px;
    margin: clamp(34px, 5vw, 58px) auto 0;
    display: grid;
    gap: 14px;
}

.branch-luxury-reception {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: clamp(22px, 3vw, 32px);
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(15,42,58,.08);
    box-shadow: 0 20px 70px rgba(15,42,58,.06);
}

.branch-luxury-reception > span {
    color: #007f94;
    font-size: 1.55rem;
    line-height: 1;
    letter-spacing: -.04em;
    font-weight: 360;
}

.branch-luxury-reception h3 {
    margin: 0 0 9px;
    font-size: clamp(1.16rem, 2vw, 1.45rem);
    line-height: 1.2;
}

.branch-luxury-reception p {
    margin: 0;
    color: #5b7280;
    line-height: 1.65;
}

.branch-luxury-reception em {
    display: block;
    margin-top: 12px;
    color: #183242;
    font-style: normal;
    line-height: 1.55;
}

.branch-luxury-final-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: clamp(28px, 4vw, 44px);
    background:
        linear-gradient(135deg, rgba(15,42,58,.96), rgba(16,72,88,.94));
    color: #ffffff;
}

.branch-luxury-final-card h2 {
    color: #ffffff;
}

.branch-luxury-final-card p:not(.branch-luxury-kicker) {
    margin: 12px 0 0;
    color: rgba(255,255,255,.74);
    line-height: 1.65;
}

.antennas-luxury-list {
    display: grid;
    gap: clamp(26px, 4vw, 46px);
    margin-top: clamp(38px, 6vw, 68px);
}

.antennas-luxury-card {
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
    overflow: hidden;
    min-height: 440px;
    border-radius: 38px;
    background: #ffffff;
    border: 1px solid rgba(15,42,58,.08);
    box-shadow: 0 30px 100px rgba(15,42,58,.085);
}

.antennas-luxury-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 440px;
    border: 0;
    filter: saturate(.92) contrast(1.02);
}

.antennas-luxury-content {
    padding: clamp(30px, 5vw, 50px);
    display: flex;
    flex-direction: column;
}

.antennas-luxury-content h3 {
    margin: 0 0 28px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}

.antennas-luxury-details {
    display: grid;
    gap: 18px;
}

.antennas-luxury-details div {
    display: grid;
    gap: 6px;
}

.antennas-luxury-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 28px;
}

@media (max-width: 1050px) {
    .branch-luxury-hero-grid,
    .antennas-luxury-hero-grid,
    .branch-luxury-info-grid,
    .antennas-luxury-card {
        grid-template-columns: 1fr;
    }

    .antennas-luxury-map iframe {
        height: 360px;
        min-height: 360px;
    }
}

@media (max-width: 680px) {
    .branch-luxury-hero,
    .antennas-luxury-hero {
        padding-top: 72px;
    }

    .branch-luxury-map-header,
    .branch-luxury-final-card {
        display: block;
    }

    .branch-luxury-map-header a,
    .branch-luxury-final-card .btn {
        margin-top: 18px;
    }

    .branch-luxury-lines div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .branch-luxury-reception {
        grid-template-columns: 1fr;
    }

    .branch-luxury-actions,
    .antennas-luxury-actions {
        flex-direction: column;
    }

    .branch-luxury-actions .btn,
    .antennas-luxury-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* 
   FIN V12 ANTENNES PREMIUM GOOGLE MAPS A.T.I.A.M.
   ========================================================== */

/* ==========================================================
   V13 Antennes sobres professionnelles A.T.I.A.M.
   ========================================================== */

.branch-pro-page,
.antennas-pro-page {
    background: #f7fafb;
}

.branch-pro-page h1,
.branch-pro-page h2,
.branch-pro-page h3,
.antennas-pro-page h1,
.antennas-pro-page h2,
.antennas-pro-page h3 {
    font-weight: 520 !important;
    letter-spacing: -0.025em;
    color: #102a3a;
}

.branch-pro-page p,
.branch-pro-page span,
.branch-pro-page dd,
.branch-pro-page dt,
.antennas-pro-page p,
.antennas-pro-page span,
.antennas-pro-page dd,
.antennas-pro-page dt {
    font-weight: 400 !important;
}

.branch-pro-page .btn,
.antennas-pro-page .btn {
    font-weight: 560 !important;
}

.branch-pro-hero {
    padding: 58px 0 48px;
    background:
        linear-gradient(135deg, #103646 0%, #174f60 100%);
    color: #ffffff;
}

.branch-pro-hero .breadcrumb {
    margin-bottom: 32px;
}

.branch-pro-hero .breadcrumb,
.branch-pro-hero .breadcrumb a,
.branch-pro-hero .breadcrumb span {
    color: rgba(255,255,255,.72);
}

.branch-pro-title {
    max-width: 850px;
}

.branch-pro-title p,
.branch-pro-card-head p,
.branch-pro-section-head p,
.branch-pro-bottom-card p,
.antennas-pro-card-content > p {
    margin: 0 0 10px;
    color: #009bb2;
    font-size: .73rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 560 !important;
}

.branch-pro-title h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.05;
}

.branch-pro-title span {
    display: block;
    margin-top: 16px;
    color: rgba(255,255,255,.76);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.65;
}

.branch-pro-main,
.branch-pro-receptions-section,
.antennas-pro-list-section,
.branch-pro-bottom {
    padding: 54px 0;
}

.branch-pro-grid {
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(360px, .78fr);
    gap: 26px;
    align-items: stretch;
}

.branch-pro-card,
.branch-pro-bottom-card,
.branch-pro-empty {
    background: #ffffff;
    border: 1px solid rgba(15, 42, 58, .08);
    border-radius: 22px;
    box-shadow: 0 16px 50px rgba(15, 42, 58, .055);
}

.branch-pro-card {
    padding: 28px;
}

.branch-pro-card-head h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2.6vw, 2.15rem);
    line-height: 1.12;
}

.branch-pro-data {
    margin: 24px 0 0;
}

.branch-pro-data div {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 20px;
    padding: 14px 0;
    border-top: 1px solid rgba(15, 42, 58, .08);
}

.branch-pro-data dt {
    color: #7a8b96;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.branch-pro-data dd {
    margin: 0;
    color: #102a3a;
    line-height: 1.55;
}

.branch-pro-data a {
    color: #102a3a;
    text-decoration: none;
}

.branch-pro-data a:hover {
    text-decoration: underline;
}

.branch-pro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.branch-pro-map {
    display: flex;
    flex-direction: column;
}

.branch-pro-map-frame {
    overflow: hidden;
    margin-top: 22px;
    border-radius: 16px;
    border: 1px solid rgba(15, 42, 58, .08);
    background: #eef4f6;
}

.branch-pro-map-frame iframe {
    display: block;
    width: 100%;
    height: 330px;
    border: 0;
}

.branch-pro-map-link {
    display: inline-flex;
    margin-top: 16px;
    color: #007f94;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 520;
}

.branch-pro-map-link:hover {
    text-decoration: underline;
}

.branch-pro-section-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.branch-pro-section-head h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    line-height: 1.12;
}

.branch-pro-section-head span {
    display: block;
    margin-top: 12px;
    color: #5e707b;
    line-height: 1.65;
}

.branch-pro-receptions {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.branch-pro-reception {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 42, 58, .08);
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(15, 42, 58, .045);
}

.branch-pro-reception-index {
    color: #008fa5;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 520;
}

.branch-pro-reception h3 {
    margin: 0 0 6px;
    font-size: 1.08rem;
    line-height: 1.3;
}

.branch-pro-reception p {
    margin: 0;
    color: #657985;
    line-height: 1.5;
}

.branch-pro-reception span {
    display: block;
    margin-top: 7px;
    color: #102a3a;
    line-height: 1.45;
}

.branch-pro-bottom-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    background: #102f3e;
    color: #ffffff;
}

.branch-pro-bottom-card h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

.branch-pro-bottom-card span {
    display: block;
    margin-top: 9px;
    color: rgba(255,255,255,.72);
    line-height: 1.55;
}

.antennas-pro-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.antennas-pro-card {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 330px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 42, 58, .08);
    border-radius: 22px;
    box-shadow: 0 16px 48px rgba(15, 42, 58, .055);
}

.antennas-pro-card-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 330px;
    border: 0;
}

.antennas-pro-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.antennas-pro-card-content h3 {
    margin: 0 0 18px;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    line-height: 1.15;
}

.antennas-pro-card-content dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.antennas-pro-card-content dl div {
    display: grid;
    gap: 4px;
}

.antennas-pro-card-content dt {
    color: #7a8b96;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.antennas-pro-card-content dd {
    margin: 0;
    color: #102a3a;
    line-height: 1.45;
    font-size: .95rem;
}

.antennas-pro-card-content a {
    color: #102a3a;
    text-decoration: none;
}

.antennas-pro-card-content a:hover {
    text-decoration: underline;
}

.antennas-pro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
}

@media (max-width: 1100px) {
    .branch-pro-grid,
    .antennas-pro-card {
        grid-template-columns: 1fr;
    }

    .antennas-pro-list {
        grid-template-columns: 1fr;
    }

    .antennas-pro-card-map iframe {
        height: 260px;
        min-height: 260px;
    }
}

@media (max-width: 720px) {
    .branch-pro-hero {
        padding: 42px 0 36px;
    }

    .branch-pro-main,
    .branch-pro-receptions-section,
    .antennas-pro-list-section,
    .branch-pro-bottom {
        padding: 38px 0;
    }

    .branch-pro-card {
        padding: 22px;
        border-radius: 18px;
    }

    .branch-pro-data div {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 12px 0;
    }

    .branch-pro-map-frame iframe {
        height: 270px;
    }

    .branch-pro-reception {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .branch-pro-actions,
    .antennas-pro-actions {
        flex-direction: column;
    }

    .branch-pro-actions .btn,
    .antennas-pro-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .branch-pro-bottom-card {
        display: block;
    }

    .branch-pro-bottom-card .btn {
        margin-top: 18px;
    }
}

/* 
   FIN V13 ANTENNES SOBRES PROFESSIONNELLES A.T.I.A.M.
   ========================================================== */

/* ==========================================================
   Fix accueil mesures contraste A.T.I.A.M.
   ========================================================== */

.index-measures-contrast {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 170, 195, .09), transparent 28rem),
        linear-gradient(180deg, #f4f9fb 0%, #eef6f8 100%) !important;
    border-top: 1px solid rgba(15, 42, 58, .06);
    border-bottom: 1px solid rgba(15, 42, 58, .06);
}

.index-measures-contrast .section-head,
.index-measures-contrast .section-head.center {
    max-width: 880px;
}

.index-measures-contrast .section-head h2,
.index-measures-contrast h2 {
    color: #102a3a;
}

.index-measures-contrast .section-head p,
.index-measures-contrast > .container > p {
    color: #4f6573;
}

.index-measures-contrast .premium-card,
.index-measures-contrast .measure-card,
.index-measures-contrast .content-card,
.index-measures-contrast article {
    background: #ffffff !important;
    border: 1px solid rgba(15, 42, 58, .10) !important;
    box-shadow: 0 18px 48px rgba(15, 42, 58, .075) !important;
}

.index-measures-contrast .premium-card:hover,
.index-measures-contrast .measure-card:hover,
.index-measures-contrast .content-card:hover,
.index-measures-contrast article:hover {
    border-color: rgba(0, 170, 195, .24) !important;
    box-shadow: 0 24px 62px rgba(15, 42, 58, .105) !important;
}

.index-measures-contrast .card-link,
.index-measures-contrast a:not(.btn) {
    color: #007f94;
}

.index-measures-contrast .btn-secondary,
.index-measures-contrast .btn-outline,
.index-measures-contrast .btn-light {
    background: #ffffff !important;
    color: #102a3a !important;
    border: 1px solid rgba(15, 42, 58, .14) !important;
}

/* 
   FIN FIX ACCUEIL MESURES CONTRASTE A.T.I.A.M.
   ========================================================== */

/* ==========================================================
   V14 Menu stable A.T.I.A.M.
   ========================================================== */

.atiam-menu-stable-item {
    position: relative;
}

/* Zone invisible entre le lien et le menu déroulant :
   évite que le menu disparaisse si la souris bouge légèrement. */
.atiam-menu-stable-item::after {
    content: "";
    position: absolute;
    left: -18px;
    right: -18px;
    top: 100%;
    height: 26px;
    z-index: 20;
    pointer-events: auto;
}

.atiam-menu-stable-panel {
    z-index: 999;
    pointer-events: auto;
}

/* Ouverture pilotée par JS, plus stable que le hover pur. */
.atiam-menu-stable-item.is-open > .atiam-menu-stable-panel,
.atiam-menu-stable-item.is-open > .dropdown,
.atiam-menu-stable-item.is-open > .nav-dropdown,
.atiam-menu-stable-item.is-open > .submenu,
.atiam-menu-stable-item.is-open > .sub-menu,
.atiam-menu-stable-item.is-open > ul {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    display: block;
}

/* Amélioration douce du sous-menu si le thème utilise déjà dropdown/nav-dropdown. */
.atiam-menu-stable-panel {
    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;
}

/* Tolérance visuelle et confort de clic. */
.atiam-menu-stable-panel a {
    white-space: nowrap;
}

/* Évite que la zone invisible gêne le menu mobile. */
@media (max-width: 980px) {
    .atiam-menu-stable-item::after {
        display: none;
    }

    .atiam-menu-stable-item.is-open > .atiam-menu-stable-panel,
    .atiam-menu-stable-item.is-open > .dropdown,
    .atiam-menu-stable-item.is-open > .nav-dropdown,
    .atiam-menu-stable-item.is-open > .submenu,
    .atiam-menu-stable-item.is-open > .sub-menu,
    .atiam-menu-stable-item.is-open > ul {
        display: block !important;
    }
}

/* 
   FIN V14 MENU STABLE A.T.I.A.M.
   ========================================================== */
