:root {
  --bg: #06090e;
  --bg-soft: #09101f;
  --surface: #0f172a;
  --surface-2: #131e36;
  --border: rgba(255,255,255,.10);
  --border-blue: rgba(56,189,248,.28);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --blue: #0284c7;
  --blue-light: #38bdf8;
  --blue-dark: #0369a1;
  --green: #4d9220;
  --danger: #f87171;
  --success: #86efac;
  --radius: 20px;
  --shadow: 0 22px 70px rgba(0,0,0,.30);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 5%, rgba(2,132,199,.18), transparent 34rem),
    radial-gradient(circle at 18% 48%, rgba(56,189,248,.08), transparent 28rem),
    radial-gradient(circle at 85% 78%, rgba(77,146,32,.07), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  z-index: 999;
  background: #fff;
  color: #111827;
  padding: .75rem 1rem;
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.section { padding: 4.75rem 0; scroll-margin-top: 6rem; }
.section-tight { padding: 3.25rem 0; }
.kicker {
  display: inline-block;
  color: var(--blue-light);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .45rem;
}
.section-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.section-intro {
  max-width: 760px;
  margin: .9rem auto 0;
  color: #cbd5e1;
  font-size: 1.05rem;
}
.center { text-align: center; }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,9,14,.90);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  min-width: 0;
}
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 11px;
  background: rgba(255,255,255,.95);
  padding: 4px;
  box-shadow: 0 0 0 1px rgba(56,189,248,.22), 0 7px 24px rgba(2,132,199,.16);
}
.brand-copy { min-width: 0; }
.brand-name {
  display: block;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #fff;
}
.brand-name strong { color: var(--blue-light); }
.brand-tagline {
  display: block;
  color: var(--muted);
  font-size: .68rem;
  margin-top: .22rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.main-nav a {
  text-decoration: none;
  color: #cbd5e1;
  font-weight: 700;
  font-size: .92rem;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--blue-light); }
.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(2,132,199,.25);
}
.header-call:hover { background: var(--blue-dark); }
.menu-button { display: none; }

