/* FalconSend — feuille de style du site public */
@font-face {
  font-family: "Sora";
  src: url("../fonts/sora.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --navy: #0b2a55;
  --navy-900: #061a38;
  --navy-700: #123b72;
  --ink: #0b2a55;
  --ink-2: #44566f;
  --teal: #0e9aa7;
  --teal-600: #0b8793;
  --teal-700: #08707a;
  --teal-50: #e6f6f7;
  --teal-100: #c9eef1;
  --amber: #f4a62a;
  --amber-50: #fff5e3;
  --wa: #0f7a43;
  --wa-700: #0b6336;
  --bg: #ffffff;
  --bg-alt: #f3f7fa;
  --line: #dbe4ec;
  --danger: #b42318;
  --danger-50: #fdecea;
  --ok: #117a4b;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 1px 2px rgba(11, 42, 85, .06), 0 8px 24px rgba(11, 42, 85, .08);
  --shadow-lg: 0 24px 60px rgba(6, 26, 56, .22);
  --font-h: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --gutter: 20px;
  --hdr-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--hdr-h) + 12px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.6 var(--font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-700); text-underline-offset: 3px; }
a:hover { color: var(--navy); }
h1, h2, h3 { font-family: var(--font-h); color: var(--navy); line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); font-weight: 700; }
h3, .h3 { font-size: 1.13rem; font-weight: 650; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 6px; }
.ic { width: 1.25em; height: 1.25em; flex: none; }
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--gutter); }
.center { text-align: center; }
.muted { color: var(--ink-2); }
.mt { margin-top: 48px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip:focus { top: 12px; }
main:focus { outline: none; }

/* ------------------------------------------------------------ Boutons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 52px; padding: 0 22px; border-radius: 14px; border: 2px solid transparent;
  background: var(--teal-700); color: #fff; font-family: var(--font-h); font-weight: 600; font-size: 1rem;
  text-decoration: none; cursor: pointer; transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 6px 16px rgba(8, 112, 122, .25);
}
.btn:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }
.btn-sm { white-space: nowrap; min-height: 42px; padding: 0 16px; font-size: .92rem; box-shadow: none; border-radius: 12px; }
.btn-wa { background: var(--wa); box-shadow: 0 6px 16px rgba(15, 122, 67, .25); }
.btn-wa:hover { background: var(--wa-700); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); box-shadow: none; }
.btn-ghost:hover { background: var(--bg-alt); color: var(--navy); }
.btn-block { width: 100%; }
.ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.ctas-center { justify-content: center; }
.cta-note { display: flex; align-items: center; gap: .45em; margin: 14px 0 0; font-size: .93rem; color: var(--ink-2); }
.cta-note .ic { color: var(--teal); width: 1.1em; height: 1.1em; }

/* ------------------------------------------------------------ En-tête */
.hdr { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .94); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.hdr-in { display: flex; align-items: center; gap: 16px; min-height: var(--hdr-h); }
.brand { flex: none; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand img { width: 60px; height: 40px; object-fit: contain; }
.wordmark { font-family: var(--font-h); font-weight: 700; font-size: 1.42rem; letter-spacing: -.03em; line-height: 1; color: var(--navy); }
.wordmark span + span { color: var(--teal-600); }
.brand-light .wordmark { color: #fff; }
.brand-light .wordmark span + span { color: #3fd0db; }
.menu-btn { display: none; align-items: center; gap: 8px; min-height: 44px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--navy); font-weight: 600; cursor: pointer; }
.nav { display: flex; align-items: center; gap: 14px; }
.nav ul { display: flex; list-style: none; gap: 2px; }
.nav ul a { display: block; white-space: nowrap; padding: 8px 7px; border-radius: 10px; color: var(--navy); text-decoration: none; font-weight: 550; font-size: .94rem; }
.nav ul a:hover { background: var(--bg-alt); }
.nav ul a[aria-current="page"] { color: var(--teal-700); background: var(--teal-50); }
@media (min-width: 1241px) { .nav-faq { display: none; } }
.nav-side { display: flex; align-items: center; gap: 10px; }
.lang { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; font-size: .92rem; color: var(--ink-2); }
.lang a { padding: 6px 7px; border-radius: 8px; color: var(--ink-2); text-decoration: none; }
.lang a[aria-current="true"] { color: var(--navy); background: var(--bg-alt); }

@media (max-width: 1240px) {
  .menu-btn { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%; display: none; flex-direction: column; align-items: stretch; gap: 12px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 20px; box-shadow: var(--shadow);
    max-height: calc(100vh - var(--hdr-h)); overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav ul { flex-direction: column; }
  .nav ul a { padding: 12px 12px; font-size: 1.05rem; }
  .nav-side { justify-content: space-between; padding-top: 8px; border-top: 1px solid var(--line); }
  .no-js .nav { position: static; display: flex; box-shadow: none; }
}

/* ------------------------------------------------------------ Sections */
.sec { padding: 80px 0; }
.sec-tight { padding: 48px 0 80px; }
.sec-alt { background: var(--bg-alt); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.sec-head h2 { margin: 0; }
.sec-lead { color: var(--ink-2); max-width: 60ch; margin: 8px 0 0; }
.more { display: inline-flex; align-items: center; gap: .4em; font-weight: 600; text-decoration: none; color: var(--teal-700); }
.more .ic { width: 1.05em; transition: transform .15s; }
.more:hover .ic { transform: translateX(3px); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 14px; font: 600 .82rem/1.2 var(--font-h); letter-spacing: .08em; text-transform: uppercase; color: var(--teal-700); }
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--amber); }
.lead { font-size: 1.14rem; color: var(--ink-2); max-width: 62ch; }

.page-head { padding: 56px 0 40px; background: linear-gradient(180deg, var(--bg-alt), #fff); border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(2rem, 4.4vw, 3rem); max-width: 22ch; }
.page-head .lead { margin: 0; }

/* ------------------------------------------------------------ Accueil */
.hero { position: relative; overflow: hidden; padding: 56px 0 72px; background:
  radial-gradient(900px 420px at 88% 10%, rgba(14, 154, 167, .12), transparent 60%),
  radial-gradient(700px 380px at 0% 100%, rgba(244, 166, 42, .08), transparent 60%), #fff; }
.hero-in { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { max-width: 14ch; }
.hero .lead { margin-bottom: 28px; }
.hero-vis { position: relative; }
.hero-emblem {
  position: relative; aspect-ratio: 5 / 4; border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(60% 60% at 50% 42%, #1c5a9c 0%, #0b2a55 55%, #061a38 100%);
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
}
.hero-emblem img { width: 82%; filter: drop-shadow(0 0 28px rgba(120, 200, 255, .35)); position: relative; z-index: 1; }
.speed { position: absolute; height: 4px; border-radius: 4px; background: linear-gradient(90deg, transparent, var(--amber)); opacity: .9; }
.speed.s1 { width: 30%; left: 4%; top: 72%; }
.speed.s2 { width: 22%; left: 10%; top: 78%; background: linear-gradient(90deg, transparent, #3fd0db); }
.speed.s3 { width: 16%; left: 2%; top: 84%; }
.hero-photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-photo img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.hero-photo figcaption { position: absolute; right: 12px; top: 12px; background: rgba(6, 26, 56, .7); color: #fff; font-size: .8rem; padding: 4px 10px; border-radius: 99px; }
.track-card {
  position: absolute; left: -28px; bottom: -32px; z-index: 2; width: min(300px, 80%);
  background: #fff; border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.track-h { display: flex; align-items: center; gap: 8px; margin: 0 0 10px; font: 600 .92rem var(--font-h); color: var(--navy); }
.track-h .ic { color: var(--teal); }
.track-h span { margin-left: auto; font-size: .78rem; color: var(--ink-2); font-weight: 500; letter-spacing: .04em; }
.track-card ol { list-style: none; display: grid; gap: 8px; }
.track-card li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--ink-2); position: relative; }
.track-card li .ic { width: 26px; height: 26px; padding: 5px; border-radius: 50%; background: var(--bg-alt); color: var(--ink-2); }
.track-card li.done { color: var(--navy); }
.track-card li.done .ic { background: var(--teal-50); color: var(--teal-700); }
.track-card li.now { color: var(--navy); font-weight: 600; }
.track-card li.now .ic { background: var(--amber); color: var(--navy); }

.intro { padding: 72px 0 48px; }
.intro-in { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.intro-in .lead { margin: 0; }

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 1px 2px rgba(11, 42, 85, .04); }
.card p { color: var(--ink-2); margin: 0; }
.card-ic { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--teal-50); color: var(--teal-700); margin-bottom: 16px; }
.card-ic .ic { width: 26px; height: 26px; }

.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; position: relative; }
.steps li { position: relative; padding: 22px 22px 24px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.steps li p { color: var(--ink-2); margin: 0; font-size: .97rem; }
.step-n { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--navy); color: #fff; font: 700 1.05rem var(--font-h); margin-bottom: 14px; }
.steps li:not(:last-child)::after { content: ""; position: absolute; top: 42px; right: -21px; width: 22px; height: 3px; background: var(--amber); border-radius: 3px; }

.zones-home { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.zone-chips { list-style: none; display: grid; gap: 12px; }
.zone-chip { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; }
.zc-name { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.zc-name .ic { color: var(--teal); }
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 99px; font-size: .82rem; font-weight: 600; white-space: nowrap; }
.badge .ic { width: 1em; height: 1em; }
.badge-ok { background: var(--teal-50); color: var(--teal-700); }
.badge-req { background: var(--amber-50); color: #8a5300; }

.commits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.commit { padding: 8px 4px; }
.commit-ic { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: #fff; margin-bottom: 16px; box-shadow: 0 0 0 6px var(--teal-50); }
.commit-ic .ic { width: 24px; height: 24px; }
.commit p { color: var(--ink-2); margin: 0; }

.cta-band { background: var(--navy); color: #cfe0f2; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -80px; top: -60px; width: 420px; height: 280px; background: url("../img/embleme-640.png") center / contain no-repeat; opacity: .08; }
.cta-band-in { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 56px var(--gutter); flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { margin: 0; max-width: 52ch; }
.ctas-light .btn { box-shadow: none; }
.ctas-light .btn:not(.btn-wa) { background: #fff; color: var(--navy); }
.ctas-light .btn:not(.btn-wa):hover { background: var(--teal-50); }

/* ------------------------------------------------------------ Galerie */
.gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gal figure { margin: 0; position: relative; border-radius: 14px; overflow: hidden; background: var(--bg-alt); }
.gal img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .3s; }
.gal figcaption { padding: 10px 12px; font-size: .9rem; color: var(--ink-2); background: #fff; }
.gal-item { display: block; text-decoration: none; border-radius: 14px; }
.gal-item:hover img { transform: scale(1.03); }
.gal-item[hidden] { display: none; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip { min-height: 40px; padding: 0 16px; border-radius: 99px; border: 1px solid var(--line); background: #fff; color: var(--navy); font-weight: 600; cursor: pointer; }
.chip[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(1100px, 94vw); max-height: 92vh; }
.lightbox::backdrop { background: rgba(6, 26, 56, .88); }
.lightbox img { max-height: 80vh; width: auto; margin: 0 auto; border-radius: 12px; }
.lb-cap { color: #fff; text-align: center; margin: 12px 0 0; }
.lb-close { position: fixed; top: 16px; right: 16px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: #fff; color: var(--navy); display: grid; place-items: center; cursor: pointer; }
.empty { text-align: center; padding: 56px 20px; border: 2px dashed var(--line); border-radius: var(--radius); color: var(--ink-2); }
.empty .ic { width: 40px; height: 40px; margin: 0 auto 10px; color: var(--teal); }

/* ------------------------------------------------------------ Pages intérieures */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.prose { max-width: 68ch; }
.prose h2 { font-size: 1.5rem; margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2em; margin-bottom: 1em; }
.prose li { margin-bottom: .35em; }
.narrow { max-width: 760px; }
.emblem-panel, .photo-frame { border-radius: var(--radius-lg); overflow: hidden; margin: 0; }
.emblem-panel { background: radial-gradient(60% 60% at 50% 42%, #1c5a9c 0%, #0b2a55 60%, #061a38 100%); padding: 48px 32px; box-shadow: var(--shadow); }
.photo-frame img { width: 100%; }
.photo-frame figcaption { padding: 10px 2px; font-size: .9rem; color: var(--ink-2); }
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trio-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.trio-item h2 { font-size: 1.25rem; }
.trio-item p, .trio-item li { color: var(--ink-2); }
.trio-item ul { padding-left: 1.1em; }
.trio-item :last-child { margin-bottom: 0; }
.method h2 { margin-bottom: 24px; }
.checklist ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; background: var(--bg-alt); border-radius: 14px; padding: 16px 18px; font-weight: 500; }
.checklist li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: var(--teal-700) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E") center / 14px no-repeat; }

.flow { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; }
.flow li { display: flex; gap: 20px; position: relative; }
.flow li:not(:last-child)::before { display: none; content: ""; position: absolute; left: 27px; top: 58px; bottom: 6px; width: 2px; background: repeating-linear-gradient(var(--teal-100) 0 6px, transparent 6px 12px); }
.flow-ic { flex: none; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--navy); color: #fff; }
.flow-ic .ic { width: 26px; height: 26px; }
.flow h3 { margin: 6px 0 4px; }
.flow p { color: var(--ink-2); margin: 0; }

.notice { display: flex; gap: 20px; align-items: flex-start; background: var(--teal-50); border: 1px solid var(--teal-100); border-radius: var(--radius); padding: 28px; }
.notice h2 { font-size: 1.3rem; margin-bottom: 6px; }
.notice p { color: var(--ink-2); }
.notice-ic { flex: none; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: #fff; color: var(--teal-700); }
.notice-ic .ic { width: 26px; height: 26px; }
.notice-warn { background: var(--amber-50); border-color: #f7dcaa; }
.notice-warn .notice-ic { color: #a86400; }
.official { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; }
.official a { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: #fff; border-radius: 12px; font-weight: 700; color: var(--navy); text-decoration: none; border: 1px solid #f0d49c; }
.official .ic { color: var(--wa); }

.two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.panel h2 { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; }
.panel h2 .ic { width: 32px; height: 32px; padding: 6px; border-radius: 50%; }
.ic-ok { background: var(--teal-50); color: var(--teal-700); }
.ic-no { background: var(--danger-50); color: var(--danger); }
.list-ok, .list-no { list-style: none; display: grid; gap: 10px; }
.list-ok li, .list-no li { position: relative; padding-left: 26px; color: var(--ink-2); }
.list-ok li::before, .list-no li::before { position: absolute; left: 0; top: 0; font-weight: 800; }
.list-ok li::before { content: "✓"; color: var(--teal-700); }
.list-no li::before { content: "✕"; color: var(--danger); }

.zone-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; margin-top: 16px; }
.zone-list li { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; }
.zl-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.zl-head h3 { display: flex; align-items: center; gap: 8px; margin: 0; }
.zl-head h3 .ic { color: var(--teal); }
.zone-list p { margin: 10px 0 0; color: var(--ink-2); font-size: .95rem; }

/* ------------------------------------------------------------ Contact */
.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: start; }
.channels { display: grid; gap: 12px; margin-bottom: 24px; }
.channel { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 16px; border: 1px solid var(--line); background: #fff; text-decoration: none; color: var(--navy); transition: border-color .15s, box-shadow .15s; }
.channel:hover { border-color: var(--teal); box-shadow: var(--shadow); color: var(--navy); }
.channel strong { display: block; font-size: .85rem; color: var(--ink-2); font-weight: 600; }
.ch-val { font: 650 1.08rem var(--font-h); letter-spacing: -.01em; word-break: break-word; }
.ch-ic { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--teal-50); color: var(--teal-700); }
.channel-wa .ch-ic { background: #e3f5ea; color: var(--wa); }
.ch-go { margin-left: auto; color: var(--ink-2); }
.infos { display: grid; gap: 14px; margin: 0; }
.infos dt { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.infos dt .ic { color: var(--teal); }
.infos dd { margin: 4px 0 0 30px; color: var(--ink-2); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.f-row { margin-bottom: 18px; }
.f-row label { display: block; font-weight: 600; margin-bottom: 6px; }
.opt { font-weight: 400; color: var(--ink-2); }
input[type=text], input[type=tel], input[type=email], input[type=password], select, textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border: 1.5px solid #c4d1dd; border-radius: 12px; background: #fff;
  color: var(--navy); font: inherit; font-size: 16px; transition: border-color .15s, box-shadow .15s;
}
textarea { resize: vertical; min-height: 110px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(14, 154, 167, .18); }
[aria-invalid="true"] { border-color: var(--danger) !important; }
.f-err { color: var(--danger); font-size: .9rem; margin: 6px 0 0; font-weight: 600; }
.f-check { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; }
.f-check input { width: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--teal-700); }
.f-check label { font-weight: 400; font-size: .95rem; color: var(--ink-2); margin: 0; }
.f-check .f-err { grid-column: 2; }
.f-note { font-size: .88rem; color: var(--ink-2); }
.f-summary { border: 2px solid var(--danger); background: var(--danger-50); border-radius: 14px; padding: 14px 18px; margin-bottom: 20px; }
.f-summary p { margin: 0 0 6px; color: var(--danger); }
.f-summary ul { padding-left: 1.2em; }
.f-summary a { color: var(--danger); }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.thanks { text-align: center; }
.thanks-in { max-width: 680px; }
.thanks-in .lead { margin: 0 auto 12px; }
.thanks-ic { display: inline-grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; background: var(--teal-50); color: var(--teal-700); margin-bottom: 20px; }
.thanks-ic .ic { width: 38px; height: 38px; }
.ref { display: inline-block; font: 700 1.6rem var(--font-h); letter-spacing: .06em; color: var(--navy); background: var(--bg-alt); border: 2px dashed var(--teal); border-radius: 14px; padding: 12px 24px; margin: 8px 0 28px; }
.big404 { font: 800 5rem var(--font-h); color: var(--teal-100); margin: 0; line-height: 1; }

/* FAQ */
.faq { max-width: 820px; display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 56px 18px 20px; font: 600 1.05rem var(--font-h); color: var(--navy); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 20px; top: 50%; width: 12px; height: 12px; border-right: 2.5px solid var(--teal-700); border-bottom: 2.5px solid var(--teal-700); transform: translateY(-70%) rotate(45deg); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-a { padding: 0 20px 18px; color: var(--ink-2); }
.faq-a p:last-child { margin: 0; }

.kv { display: grid; gap: 0; margin: 0 0 1em; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.kv div { display: grid; grid-template-columns: 220px 1fr; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.kv div:last-child { border-bottom: 0; }
.kv dt { font-weight: 600; }
.kv dd { margin: 0; color: var(--ink-2); }

/* ------------------------------------------------------------ Pied de page */
.ftr { background: var(--navy-900); color: #b9c9dc; padding: 64px 0 28px; font-size: .95rem; }
.ftr a { color: #dbe7f3; text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; }
.ftr-tag { color: #3fd0db; font-weight: 600; margin: 14px 0 8px; }
.ftr-h { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: #8fa6c0; margin-bottom: 14px; }
.ftr-links { list-style: none; display: grid; gap: 8px; }
.ftr-contact a, .ftr-row { display: flex; gap: 10px; align-items: flex-start; }
.ftr-contact .ic { margin-top: 2px; color: #3fd0db; }
.ftr-contact small { display: block; color: #8fa6c0; font-size: .82rem; }
.ftr-bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 40px; padding-top: 20px; font-size: .86rem; color: #8fa6c0; }
.ftr-bottom p { margin: 0 0 6px; }
.ftr-notice { max-width: 90ch; }

/* ------------------------------------------------------------ Contact rapide */
.sticky { display: none; }
.fab-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; background: var(--wa); color: #fff; box-shadow: 0 10px 28px rgba(15, 122, 67, .4);
  transition: transform .15s;
}
.fab-wa:hover { transform: scale(1.06); color: #fff; }
.fab-wa .ic { width: 30px; height: 30px; }

@media (max-width: 900px) {
  :root { --gutter: 16px; --hdr-h: 64px; }
  body { font-size: 16px; padding-bottom: 72px; }
  .sec { padding: 56px 0; }
  .hero { padding: 32px 0 64px; }
  .hero-in, .intro-in, .zones-home, .split, .contact, .two { grid-template-columns: 1fr; gap: 32px; }
  .hero-vis { max-width: 520px; margin-right: 12px; }
  .hero-emblem { aspect-ratio: 4 / 3; align-items: start; padding-top: 6%; }
  .hero-emblem img { width: 74%; }
  .track-card { left: auto; right: -12px; bottom: -44px; width: 240px; padding: 12px 14px; }
  .hero { padding-bottom: 80px; }
  .track-card li { font-size: .82rem; }
  .steps { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: 1fr; gap: 0; }
  .flow li { padding-bottom: 28px; }
  .flow li:not(:last-child)::before { display: block; }
  .steps li::after { display: none; }
  .commits, .trio { grid-template-columns: 1fr 1fr; }
  .gal { grid-template-columns: 1fr 1fr; }
  .checklist ul { grid-template-columns: 1fr; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .ftr-brand { grid-column: 1 / -1; }
  .fab-wa { display: none; }
  .sticky {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: grid; grid-template-columns: repeat(3, 1fr);
    background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(11, 42, 85, .1);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom)); gap: 8px;
  }
  .sticky a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-height: 54px; border-radius: 12px; text-decoration: none; font: 600 .8rem var(--font-h); color: var(--navy); background: var(--bg-alt); }
  .sticky .ic { width: 22px; height: 22px; }
  .sticky .sticky-wa { background: var(--wa); color: #fff; }
  .sticky .sticky-req { background: var(--teal-700); color: #fff; }
  .form-card { padding: 22px; border-radius: var(--radius); }
  .kv div { grid-template-columns: 1fr; gap: 2px; }
}
@media (max-width: 560px) {
  .steps, .commits, .trio { grid-template-columns: 1fr; }
  .ctas .btn { flex: 1 1 100%; }
  .notice { flex-direction: column; padding: 22px; }
  .ftr-grid { grid-template-columns: 1fr; }
  .gal-home { grid-template-columns: 1fr 1fr; }
  .wordmark { font-size: 1.25rem; }
  .brand img { width: 51px; height: 34px; }
  .menu-btn span { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
@media print {
  .hdr, .sticky, .fab-wa, .cta-band, .ftr { display: none; }
}

/* =====================================================================
   Présentation v2 (maquette validée le 26/09/2026)
   ===================================================================== */
:root { --teal-btn: #0b7f89; --sky: #f3f7fb; --sky-2: #e8f1f8; --orange: #ef8a1f; }

/* En-tête */
.hdr { background: #fff; backdrop-filter: none; }
.hdr-in { gap: 20px; }
.brand { margin-right: 0; }
.nav { flex: 1; justify-content: center; }
.nav ul { gap: 6px; }
.nav ul a { position: relative; padding: 8px 10px; font-weight: 500; font-size: .93rem; background: none !important; }
.nav ul a:hover { color: var(--teal-btn); }
.nav ul a[aria-current="page"] { color: var(--teal-btn); font-weight: 600; }
.nav ul a[aria-current="page"]::after { content: ""; position: absolute; left: 10px; right: 10px; bottom: 0; height: 2px; border-radius: 2px; background: var(--teal-btn); }
.nav-wa { display: none; }
.hdr-side { display: flex; align-items: center; gap: 14px; }
.menu-btn { border: 0; padding: 0 6px; background: none; }
.menu-btn .ic { width: 28px; height: 28px; }
@media (min-width: 1241px) { .nav-extra { display: none; } }
@media (max-width: 1240px) {
  .hdr-wa { display: none; }
  .hdr-side { margin-left: auto; }
  .nav { justify-content: flex-start; }
  .nav-wa { display: inline-flex; margin-top: 4px; }
  .nav ul a[aria-current="page"]::after { display: none; }
}

/* Boutons */
.btn-navy { background: var(--navy); box-shadow: 0 8px 20px rgba(11, 42, 85, .22); }
.btn-navy:hover { background: #123b72; }
.btn-navy .ic:last-child { width: 1.1em; }
.btn-teal { background: var(--teal-btn); box-shadow: none; }
.btn-teal:hover { background: var(--navy); }
.btn-outline { background: #fff; color: var(--teal-btn); border-color: var(--teal-btn); box-shadow: none; }
.btn-outline:hover { background: var(--teal-50); color: var(--teal-btn); }
.btn-outline .ic { color: var(--teal-btn); }

/* Bannière */
.hero2 { position: relative; background: var(--sky); overflow: hidden; }
.hero2-media { position: absolute; top: 0; right: 0; bottom: 0; width: 56%; }
.hero2-media img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 30%; }
.hero2-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--sky) 0%, rgba(243, 247, 251, .85) 12%, rgba(243, 247, 251, 0) 38%); }
.hero2-in { position: relative; z-index: 1; min-height: 480px; display: flex; align-items: center; }
.hero2-txt { max-width: 580px; padding: 56px 0 60px; }
.hero2 h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); margin-bottom: 18px; }
.hero2 h1 .accent { color: var(--teal-btn); }
.hero2 .lead { font-size: 1.15rem; color: #34475f; margin-bottom: 28px; max-width: 34em; }
.trust { list-style: none; display: flex; flex-wrap: wrap; gap: 18px 34px; margin-top: 34px; }
.trust li { display: flex; align-items: center; gap: 12px; font-size: .95rem; line-height: 1.3; color: #34475f; max-width: 15em; }
.trust .ic { width: 30px; height: 30px; color: var(--navy); }
.trust li:first-child span, .trust li:nth-child(2) span { max-width: 7.5em; }

/* Blocs */
.blk { padding: 56px 0; }
.blk-alt { background: var(--sky); }
.blk h2 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); margin-bottom: 6px; }
.blk-lead { color: var(--ink-2); margin: 0 0 26px; }

.svc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card { position: relative; display: flex; align-items: flex-start; gap: 18px; padding: 24px 44px 30px 22px; background: #fff; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; color: var(--navy); box-shadow: 0 2px 10px rgba(11, 42, 85, .05); transition: border-color .15s, box-shadow .15s, transform .15s; }
.svc-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-2px); color: var(--navy); }
.svc-ic { flex: none; display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--teal-50); color: var(--teal-btn); }
.svc-ic .ic { width: 30px; height: 30px; }
.svc-ic-box { background: #fdeede; color: var(--orange); }
.svc-txt strong { display: block; font: 650 1.05rem var(--font-h); margin: 8px 0 6px; letter-spacing: -.01em; }
.svc-txt span { display: block; color: var(--ink-2); font-size: .93rem; line-height: 1.5; }
.svc-go { position: absolute; right: 18px; bottom: 16px; width: 18px; height: 18px; color: var(--navy); }

.flow4 { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.flow4 li { position: relative; }
.flow4 li:not(:last-child)::after { content: ""; position: absolute; right: -24px; top: 24px; width: 18px; height: 18px; background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2344566f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E"); }
.f4-top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.f4-n { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff; font: 700 1rem var(--font-h); }
.f4-ic { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--sky-2); color: var(--navy); }
.f4-ic .ic { width: 26px; height: 26px; }
.flow4 h3 { font-size: 1.02rem; margin: 0 0 4px; }
.flow4 p { color: var(--ink-2); font-size: .93rem; margin: 0; }

.blk-pics { padding-top: 44px; }
.pics-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 18px; margin-bottom: 18px; }
.pics-head h2 { margin: 0; }
.pics-head p { margin: 0; color: var(--ink-2); font-size: .95rem; }
.pics-head .more { margin-left: auto; font-size: .95rem; }
.pics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pics figure { margin: 0; border-radius: 10px; overflow: hidden; background: var(--sky-2); }
.pics img { width: 100%; aspect-ratio: 2 / 1.05; object-fit: cover; }

/* Pied de page */
.ftr { background: var(--navy); color: #c3d3e6; padding: 0 0 22px; }
.ftr-top { display: flex; align-items: center; gap: 24px 36px; flex-wrap: wrap; padding: 26px var(--gutter); border-bottom: 1px solid rgba(255, 255, 255, .12); }
.ftr-nav { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 26px; margin: 0 auto; }
.ftr-nav a { font-size: .92rem; font-weight: 500; }
.ftr-slogan { margin: 0; padding-left: 26px; border-left: 1px solid rgba(255, 255, 255, .25); font-size: .92rem; color: #fff; }
.ftr-mid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 30px; padding-top: 22px; padding-bottom: 6px; }
.ftr-contact { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.ftr-contact a, .ftr-row { display: flex; align-items: center; gap: 8px; font-size: .92rem; }
.ftr-contact .ic { margin: 0; color: #3fd0db; }
.ftr-contact small { display: inline; color: #8fa6c0; font-size: .8rem; }
.ftr-more { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: .88rem; }
.ftr-bottom { border-top: 0; margin-top: 10px; padding-top: 8px; font-size: .82rem; color: #8fa6c0; }

/* Contact rapide : bouton WhatsApp flottant sur tous les écrans */
@media (max-width: 900px) {
  body { padding-bottom: 0; }
  .fab-wa { display: grid; right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .hero2 { display: flex; flex-direction: column; }
  .hero2-in { order: 1; min-height: 0; }
  .hero2-txt { padding: 28px 0 26px; max-width: none; }
  .hero2-media { order: 2; position: relative; width: 100%; aspect-ratio: 4 / 3; }
  .hero2-media::after { background: linear-gradient(180deg, var(--sky) 0%, rgba(243, 247, 251, 0) 14%); }
  .hero2 .ctas { flex-direction: column; }
  .hero2 .ctas .btn { width: 100%; }
  .trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 22px; }
  .trust li { gap: 6px; font-size: .78rem; }
  .trust .ic { width: 22px; height: 22px; }
  .svc { grid-template-columns: 1fr; gap: 12px; }
  .flow4 { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .flow4 li::after { display: none; }
  .pics { grid-template-columns: 1fr 1fr; }
  .pics-head .more { margin-left: 0; }
  .ftr-top { flex-direction: column; align-items: flex-start; }
  .ftr-nav { margin: 0; }
  .ftr-slogan { border: 0; padding: 0; }
  .ftr-mid { flex-direction: column; }
}
@media (max-width: 480px) {
  .flow4 { grid-template-columns: 1fr; }
  .hdr-side { gap: 10px; }
}
@media (min-width: 1241px) {
  .hdr-in { gap: 16px; }
  .nav ul { gap: 0; }
  .nav ul a { padding: 8px 9px; font-size: .9rem; }
  .nav ul a[aria-current="page"]::after { left: 9px; right: 9px; }
  .hdr-side { gap: 12px; }
  .hdr-wa { min-height: 40px; padding: 0 14px; font-size: .85rem; }
  .brand img { width: 57px; height: 38px; }
  .wordmark { font-size: 1.32rem; }
}
@media (min-width: 1241px) {
  .nav ul a { padding: 8px 7px; font-size: .87rem; }
  .nav ul a[aria-current="page"]::after { left: 7px; right: 7px; }
  .hdr-wa { padding: 0 12px; }
  .lang a { padding: 6px 5px; }
}
@media (min-width: 901px) {
  .hero2-txt { max-width: 640px; }
  .hero2 h1 { font-size: clamp(2.1rem, 3.7vw, 2.95rem); }
  .hero2 .ctas { flex-wrap: nowrap; }
  .hero2 .ctas .btn { padding: 0 20px; }
  .trust { flex-wrap: nowrap; gap: 26px; }
  .trust li:nth-child(3) span { max-width: 11em; }
  .ftr-top { flex-wrap: nowrap; gap: 28px; }
  .ftr-nav { flex-wrap: nowrap; gap: 20px; }
  .ftr-nav a { font-size: .88rem; white-space: nowrap; }
  .ftr-slogan { white-space: nowrap; font-size: .88rem; padding-left: 22px; }
}