.hero { padding: 2rem 0 1.5rem; }
.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: clamp(2.4rem, 7vw, 5.5rem) 1.5rem;
  background:
    linear-gradient(180deg, rgba(15,23,42,.70), rgba(6,9,14,.95)),
    radial-gradient(circle at 50% 0%, rgba(56,189,248,.25), transparent 45%);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  opacity: .55;
}
.hero-card::before {
  width: 310px;
  height: 310px;
  right: -100px;
  top: -130px;
  border: 1px solid rgba(56,189,248,.18);
  box-shadow: 0 0 80px rgba(2,132,199,.12) inset;
}
.hero-card::after {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: -120px;
  border: 1px solid rgba(77,146,32,.18);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  border: 1px solid var(--border-blue);
  background: rgba(2,132,199,.12);
  color: var(--blue-light);
  font-size: .78rem;
  font-weight: 800;
}
.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 12px rgba(56,189,248,.85);
}
.hero h1 {
  max-width: 850px;
  margin: 1rem auto .9rem;
  font-size: clamp(2.25rem, 7vw, 4.65rem);
  line-height: 1.01;
  letter-spacing: -.055em;
  color: #fff;
}
.hero h1 .accent { color: var(--blue-light); }
.hero-lead {
  max-width: 760px;
  margin: 0 auto;
  color: #cbd5e1;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
}
.hero-facts {
  max-width: 650px;
  margin: 1.6rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(15,23,42,.64);
}
.fact {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .8rem;
  text-align: center;
}
.fact + .fact { border-left: 1px solid var(--border); }
.fact strong { color: #fff; font-size: 1.12rem; line-height: 1.2; }
.fact span { color: var(--muted); font-size: .76rem; margin-top: .18rem; }
.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .78rem 1.1rem;
  border-radius: 13px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 32px rgba(2,132,199,.28); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary { background: rgba(255,255,255,.07); color: #fff; border-color: rgba(255,255,255,.16); }
.btn-secondary:hover { background: rgba(255,255,255,.11); }

.intro-card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(15,23,42,.83), rgba(9,16,31,.88));
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.5rem);
  text-align: center;
}
.intro-card h2 { margin: 0; color: #fff; font-size: clamp(1.6rem, 4vw, 2.35rem); }
.intro-card p { max-width: 820px; margin: .8rem auto 0; color: #cbd5e1; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(15,23,42,.72);
  padding: 1.25rem;
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}
.service-card {
  text-align: left;
  min-height: 245px;
  display: flex;
  flex-direction: column;
}
.service-card:hover { border-color: var(--border-blue); }
.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(2,132,199,.12);
  color: var(--blue-light);
  border: 1px solid rgba(56,189,248,.13);
}
.icon-box svg { width: 25px; height: 25px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: .85rem 0 .45rem; color: #fff; font-size: 1rem; line-height: 1.25; }
.service-card p { margin: 0; color: #aebbd0; font-size: .91rem; }

.promise-panel {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(9,16,31,.98), rgba(15,23,42,.82));
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.promise-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: .9rem;
}
.promise {
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
  padding: 1.15rem;
}
.promise strong { display: block; color: #fff; margin-bottom: .3rem; }
.promise span { color: var(--muted); font-size: .9rem; }

.price-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1rem;
  align-items: stretch;
}
.price-card {
  border: 1px solid rgba(56,189,248,.35);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(2,132,199,.14), rgba(15,23,42,.9));
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-big {
  display: block;
  color: #fff;
  font-size: clamp(3rem, 8vw, 5.4rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.06em;
}
.price-big small { font-size: .25em; letter-spacing: 0; color: #cbd5e1; font-weight: 700; }
.price-card .vat { color: var(--muted); font-size: .8rem; margin-top: .7rem; }
.price-note {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(15,23,42,.72);
  padding: 2rem;
}
.price-note h3 { margin-top: 0; color: #fff; font-size: 1.35rem; }
.price-note p { color: #cbd5e1; }
.price-note .highlight {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(77,146,32,.10);
  border: 1px solid rgba(134,239,172,.16);
  color: #d1fae5;
  font-weight: 700;
}

.zone-card {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(15,23,42,.72);
}
.zone-visual {
  min-height: 340px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(56,189,248,.22) 0 4%, transparent 4.5%),
    repeating-radial-gradient(circle at center, rgba(56,189,248,.13) 0 1px, transparent 1px 64px),
    linear-gradient(145deg, rgba(2,132,199,.10), rgba(6,9,14,.8));
  overflow: hidden;
}
.zone-center {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 0 12px rgba(2,132,199,.08), 0 0 60px rgba(56,189,248,.25);
  z-index: 2;
}
.zone-dot {
  position: absolute;
  padding: .38rem .62rem;
  border-radius: 999px;
  border: 1px solid var(--border-blue);
  background: rgba(6,9,14,.8);
  color: #dbeafe;
  font-size: .72rem;
  font-weight: 800;
}
.zone-dot.a { top: 20%; left: 17%; }
.zone-dot.b { top: 18%; right: 17%; }
.zone-dot.c { bottom: 18%; left: 15%; }
.zone-dot.d { bottom: 19%; right: 15%; }
.zone-copy { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.zone-copy h3 { margin: 0; color: #fff; font-size: 1.45rem; }
.zone-copy p { color: #cbd5e1; }
.city-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.city-list span { padding: .4rem .65rem; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid var(--border); color: #cbd5e1; font-size: .82rem; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.step { position: relative; text-align: left; }
.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  margin-bottom: .8rem;
}
.step h3 { color: #fff; margin: 0 0 .35rem; }
.step p { margin: 0; color: var(--muted); }

.faq-list { max-width: 880px; margin: 2rem auto 0; display: grid; gap: .75rem; }
details.faq {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(15,23,42,.74);
  overflow: hidden;
}
details.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 3rem 1.1rem 1.2rem;
  position: relative;
  color: #fff;
  font-weight: 850;
  text-align: left;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.45rem;
  color: var(--blue-light);
}
details.faq[open] summary::after { content: "–"; }
.faq-answer { padding: 0 1.2rem 1.15rem; color: #cbd5e1; text-align: left; }

.contact-panel {
  border-radius: 28px;
  border: 1px solid rgba(56,189,248,.34);
  background: linear-gradient(180deg, rgba(11,27,54,.96), rgba(7,17,36,.96));
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 5vw, 3rem);
}
.contact-top { display: grid; grid-template-columns: .85fr 1.15fr; gap: 1.5rem; align-items: start; }
.contact-direct {
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem;
  background: rgba(255,255,255,.035);
}
.contact-direct h3 { color: #fff; margin-top: 0; }
.contact-link {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.08rem;
  margin: .45rem 0;
  overflow-wrap: anywhere;
}
.contact-link:hover { color: var(--blue-light); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.field { text-align: left; }
.field.full { grid-column: 1/-1; }
.field label { display: block; color: #dbeafe; font-size: .82rem; font-weight: 800; margin-bottom: .38rem; }
.field input, .field select, .field textarea {
  width: 100%;
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(148,163,184,.30);
  border-radius: 12px;
  padding: .82rem .9rem;
  outline: none;
}
.field textarea { min-height: 135px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(56,189,248,.12); }
.field select option { color: #111827; background: #fff; }
.form-help { color: var(--muted); font-size: .78rem; margin: .8rem 0 0; }
.form-help a { color: #cbd5e1; }
.form-status { margin-top: 1rem; padding: .85rem 1rem; border-radius: 12px; text-align: left; display: none; }
.form-status.success { display: block; color: #dcfce7; background: rgba(22,101,52,.22); border: 1px solid rgba(134,239,172,.28); }
.form-status.error { display: block; color: #fee2e2; background: rgba(127,29,29,.25); border: 1px solid rgba(248,113,113,.28); }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; white-space: nowrap !important; }

.legal-hero { padding: 3rem 0 1.5rem; }
.legal-hero .hero-card { padding: 3rem 1.5rem; }
.legal-wrap { display: grid; gap: 1rem; padding-bottom: 4rem; }
.legal-section {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(15,23,42,.72);
  padding: clamp(1.25rem, 4vw, 2rem);
}
.legal-section h2 { color: #fff; margin: 0 0 .8rem; font-size: 1.45rem; }
.legal-section h3 { color: #e0f2fe; margin: 1.3rem 0 .45rem; font-size: 1.05rem; }
.legal-section p, .legal-section li { color: #cbd5e1; }
.legal-section a { color: var(--blue-light); }
.legal-section ul { padding-left: 1.3rem; }
.legal-table { display: grid; grid-template-columns: 200px 1fr; gap: .45rem 1rem; }
.legal-table dt { color: var(--muted); font-weight: 700; }
.legal-table dd { margin: 0; color: #fff; }
.notice {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(251,191,36,.28);
  background: rgba(120,53,15,.16);
  color: #fde68a;
}
.withdrawal-template {
  white-space: pre-line;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--border);
  color: #cbd5e1;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(4,7,17,.90);
  padding: 2.5rem 0 6rem;
}
.footer-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: .75rem; }
.footer-brand img { width: 46px; height: 46px; object-fit: contain; border-radius: 10px; background: #fff; padding: 3px; }
.footer-brand strong { color: #fff; }
.footer-copy { color: var(--muted); font-size: .88rem; margin-top: .8rem; max-width: 460px; }
.footer-col h2 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--blue-light); margin: 0 0 .7rem; }
.footer-col a, .footer-col span { display: block; color: #cbd5e1; text-decoration: none; font-size: .88rem; margin: .35rem 0; overflow-wrap: anywhere; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 1.8rem; padding-top: 1.2rem; border-top: 1px solid var(--border); color: #64748b; font-size: .78rem; text-align: center; }

.mobile-cta {
  display: none;
  position: fixed;
  z-index: 95;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .6rem;
  padding-bottom: calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(6,9,14,.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  gap: .55rem;
}
.mobile-cta .btn { flex: 1; min-width: 0; font-size: .83rem; padding-inline: .6rem; }

:focus-visible { outline: 3px solid rgba(56,189,248,.65); outline-offset: 3px; }

@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .promise-grid { grid-template-columns: repeat(2,1fr); }
  .main-nav { display: none; position: absolute; top: 76px; left: 1rem; right: 1rem; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: .5rem; border: 1px solid var(--border); border-radius: 16px; background: rgba(6,9,14,.98); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .85rem 1rem; border-radius: 10px; }
  .main-nav a:hover { background: rgba(255,255,255,.05); }
  .menu-button {
    margin-left: auto;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.05);
    color: #fff;
  }
  .menu-button svg { width: 22px; height: 22px; stroke: currentColor; }
  .header-call { display: none; }
  .price-layout, .zone-card, .contact-top { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 1rem, 1120px); }
  .section { padding: 3.5rem 0; }
  .header-inner { min-height: 68px; }
  .brand-logo { width: 44px; height: 44px; }
  .brand-name { font-size: 1rem; }
  .brand-tagline { font-size: .59rem; }
  .main-nav { top: 68px; }
  .hero { padding-top: 1rem; }
  .hero-card { border-radius: 22px; padding-inline: 1rem; }
  .hero h1 { font-size: clamp(2.05rem, 11vw, 3.1rem); }
  .hero-facts { grid-template-columns: 1fr; }
  .fact + .fact { border-left: 0; border-top: 1px solid var(--border); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .service-grid, .promise-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .service-card { min-height: auto; }
  .zone-visual { min-height: 300px; }
  .zone-dot { font-size: .66rem; }
  .legal-table { grid-template-columns: 1fr; }
  .legal-table dt { margin-top: .6rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  .site-footer { padding-bottom: 6.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* -------------------------------------------------------------------------
   Direction visuelle issue de la maquette OrdiClinique89
   ------------------------------------------------------------------------- */
:root {
  --tech-blue: #38bdf8;
  --tech-blue-deep: #0284c7;
  --tech-surface: #0a0f1d;
  --tech-card: #0f172a;
  --tech-panel: #09101f;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(56,189,248,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 76%);
}

.site-header {
  background: rgba(6,9,14,.95);
  box-shadow: 0 10px 35px rgba(0,0,0,.18);
}

.brand-logo {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(56,189,248,.22);
  box-shadow: 0 0 18px rgba(2,132,199,.18);
}

.brand-tagline,
.kicker,
.footer-col h2 {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.header-call,
.btn-primary {
  box-shadow: 0 10px 30px rgba(2,132,199,.32), 0 0 0 1px rgba(56,189,248,.08) inset;
}

.hero {
  padding-top: 2.4rem;
}

.hero-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(6,9,14,.76), rgba(6,9,14,.93)),
    radial-gradient(circle at 50% 22%, rgba(2,132,199,.32), transparent 31rem),
    radial-gradient(circle at 20% 75%, rgba(56,189,248,.09), transparent 22rem),
    #06090e;
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 28px 80px rgba(0,0,0,.42), 0 0 55px rgba(2,132,199,.07);
}

.hero-card::before {
  width: 520px;
  height: 520px;
  right: 50%;
  top: -365px;
  transform: translateX(50%);
  border: 1px solid rgba(56,189,248,.14);
  box-shadow: 0 0 110px rgba(2,132,199,.13) inset;
}

.hero-card::after {
  width: 390px;
  height: 390px;
  left: -180px;
  bottom: -260px;
  border-color: rgba(56,189,248,.12);
}

.hero-badge {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  letter-spacing: .035em;
  background: rgba(2,132,199,.14);
  box-shadow: 0 0 22px rgba(2,132,199,.08) inset;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1em;
  min-height: 2.2em;
}

.typewriter-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.18em;
  color: var(--tech-blue);
  text-shadow: 0 0 12px rgba(56,189,248,.72), 0 0 30px rgba(2,132,199,.38);
  animation: oc89Glow 2.8s ease-in-out infinite;
}

.typewriter-text {
  display: inline-block;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: .95em;
  margin-left: .12em;
  background: var(--tech-blue);
  border-radius: 2px;
  vertical-align: -.08em;
  box-shadow: 0 0 10px rgba(56,189,248,.9);
  animation: oc89Caret .82s step-end infinite;
}

.hero-title-static {
  display: block;
  color: #fff;
}

@keyframes oc89Caret {
  0%, 46% { opacity: 1; }
  47%, 100% { opacity: 0; }
}

@keyframes oc89Glow {
  0%,100% { filter: brightness(1.05); text-shadow: 0 0 12px rgba(56,189,248,.72), 0 0 30px rgba(2,132,199,.38); }
  50% { filter: brightness(.93); text-shadow: 0 0 5px rgba(56,189,248,.4), 0 0 14px rgba(2,132,199,.18); }
}

.hero-facts {
  background: rgba(15,23,42,.62);
  backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,.11);
  box-shadow: 0 16px 45px rgba(0,0,0,.18);
}

.fact strong {
  font-weight: 900;
}

.hero-actions .btn-primary {
  animation: oc89ButtonPulse 3.2s ease-in-out infinite;
}

@keyframes oc89ButtonPulse {
  0%,100% { box-shadow: 0 12px 32px rgba(2,132,199,.28), 0 0 0 rgba(56,189,248,0); }
  50% { box-shadow: 0 14px 38px rgba(2,132,199,.36), 0 0 24px rgba(56,189,248,.16); }
}

.intro-card,
.promise-panel,
.contact-panel,
.legal-section {
  background: linear-gradient(180deg, rgba(15,23,42,.92), rgba(9,16,31,.96));
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.service-grid {
  gap: 1.15rem;
}

.card,
.promise,
.step,
.faq,
.contact-direct,
.price-note {
  background: rgba(15,23,42,.62);
  border-color: rgba(255,255,255,.07);
}

.service-card {
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -25% -60% 15%;
  height: 130px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(56,189,248,.09), transparent 66%);
}

.service-card:hover {
  transform: translateY(-4px);
  background: rgba(15,23,42,.86);
  border-color: rgba(56,189,248,.32);
  box-shadow: 0 18px 42px rgba(0,0,0,.23), 0 0 24px rgba(2,132,199,.07);
}

.icon-box {
  border: 1px solid rgba(56,189,248,.12);
  box-shadow: 0 0 20px rgba(2,132,199,.06) inset;
}

.promise-panel {
  border: 1px solid rgba(255,255,255,.10);
}

.price-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(19,30,54,.98), rgba(8,20,40,.98));
  border-color: rgba(56,189,248,.32);
  box-shadow: 0 20px 55px rgba(0,0,0,.25), 0 0 28px rgba(2,132,199,.08);
}

.price-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -100px;
  top: -130px;
  background: rgba(56,189,248,.08);
  filter: blur(4px);
}

.price-big {
  color: #fff;
  text-shadow: 0 0 22px rgba(56,189,248,.2);
}

.zone-card {
  border-color: rgba(56,189,248,.16);
  box-shadow: 0 20px 55px rgba(0,0,0,.24);
}

.zone-visual {
  background:
    radial-gradient(circle at center, rgba(2,132,199,.32), rgba(9,16,31,.92) 42%),
    linear-gradient(rgba(56,189,248,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,.035) 1px, transparent 1px),
    #09101f;
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.zone-center {
  box-shadow: 0 0 0 13px rgba(2,132,199,.10), 0 0 45px rgba(56,189,248,.30);
}

.contact-panel {
  border-color: rgba(56,189,248,.30);
  background:
    linear-gradient(180deg, rgba(11,27,54,.98), rgba(7,17,36,.99)),
    radial-gradient(circle at 50% 0%, rgba(56,189,248,.12), transparent 50%);
  box-shadow: 0 28px 75px rgba(0,0,0,.34), 0 0 34px rgba(2,132,199,.06);
}

.field input,
.field select,
.field textarea {
  background: rgba(255,255,255,.065);
  border-color: rgba(56,189,248,.22);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  background: rgba(255,255,255,.09);
}

.site-footer {
  background: #040711;
  border-top-color: rgba(255,255,255,.10);
}

.mobile-cta {
  background: rgba(6,9,14,.96);
  backdrop-filter: blur(14px);
  border-top-color: rgba(255,255,255,.14);
}

@media (max-width: 640px) {
  .hero-card {
    min-height: 0;
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
  .hero-title {
    min-height: 2.75em;
  }
  .typewriter-line {
    min-height: 1.3em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .typewriter-line,
  .typewriter-cursor,
  .hero-actions .btn-primary {
    animation: none !important;
  }
}

/* -------------------------------------------------------------------------
   Ajustements demandés après revue
   ------------------------------------------------------------------------- */
.hero-card {
  background:
    linear-gradient(180deg, rgba(6,9,14,.60), rgba(6,9,14,.84) 45%, rgba(6,9,14,.95) 100%),
    radial-gradient(circle at 50% 16%, rgba(2,132,199,.26), transparent 28rem),
    radial-gradient(circle at 20% 75%, rgba(56,189,248,.08), transparent 20rem),
    url('/assets/img/hero-illustration.png') center center / cover no-repeat,
    #06090e;
}

.hero-card::before {
  opacity: .42;
}

#services .section-intro,
#tarifs .center,
#contact .center {
  margin-bottom: 1.25rem;
}

.service-card {
  background: rgba(19,30,54,.84);
  border-color: rgba(56,189,248,.14);
  box-shadow: 0 16px 38px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.02);
}

.service-card h3 {
  margin: .95rem 0 .55rem;
  font-size: 1.08rem;
}

.service-card p {
  color: #d5deeb;
  font-size: .96rem;
  line-height: 1.68;
}

.zone-visual {
  min-height: 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(2,132,199,.18), rgba(9,16,31,.94) 44%),
    linear-gradient(rgba(56,189,248,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,.035) 1px, transparent 1px),
    #09101f;
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.zone-map-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 620;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(56,189,248,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  background: rgba(9,16,31,.88);
}

.zone-copy h3 {
  margin-bottom: .8rem;
}

.zone-copy p {
  margin-top: 0;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  #services .section-intro,
  #tarifs .center,
  #contact .center {
    margin-bottom: 1rem;
  }

  .zone-visual {
    padding: .8rem;
  }
}
