/* ===== Styles extraits de index.html ===== */
:root {
      --bg: #05060a;
      --bg-alt: #0b0e16;
      --text: #f5f5f5;
      --muted: #b0b3c1;
      --accent: #3b82f6;
      --accent-soft: #1f2937;
      --border: #111827;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth; /* scroll fluide */
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #111827 0, #020617 55%);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: var(--accent);
      text-decoration: none;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: linear-gradient(to bottom, rgba(2,6,23,0.95), rgba(2,6,23,0.8));
      border-bottom: 1px solid var(--border);
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.9rem 0;
    }

    /* LOGO cliquable */
    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.9rem;
      color: var(--text);
    }

    .logo:hover {
      color: var(--text);
    }

    .logo-img {
      height: 50px;
      width: auto;
      display: block;
    }

    nav {
      position: relative;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 1.5rem;
      font-size: 0.9rem;
    }

    nav a {
      color: var(--muted);
    }

    nav a:hover {
      color: var(--text);
    }


    /* Lien de navigation actif */
    nav a.active {
      color: var(--text);
      position: relative;
    }

    nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -0.25rem;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, #3b82f6, #22c55e);
    }

    /* Lien Contact mis en avant */
    nav a.contact-link {
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.5);
      background: linear-gradient(to right, #2563eb, #3b82f6);
      color: #f9fafb;
      box-shadow: 0 8px 20px rgba(37,99,235,0.35);
    }

    nav a.contact-link:hover {
      box-shadow: 0 10px 24px rgba(37,99,235,0.45);
    }

    /* Bloc contact dans le header */
    .nav-contact {
      font-size: 0.78rem;
      color: var(--muted);
      text-align: right;
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      white-space: nowrap;
    }

    .nav-contact a {
      color: var(--muted);
    }

    .nav-contact a:hover {
      color: var(--text);
    }

    /* Bouton menu mobile */
    .nav-toggle {
      display: none;
      background: rgba(15,23,42,0.9);
      border-radius: 999px;
      border: 1px solid var(--border);
      color: var(--muted);
      padding: 0.25rem 0.7rem;
      font-size: 1.1rem;
      cursor: pointer;
    }

    .hero {
      padding: 4rem 0 3rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
      gap: 3rem;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.15rem 0.6rem;
      border-radius: 999px;
      background: rgba(15,23,42,0.8);
      border: 1px solid rgba(55,65,81,0.9);
      color: var(--muted);
      font-size: 0.7rem;
      margin-bottom: 0.9rem;
    }

    .badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #22c55e;
    }

    h1 {
      font-size: clamp(2.1rem, 4vw, 2.7rem);
      line-height: 1.15;
      margin-bottom: 0.8rem;
    }

    h1 span {
      color: var(--accent);
    }

    .hero-lead {
      color: var(--muted);
      max-width: 34rem;
      font-size: 0.98rem;
      margin-bottom: 1.3rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-bottom: 1.5rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1.2rem;
      border-radius: 999px;
      font-size: 0.9rem;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    }

    .btn-primary {
      background: linear-gradient(to right, #2563eb, #3b82f6);
      box-shadow: 0 10px 25px rgba(37,99,235,0.35);
      color: white;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 35px rgba(37,99,235,0.4);
    }

    .btn-outline {
      border-color: var(--border);
      background: rgba(15,23,42,0.9);
      color: var(--muted);
    }

    .btn-outline:hover {
      background: rgba(15,23,42,1);
      color: var(--text);
    }

    .btn-sm {
      font-size: 0.8rem;
      padding: 0.35rem 0.9rem;
    }

    .hero-meta {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .pill {
      display: inline-block;
      padding: 0.15rem 0.6rem;
      border-radius: 999px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(55,65,81,0.9);
      font-size: 0.75rem;
      color: var(--muted);
      margin-right: 0.4rem;
      margin-top: 0.2rem;
    }

    .hero-panel {
      background: radial-gradient(circle at top left, #1f2937, #020617);
      border-radius: 18px;
      border: 1px solid var(--border);
      padding: 1.2rem;
      box-shadow: 0 18px 45px rgba(0,0,0,0.55);
    }

    .hero-panel h2 {
      font-size: 0.95rem;
      margin-bottom: 0.6rem;
    }

    .hero-panel p {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 0.9rem;
    }

    .hero-panel-list {
      list-style: none;
      font-size: 0.82rem;
      color: var(--muted);
    }

    .hero-panel-list li {
      margin-bottom: 0.35rem;
    }

    .hero-panel-list li::before {
      content: "• ";
      color: var(--accent);
    }

    section {
      padding: 2.5rem 0;
    }

    /* Décalage pour les ancres (éviter scroll trop bas) */
    section,
    [id] {
      scroll-margin-top: 90px;
    }

    .section-header {
      margin-bottom: 1.6rem;
    }

    .section-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--muted);
      margin-bottom: 0.4rem;
    }

    h2 {
      font-size: 1.4rem;
      margin-bottom: 0.3rem;
    }

    .section-intro {
      font-size: 0.95rem;
      color: var(--muted);
      max-width: 40rem;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1.3rem;
    }

    .card {
      background: var(--bg-alt);
      border-radius: 14px;
      border: 1px solid var(--border);
      padding: 1.1rem;
      font-size: 0.9rem;
    }

    .card h3 {
      font-size: 1rem;
      margin-bottom: 0.3rem;
    }

    .card p {
      font-size: 0.88rem;
      color: var(--muted);
      margin-bottom: 0.5rem;
    }

    .card ul {
      list-style: none;
      font-size: 0.86rem;
      color: var(--muted);
      padding-left: 0;
    }

    .card ul li {
      margin-bottom: 0.28rem;
    }

    .card ul li::before {
      content: "– ";
      color: var(--accent);
    }

    .card-actions {
      margin-top: 0.7rem;
    }

    .highlight {
      color: var(--accent);
    }

    .two-col {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 1.8rem;
      align-items: flex-start;
    }

    .contact-box {
      background: var(--bg-alt);
      border-radius: 14px;
      border: 1px solid var(--border);
      padding: 1.1rem;
      font-size: 0.9rem;
    }

    .contact-box label {
      display: block;
      font-size: 0.78rem;
      color: var(--muted);
      margin-bottom: 0.1rem;
    }

    .contact-box input,
    .contact-box select,
    .contact-box textarea {
      width: 100%;
      background: #020617;
      border-radius: 9px;
      border: 1px solid var(--border);
      padding: 0.5rem 0.6rem;
      font-size: 0.85rem;
      color: var(--text);
      margin-bottom: 0.7rem;
    }

    .contact-box textarea {
      min-height: 110px;
      resize: vertical;
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 1.5rem 0 1.8rem;
      font-size: 0.8rem;
      color: var(--muted);
    }

    footer .footer-inner {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
    }

    .footer-links a {
      color: var(--muted);
      margin-left: 0.6rem;
      font-size: 0.8rem;
    }

    .footer-links a:hover {
      color: var(--text);
    }

    .footer-seo {
      margin-top: 0.75rem;
      font-size: 0.78rem;
      color: var(--muted);
    }

    @media (max-width: 860px) {
      .hero-grid,
      .two-col {
        grid-template-columns: 1fr;
      }

      /* Menu mobile : caché par défaut */
      nav ul {
        display: none;
        position: absolute;
        top: 56px;
        right: 0;
        background: var(--bg-alt);
        padding: 0.75rem 1rem;
        border-radius: 12px;
        border: 1px solid var(--border);
        flex-direction: column;
        gap: 0.75rem;
        min-width: 210px;
      }

      body.menu-open nav ul {
        display: flex;
      }

      .nav-toggle {
        display: block;
      }

      .nav-contact {
        display: none;
      }

      .hero {
        padding-top: 3rem;
      }
    }
  
    .breadcrumb {
      font-size: 0.78rem;
      color: var(--muted);
      padding: 0.6rem 0 0;
    }
    .breadcrumb a {
      color: var(--muted);
    }
    .breadcrumb a:hover {
      color: var(--text);
    }
    .breadcrumb-separator {
      margin: 0 0.3rem;
    }


/* ===== Styles extraits de creation-site.html ===== */
:root {
      --bg: #05060a;
      --bg-alt: #0b0e16;
      --text: #f5f5f5;
      --muted: #b0b3c1;
      --accent: #3b82f6;
      --accent-soft: #1f2937;
      --border: #111827;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #111827 0, #020617 55%);
      color: var(--text);
      line-height: 1.6;
    }
    a { color: var(--accent); text-decoration: none; }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: linear-gradient(to bottom, rgba(2,6,23,0.95), rgba(2,6,23,0.8));
      border-bottom: 1px solid var(--border);
    }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.9rem 0;
    }

    /* LOGO cliquable */
    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.9rem;
      color: var(--text);
    }
    .logo-img { height: 50px; width: auto; display: block; }

    nav {
      position: relative;
    }
    nav ul {
      display: flex;
      list-style: none;
      gap: 1.5rem;
      font-size: 0.9rem;
    }
    nav a { color: var(--muted); }
    nav a:hover { color: var(--text); }

    /* Bouton Contact mis en avant */
    nav a.contact-link {
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.5);
      background: linear-gradient(to right, #2563eb, #3b82f6);
      color: #f9fafb;
      box-shadow: 0 8px 20px rgba(37,99,235,0.35);
    }
    nav a.contact-link:hover {
      box-shadow: 0 10px 24px rgba(37,99,235,0.45);
    }

    /* Bloc contact dans le header */
    .nav-contact {
      font-size: 0.78rem;
      color: var(--muted);
      text-align: right;
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      white-space: nowrap;
    }
    .nav-contact a {
      color: var(--muted);
    }
    .nav-contact a:hover {
      color: var(--text);
    }

    /* Bouton menu mobile */
    .nav-toggle {
      display: none;
      background: rgba(15,23,42,0.9);
      border-radius: 999px;
      border: 1px solid var(--border);
      color: var(--muted);
      padding: 0.25rem 0.7rem;
      font-size: 1.1rem;
      cursor: pointer;
    }

    main { padding-bottom: 3rem; }
    section { padding: 2.5rem 0; }

    .hero {
      padding-top: 3rem;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
      gap: 3rem;
      align-items: center;
    }
    .badge {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.15rem 0.6rem; border-radius: 999px;
      background: rgba(15,23,42,0.8);
      border: 1px solid rgba(55,65,81,0.9);
      color: var(--muted); font-size: 0.7rem;
      margin-bottom: 0.9rem;
    }
    .badge-dot {
      width: 6px; height: 6px; border-radius: 999px; background: #22c55e;
    }
    h1 {
      font-size: clamp(2.1rem, 4vw, 2.6rem);
      line-height: 1.15;
      margin-bottom: 0.8rem;
    }
    h1 span { color: var(--accent); }
    .hero-lead {
      color: var(--muted);
      max-width: 36rem;
      font-size: 0.98rem;
      margin-bottom: 1.3rem;
    }
    .hero-actions {
      display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.2rem;
    }
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 0.55rem 1.2rem; border-radius: 999px;
      font-size: 0.9rem; border: 1px solid transparent;
      cursor: pointer;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    }
    .btn-primary {
      background: linear-gradient(to right, #2563eb, #3b82f6);
      box-shadow: 0 10px 25px rgba(37,99,235,0.35);
      color: white;
    }
    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 35px rgba(37,99,235,0.4);
    }
    .btn-outline {
      border-color: var(--border);
      background: rgba(15,23,42,0.9);
      color: var(--muted);
    }
    .btn-outline:hover {
      background: rgba(15,23,42,1);
      color: var(--text);
    }
    .hero-note {
      font-size: 0.82rem; color: var(--muted);
    }

    .hero-panel {
      background: radial-gradient(circle at top left, #1f2937, #020617);
      border-radius: 18px;
      border: 1px solid var(--border);
      padding: 1.2rem;
      box-shadow: 0 18px 45px rgba(0,0,0,0.55);
      font-size: 0.88rem;
      color: var(--muted);
    }
    .hero-panel h2 {
      font-size: 1rem;
      margin-bottom: 0.6rem;
      color: var(--text);
    }
    .hero-panel ol {
      padding-left: 1.1rem;
    }
    .hero-panel li {
      margin-bottom: 0.35rem;
    }

    .section-header { margin-bottom: 1.6rem; }
    .section-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--muted);
      margin-bottom: 0.4rem;
    }
    h2 { font-size: 1.4rem; margin-bottom: 0.3rem; }
    .section-intro {
      font-size: 0.95rem;
      color: var(--muted);
      max-width: 40rem;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1.3rem;
    }
    .card {
      background: var(--bg-alt);
      border-radius: 14px;
      border: 1px solid var(--border);
      padding: 1.1rem;
      font-size: 0.9rem;
    }
    .card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
    .card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.5rem; }
    .card ul {
      list-style: none; font-size: 0.86rem; color: var(--muted); padding-left: 0;
    }
    .card ul li { margin-bottom: 0.28rem; }
    .card ul li::before {
      content: "– "; color: var(--accent);
    }
    .price {
      margin-top: 0.6rem;
      font-size: 0.9rem;
      color: #e5e7eb;
      font-weight: 600;
    }
    .note {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 0.25rem;
    }

    .local {
      font-size: 0.86rem;
      color: var(--muted);
      margin-top: 0.8rem;
    }

    .cta-block {
      margin-top: 2rem;
      padding: 1.3rem;
      border-radius: 16px;
      border: 1px solid var(--border);
      background: linear-gradient(135deg, #020617, #020617 60%, #111827);
      font-size: 0.9rem;
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 1.5rem 0 1.8rem;
      font-size: 0.8rem;
      color: var(--muted);
    }
    footer .footer-inner {
      display: flex; justify-content: space-between;
      flex-wrap: wrap; gap: 0.8rem;
    }

    @media (max-width: 860px) {
      .hero-grid { grid-template-columns: 1fr; }

      nav ul {
        display: none;
        position: absolute;
        top: 56px;
        right: 0;
        background: var(--bg-alt);
        padding: 0.75rem 1rem;
        border-radius: 12px;
        border: 1px solid var(--border);
        flex-direction: column;
        gap: 0.75rem;
        min-width: 210px;
      }
      body.menu-open nav ul {
        display: flex;
      }
      .nav-toggle {
        display: block;
      }
      .nav-contact {
        display: none;
      }
    }
  
    .breadcrumb {
      font-size: 0.78rem;
      color: var(--muted);
      padding: 0.6rem 0 0;
    }
    .breadcrumb a {
      color: var(--muted);
    }
    .breadcrumb a:hover {
      color: var(--text);
    }
    .breadcrumb-separator {
      margin: 0 0.3rem;
    }


/* ===== Styles extraits de maintenance.html ===== */
:root {
      --bg: #05060a;
      --bg-alt: #0b0e16;
      --text: #f5f5f5;
      --muted: #b0b3c1;
      --accent: #3b82f6;
      --accent-soft: #1f2937;
      --border: #111827;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #111827 0, #020617 55%);
      color: var(--text);
      line-height: 1.6;
    }
    a { color: var(--accent); text-decoration: none; }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: linear-gradient(to bottom, rgba(2,6,23,0.95), rgba(2,6,23,0.8));
      border-bottom: 1px solid var(--border);
    }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.9rem 0;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.9rem;
      color: var(--text);
    }
    .logo-img { height: 50px; width: auto; display: block; }

    nav { position: relative; }
    nav ul {
      display: flex; list-style: none; gap: 1.5rem; font-size: 0.9rem;
    }
    nav a { color: var(--muted); }
    nav a:hover { color: var(--text); }

    nav a.contact-link {
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.5);
      background: linear-gradient(to right, #2563eb, #3b82f6);
      color: #f9fafb;
      box-shadow: 0 8px 20px rgba(37,99,235,0.35);
    }
    nav a.contact-link:hover {
      box-shadow: 0 10px 24px rgba(37,99,235,0.45);
    }

    .nav-contact {
      font-size: 0.78rem;
      color: var(--muted);
      text-align: right;
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      white-space: nowrap;
    }
    .nav-contact a {
      color: var(--muted);
    }
    .nav-contact a:hover {
      color: var(--text);
    }

    .nav-toggle {
      display: none;
      background: rgba(15,23,42,0.9);
      border-radius: 999px;
      border: 1px solid var(--border);
      color: var(--muted);
      padding: 0.25rem 0.7rem;
      font-size: 1.1rem;
      cursor: pointer;
    }

    main { padding-bottom: 3rem; }
    section { padding: 2.5rem 0; }

    .hero {
      padding-top: 3rem;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
      gap: 3rem;
      align-items: center;
    }
    .badge {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.15rem 0.6rem; border-radius: 999px;
      background: rgba(15,23,42,0.8);
      border: 1px solid rgba(55,65,81,0.9);
      color: var(--muted); font-size: 0.7rem;
      margin-bottom: 0.9rem;
    }
    .badge-dot {
      width: 6px; height: 6px; border-radius: 999px; background: #22c55e;
    }
    h1 {
      font-size: clamp(2.1rem, 4vw, 2.6rem);
      line-height: 1.15;
      margin-bottom: 0.8rem;
    }
    h1 span { color: var(--accent); }
    .hero-lead {
      color: var(--muted);
      max-width: 36rem;
      font-size: 0.98rem;
      margin-bottom: 1.3rem;
    }
    .hero-actions {
      display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.2rem;
    }
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 0.55rem 1.2rem; border-radius: 999px;
      font-size: 0.9rem; border: 1px solid transparent;
      cursor: pointer;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    }
    .btn-primary {
      background: linear-gradient(to right, #2563eb, #3b82f6);
      box-shadow: 0 10px 25px rgba(37,99,235,0.35);
      color: white;
    }
    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 35px rgba(37,99,235,0.4);
    }
    .btn-outline {
      border-color: var(--border);
      background: rgba(15,23,42,0.9);
      color: var(--muted);
    }
    .btn-outline:hover {
      background: rgba(15,23,42,1);
      color: var(--text);
    }
    .hero-note {
      font-size: 0.82rem; color: var(--muted);
    }

    .hero-panel {
      background: radial-gradient(circle at top left, #1f2937, #020617);
      border-radius: 18px;
      border: 1px solid var(--border);
      padding: 1.2rem;
      box-shadow: 0 18px 45px rgba(0,0,0,0.55);
      font-size: 0.88rem;
      color: var(--muted);
    }
    .hero-panel h2 {
      font-size: 1rem;
      margin-bottom: 0.6rem;
      color: var(--text);
    }
    .hero-panel ul {
      list-style: none;
      padding-left: 0;
    }
    .hero-panel li {
      margin-bottom: 0.35rem;
    }
    .hero-panel li::before {
      content: "• "; color: var(--accent);
    }

    .section-header { margin-bottom: 1.6rem; }
    .section-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--muted);
      margin-bottom: 0.4rem;
    }
    h2 { font-size: 1.4rem; margin-bottom: 0.3rem; }
    .section-intro {
      font-size: 0.95rem;
      color: var(--muted);
      max-width: 40rem;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1.3rem;
    }
    .card {
      background: var(--bg-alt);
      border-radius: 14px;
      border: 1px solid var(--border);
      padding: 1.1rem;
      font-size: 0.9rem;
    }
    .card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
    .card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.5rem; }
    .card ul {
      list-style: none; font-size: 0.86rem; color: var(--muted); padding-left: 0;
    }
    .card ul li { margin-bottom: 0.28rem; }
    .card ul li::before {
      content: "– "; color: var(--accent);
    }
    .price {
      margin-top: 0.6rem;
      font-size: 0.9rem;
      color: #e5e7eb;
      font-weight: 600;
    }
    .note {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 0.25rem;
    }

    .local {
      font-size: 0.86rem;
      color: var(--muted);
      margin-top: 0.8rem;
    }

    .cta-block {
      margin-top: 2rem;
      padding: 1.3rem;
      border-radius: 16px;
      border: 1px solid var(--border);
      background: linear-gradient(135deg, #020617, #020617 60%, #111827);
      font-size: 0.9rem;
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 1.5rem 0 1.8rem;
      font-size: 0.8rem;
      color: var(--muted);
    }
    footer .footer-inner {
      display: flex; justify-content: space-between;
      flex-wrap: wrap; gap: 0.8rem;
    }

    @media (max-width: 860px) {
      .hero-grid { grid-template-columns: 1fr; }

      nav ul {
        display: none;
        position: absolute;
        top: 56px;
        right: 0;
        background: var(--bg-alt);
        padding: 0.75rem 1rem;
        border-radius: 12px;
        border: 1px solid var(--border);
        flex-direction: column;
        gap: 0.75rem;
        min-width: 210px;
      }
      body.menu-open nav ul {
        display: flex;
      }
      .nav-toggle {
        display: block;
      }
      .nav-contact {
        display: none;
      }
    }
  
    .breadcrumb {
      font-size: 0.78rem;
      color: var(--muted);
      padding: 0.6rem 0 0;
    }
    .breadcrumb a {
      color: var(--muted);
    }
    .breadcrumb a:hover {
      color: var(--text);
    }
    .breadcrumb-separator {
      margin: 0 0.3rem;
    }


/* ===== Styles extraits de reseaux.html ===== */
:root {
      --bg: #05060a;
      --bg-alt: #0b0e16;
      --text: #f5f5f5;
      --muted: #b0b3c1;
      --accent: #3b82f6;
      --accent-soft: #1f2937;
      --border: #111827;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #111827 0, #020617 55%);
      color: var(--text);
      line-height: 1.6;
    }
    a { color: var(--accent); text-decoration: none; }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: linear-gradient(to bottom, rgba(2,6,23,0.95), rgba(2,6,23,0.8));
      border-bottom: 1px solid var(--border);
    }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.9rem 0;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.9rem;
      color: var(--text);
    }
    .logo-img { height: 50px; width: auto; display: block; }

    nav { position: relative; }
    nav ul {
      display: flex; list-style: none; gap: 1.5rem; font-size: 0.9rem;
    }
    nav a { color: var(--muted); }
    nav a:hover { color: var(--text); }

    nav a.contact-link {
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.5);
      background: linear-gradient(to right, #2563eb, #3b82f6);
      color: #f9fafb;
      box-shadow: 0 8px 20px rgba(37,99,235,0.35);
    }
    nav a.contact-link:hover {
      box-shadow: 0 10px 24px rgba(37,99,235,0.45);
    }

    .nav-contact {
      font-size: 0.78rem;
      color: var(--muted);
      text-align: right;
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      white-space: nowrap;
    }
    .nav-contact a {
      color: var(--muted);
    }
    .nav-contact a:hover {
      color: var(--text);
    }

    .nav-toggle {
      display: none;
      background: rgba(15,23,42,0.9);
      border-radius: 999px;
      border: 1px solid var(--border);
      color: var(--muted);
      padding: 0.25rem 0.7rem;
      font-size: 1.1rem;
      cursor: pointer;
    }

    main { padding-bottom: 3rem; }
    section { padding: 2.5rem 0; }

    .hero {
      padding-top: 3rem;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
      gap: 3rem;
      align-items: center;
    }
    .badge {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.15rem 0.6rem; border-radius: 999px;
      background: rgba(15,23,42,0.8);
      border: 1px solid rgba(55,65,81,0.9);
      color: var(--muted); font-size: 0.7rem;
      margin-bottom: 0.9rem;
    }
    .badge-dot {
      width: 6px; height: 6px; border-radius: 999px; background: #22c55e;
    }
    h1 {
      font-size: clamp(2.1rem, 4vw, 2.6rem);
      line-height: 1.15;
      margin-bottom: 0.8rem;
    }
    h1 span { color: var(--accent); }
    .hero-lead {
      color: var(--muted);
      max-width: 36rem;
      font-size: 0.98rem;
      margin-bottom: 1.3rem;
    }
    .hero-actions {
      display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.2rem;
    }
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 0.55rem 1.2rem; border-radius: 999px;
      font-size: 0.9rem; border: 1px solid transparent;
      cursor: pointer;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    }
    .btn-primary {
      background: linear-gradient(to right, #2563eb, #3b82f6);
      box-shadow: 0 10px 25px rgba(37,99,235,0.35);
      color: white;
    }
    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 35px rgba(37,99,235,0.4);
    }
    .btn-outline {
      border-color: var(--border);
      background: rgba(15,23,42,0.9);
      color: var(--muted);
    }
    .btn-outline:hover {
      background: rgba(15,23,42,1);
      color: var(--text);
    }
    .hero-note {
      font-size: 0.82rem; color: var(--muted);
    }

    .hero-panel {
      background: radial-gradient(circle at top left, #1f2937, #020617);
      border-radius: 18px;
      border: 1px solid var(--border);
      padding: 1.2rem;
      box-shadow: 0 18px 45px rgba(0,0,0,0.55);
      font-size: 0.88rem;
      color: var(--muted);
    }
    .hero-panel h2 {
      font-size: 1rem;
      margin-bottom: 0.6rem;
      color: var(--text);
    }
    .hero-panel ul {
      list-style: none;
      padding-left: 0;
    }
    .hero-panel li {
      margin-bottom: 0.35rem;
    }
    .hero-panel li::before {
      content: "• "; color: var(--accent);
    }

    .section-header { margin-bottom: 1.6rem; }
    .section-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--muted);
      margin-bottom: 0.4rem;
    }
    h2 { font-size: 1.4rem; margin-bottom: 0.3rem; }
    .section-intro {
      font-size: 0.95rem;
      color: var(--muted);
      max-width: 40rem;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1.3rem;
    }
    .card {
      background: var(--bg-alt);
      border-radius: 14px;
      border: 1px solid var(--border);
      padding: 1.1rem;
      font-size: 0.9rem;
    }
    .card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
    .card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.5rem; }
    .card ul {
      list-style: none; font-size: 0.86rem; color: var(--muted); padding-left: 0;
    }
    .card ul li { margin-bottom: 0.28rem; }
    .card ul li::before {
      content: "– "; color: var(--accent);
    }
    .price {
      margin-top: 0.6rem;
      font-size: 0.9rem;
      color: #e5e7eb;
      font-weight: 600;
    }
    .note {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 0.25rem;
    }

    .local {
      font-size: 0.86rem;
      color: var(--muted);
      margin-top: 0.8rem;
    }

    .cta-block {
      margin-top: 2rem;
      padding: 1.3rem;
      border-radius: 16px;
      border: 1px solid var(--border);
      background: linear-gradient(135deg, #020617, #020617 60%, #111827);
      font-size: 0.9rem;
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 1.5rem 0 1.8rem;
      font-size: 0.8rem;
      color: var(--muted);
    }
    footer .footer-inner {
      display: flex; justify-content: space-between;
      flex-wrap: wrap; gap: 0.8rem;
    }

    @media (max-width: 860px) {
      .hero-grid { grid-template-columns: 1fr; }

      nav ul {
        display: none;
        position: absolute;
        top: 56px;
        right: 0;
        background: var(--bg-alt);
        padding: 0.75rem 1rem;
        border-radius: 12px;
        border: 1px solid var(--border);
        flex-direction: column;
        gap: 0.75rem;
        min-width: 210px;
      }
      body.menu-open nav ul {
        display: flex;
      }
      .nav-toggle {
        display: block;
      }
      .nav-contact {
        display: none;
      }
    }
  
    .breadcrumb {
      font-size: 0.78rem;
      color: var(--muted);
      padding: 0.6rem 0 0;
    }
    .breadcrumb a {
      color: var(--muted);
    }
    .breadcrumb a:hover {
      color: var(--text);
    }
    .breadcrumb-separator {
      margin: 0 0.3rem;
    }


/* ===== Styles extraits de particuliers.html ===== */
:root {
      --bg: #05060a;
      --bg-alt: #0b0e16;
      --text: #f5f5f5;
      --muted: #b0b3c1;
      --accent: #3b82f6;
      --accent-soft: #1f2937;
      --border: #111827;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #111827 0, #020617 55%);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: var(--accent);
      text-decoration: none;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: linear-gradient(to bottom, rgba(2,6,23,0.95), rgba(2,6,23,0.8));
      border-bottom: 1px solid var(--border);
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.9rem 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.9rem;
      color: var(--text);
    }

    .logo-img {
      height: 50px;
      width: auto;
      display: block;
    }

    nav {
      position: relative;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 1.5rem;
      font-size: 0.9rem;
    }

    nav a {
      color: var(--muted);
    }

    nav a:hover {
      color: var(--text);
    }

    nav a.contact-link {
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.5);
      background: linear-gradient(to right, #2563eb, #3b82f6);
      color: #f9fafb;
      box-shadow: 0 8px 20px rgba(37,99,235,0.35);
    }

    nav a.contact-link:hover {
      box-shadow: 0 10px 24px rgba(37,99,235,0.45);
    }

    .nav-contact {
      font-size: 0.78rem;
      color: var(--muted);
      text-align: right;
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      white-space: nowrap;
    }

    .nav-contact a {
      color: var(--muted);
    }

    .nav-contact a:hover {
      color: var(--text);
    }

    .nav-toggle {
      display: none;
      background: rgba(15,23,42,0.9);
      border-radius: 999px;
      border: 1px solid var(--border);
      color: var(--muted);
      padding: 0.25rem 0.7rem;
      font-size: 1.1rem;
      cursor: pointer;
    }

    main {
      padding-bottom: 3rem;
    }

    section {
      padding: 2.5rem 0;
    }

    .hero {
      padding-top: 3rem;
    }

    .section-header {
      margin-bottom: 1.6rem;
    }

    .section-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--muted);
      margin-bottom: 0.4rem;
    }

    h1 {
      font-size: clamp(2rem, 3.4vw, 2.5rem);
      margin-bottom: 0.6rem;
    }

    h2 {
      font-size: 1.4rem;
      margin-bottom: 0.4rem;
    }

    h3 {
      font-size: 1.05rem;
      margin-bottom: 0.4rem;
    }

    .section-intro {
      font-size: 0.95rem;
      color: var(--muted);
      max-width: 42rem;
    }

    .pill {
      display: inline-block;
      padding: 0.15rem 0.6rem;
      border-radius: 999px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(55,65,81,0.9);
      font-size: 0.75rem;
      color: var(--muted);
      margin-right: 0.4rem;
      margin-top: 0.2rem;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 1.8rem;
      align-items: flex-start;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.3rem;
    }

    .card {
      background: var(--bg-alt);
      border-radius: 14px;
      border: 1px solid var(--border);
      padding: 1.1rem;
      font-size: 0.9rem;
    }

    .card p {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 0.4rem;
    }

    .card ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0.5rem;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .card ul li {
      margin-bottom: 0.28rem;
    }

    .card ul li::before {
      content: "– ";
      color: var(--accent);
    }

    .price {
      font-size: 0.9rem;
      color: #e5e7eb;
      margin-top: 0.25rem;
      font-weight: 500;
    }

    .hint {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .highlight {
      color: var(--accent);
    }

    .cta-box {
      background: radial-gradient(circle at top left, #1f2937, #020617);
      border-radius: 16px;
      border: 1px solid var(--border);
      padding: 1.4rem;
      box-shadow: 0 18px 45px rgba(0,0,0,0.55);
      font-size: 0.95rem;
    }

    .cta-actions {
      margin-top: 0.9rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1.2rem;
      border-radius: 999px;
      font-size: 0.9rem;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    }

    .btn-primary {
      background: linear-gradient(to right, #2563eb, #3b82f6);
      box-shadow: 0 10px 25px rgba(37,99,235,0.35);
      color: white;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 35px rgba(37,99,235,0.4);
    }

    .btn-outline {
      border-color: var(--border);
      background: rgba(15,23,42,0.9);
      color: var(--muted);
    }

    .btn-outline:hover {
      background: rgba(15,23,42,1);
      color: var(--text);
    }

    .zone {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .zone strong {
      color: #e5e7eb;
      font-weight: 600;
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 1.5rem 0 1.8rem;
      font-size: 0.8rem;
      color: var(--muted);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
    }

    .footer-links a {
      color: var(--muted);
      margin-left: 0.8rem;
      font-size: 0.8rem;
    }

    .footer-links a:hover {
      color: var(--accent);
    }

    @media (max-width: 860px) {
      .grid-2 {
        grid-template-columns: 1fr;
      }

      nav ul {
        display: none;
        position: absolute;
        top: 56px;
        right: 0;
        background: var(--bg-alt);
        padding: 0.75rem 1rem;
        border-radius: 12px;
        border: 1px solid var(--border);
        flex-direction: column;
        gap: 0.75rem;
        min-width: 210px;
      }
      body.menu-open nav ul {
        display: flex;
      }
      .nav-toggle {
        display: block;
      }
      .nav-contact {
        display: none;
      }

      .hero {
        padding-top: 2.2rem;
      }
    }
  
    .breadcrumb {
      font-size: 0.78rem;
      color: var(--muted);
      padding: 0.6rem 0 0;
    }
    .breadcrumb a {
      color: var(--muted);
    }
    .breadcrumb a:hover {
      color: var(--text);
    }
    .breadcrumb-separator {
      margin: 0 0.3rem;
    }


/* ===== Styles extraits de mentions-legales.html ===== */
:root {
      --bg: #05060a;
      --bg-alt: #0b0e16;
      --text: #f5f5f5;
      --muted: #b0b3c1;
      --accent: #3b82f6;
      --border: #111827;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #111827 0, #020617 55%);
      color: var(--text);
      line-height: 1.6;
    }
    a { color: var(--accent); text-decoration: none; }
    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: linear-gradient(to bottom, rgba(2,6,23,0.95), rgba(2,6,23,0.8));
      border-bottom: 1px solid var(--border);
    }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.9rem 0;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.9rem;
      color: var(--text);
    }
    .logo-img { height: 50px; width: auto; display: block; }
    nav { position: relative; }
    nav ul { display: flex; list-style: none; gap: 1.5rem; font-size: 0.9rem; }
    nav a { color: var(--muted); }
    nav a:hover { color: var(--text); }
    nav a.contact-link {
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.5);
      background: linear-gradient(to right, #2563eb, #3b82f6);
      color: #f9fafb;
      box-shadow: 0 8px 20px rgba(37,99,235,0.35);
    }
    .nav-contact {
      font-size: 0.78rem;
      color: var(--muted);
      text-align: right;
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      white-space: nowrap;
    }
    .nav-contact a { color: var(--muted); }
    .nav-contact a:hover { color: var(--text); }
    .nav-toggle {
      display: none;
      background: rgba(15,23,42,0.9);
      border-radius: 999px;
      border: 1px solid var(--border);
      color: var(--muted);
      padding: 0.25rem 0.7rem;
      font-size: 1.1rem;
      cursor: pointer;
    }
    main { padding: 3rem 0 3rem; }
    h1 {
      font-size: 1.8rem;
      margin-bottom: 0.8rem;
    }
    h2 {
      font-size: 1.2rem;
      margin-top: 1.6rem;
      margin-bottom: 0.4rem;
    }
    p, li {
      font-size: 0.95rem;
      color: var(--muted);
      margin-bottom: 0.4rem;
    }
    ul { padding-left: 1.2rem; margin-bottom: 0.8rem; }
    .breadcrumb {
      font-size: 0.78rem;
      color: var(--muted);
      padding: 0.6rem 0 1rem;
    }
    .breadcrumb a { color: var(--muted); }
    .breadcrumb a:hover { color: var(--text); }
    .breadcrumb-separator { margin: 0 0.3rem; }
    .card {
      background: var(--bg-alt);
      border-radius: 14px;
      border: 1px solid var(--border);
      padding: 1.6rem;
    }
    footer {
      border-top: 1px solid var(--border);
      padding: 1.5rem 0 1.8rem;
      font-size: 0.8rem;
      color: var(--muted);
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
    }
    .footer-links a {
      margin-left: 1rem;
      font-size: 0.8rem;
      color: var(--muted);
    }
    .footer-links a:hover { color: var(--text); }
    @media (max-width: 860px) {
      nav ul {
        display: none;
        position: absolute;
        top: 56px;
        right: 0;
        background: var(--bg-alt);
        padding: 0.75rem 1rem;
        border-radius: 12px;
        border: 1px solid var(--border);
        flex-direction: column;
        gap: 0.75rem;
        min-width: 210px;
      }
      body.menu-open nav ul { display: flex; }
      .nav-toggle { display: block; }
      .nav-contact { display: none; }
    }


/* ===== Styles extraits de politique-confidentialite.html ===== */
:root {
      --bg: #05060a;
      --bg-alt: #0b0e16;
      --text: #f5f5f5;
      --muted: #b0b3c1;
      --accent: #3b82f6;
      --border: #111827;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #111827 0, #020617 55%);
      color: var(--text);
      line-height: 1.6;
    }
    a { color: var(--accent); text-decoration: none; }
    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: linear-gradient(to bottom, rgba(2,6,23,0.95), rgba(2,6,23,0.8));
      border-bottom: 1px solid var(--border);
    }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.9rem 0;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.9rem;
      color: var(--text);
    }
    .logo-img { height: 50px; width: auto; display: block; }
    nav { position: relative; }
    nav ul { display: flex; list-style: none; gap: 1.5rem; font-size: 0.9rem; }
    nav a { color: var(--muted); }
    nav a:hover { color: var(--text); }
    nav a.contact-link {
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.5);
      background: linear-gradient(to right, #2563eb, #3b82f6);
      color: #f9fafb;
      box-shadow: 0 8px 20px rgba(37,99,235,0.35);
    }
    .nav-contact {
      font-size: 0.78rem;
      color: var(--muted);
      text-align: right;
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      white-space: nowrap;
    }
    .nav-contact a { color: var(--muted); }
    .nav-contact a:hover { color: var(--text); }
    .nav-toggle {
      display: none;
      background: rgba(15,23,42,0.9);
      border-radius: 999px;
      border: 1px solid var(--border);
      color: var(--muted);
      padding: 0.25rem 0.7rem;
      font-size: 1.1rem;
      cursor: pointer;
    }
    main { padding: 3rem 0 3rem; }
    h1 {
      font-size: 1.8rem;
      margin-bottom: 0.8rem;
    }
    h2 {
      font-size: 1.2rem;
      margin-top: 1.6rem;
      margin-bottom: 0.4rem;
    }
    p, li {
      font-size: 0.95rem;
      color: var(--muted);
      margin-bottom: 0.4rem;
    }
    ul { padding-left: 1.2rem; margin-bottom: 0.8rem; }
    .breadcrumb {
      font-size: 0.78rem;
      color: var(--muted);
      padding: 0.6rem 0 1rem;
    }
    .breadcrumb a { color: var(--muted); }
    .breadcrumb a:hover { color: var(--text); }
    .breadcrumb-separator { margin: 0 0.3rem; }
    .card {
      background: var(--bg-alt);
      border-radius: 14px;
      border: 1px solid var(--border);
      padding: 1.6rem;
    }
    footer {
      border-top: 1px solid var(--border);
      padding: 1.5rem 0 1.8rem;
      font-size: 0.8rem;
      color: var(--muted);
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
    }
    .footer-links a {
      margin-left: 1rem;
      font-size: 0.8rem;
      color: var(--muted);
    }
    .footer-links a:hover { color: var(--text); }
    @media (max-width: 860px) {
      nav ul {
        display: none;
        position: absolute;
        top: 56px;
        right: 0;
        background: var(--bg-alt);
        padding: 0.75rem 1rem;
        border-radius: 12px;
        border: 1px solid var(--border);
        flex-direction: column;
        gap: 0.75rem;
        min-width: 210px;
      }
      body.menu-open nav ul { display: flex; }
      .nav-toggle { display: block; }
      .nav-contact { display: none; }
    }


/* ===== Styles extraits de contact-success.html ===== */
:root {
      --bg: #05060a;
      --bg-alt: #0b0e16;
      --text: #f5f5f5;
      --muted: #b0b3c1;
      --accent: #3b82f6;
      --border: #111827;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #111827 0, #020617 55%);
      color: var(--text);
      line-height: 1.6;
    }
    a { color: var(--accent); text-decoration: none; }
    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: linear-gradient(to bottom, rgba(2,6,23,0.95), rgba(2,6,23,0.8));
      border-bottom: 1px solid var(--border);
    }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.9rem 0;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.9rem;
      color: var(--text);
    }
    .logo-img { height: 50px; width: auto; display: block; }
    nav { position: relative; }
    nav ul { display: flex; list-style: none; gap: 1.5rem; font-size: 0.9rem; }
    nav a { color: var(--muted); }
    nav a:hover { color: var(--text); }
    nav a.contact-link {
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.5);
      background: linear-gradient(to right, #2563eb, #3b82f6);
      color: #f9fafb;
      box-shadow: 0 8px 20px rgba(37,99,235,0.35);
    }
    .nav-contact {
      font-size: 0.78rem;
      color: var(--muted);
      text-align: right;
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      white-space: nowrap;
    }
    .nav-contact a { color: var(--muted); }
    .nav-contact a:hover { color: var(--text); }
    .nav-toggle {
      display: none;
      background: rgba(15,23,42,0.9);
      border-radius: 999px;
      border: 1px solid var(--border);
      color: var(--muted);
      padding: 0.25rem 0.7rem;
      font-size: 1.1rem;
      cursor: pointer;
    }
    main { padding: 3rem 0 3rem; }
    .card {
      background: var(--bg-alt);
      border-radius: 14px;
      border: 1px solid var(--border);
      padding: 1.5rem;
      max-width: 640px;
      margin: 0 auto;
      text-align: left;
      font-size: 0.95rem;
    }
    h1 {
      font-size: 1.6rem;
      margin-bottom: 0.5rem;
    }
    p { color: var(--muted); margin-bottom: 0.6rem; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1.2rem;
      border-radius: 999px;
      font-size: 0.9rem;
      border: 1px solid transparent;
      cursor: pointer;
      margin-top: 0.8rem;
    }
    .btn-primary {
      background: linear-gradient(to right, #2563eb, #3b82f6);
      box-shadow: 0 10px 25px rgba(37,99,235,0.35);
      color: white;
    }
    footer {
      border-top: 1px solid var(--border);
      padding: 1.5rem 0 1.8rem;
      font-size: 0.8rem;
      color: var(--muted);
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
    }
    .breadcrumb {
      font-size: 0.78rem;
      color: var(--muted);
      padding: 0.6rem 0 1rem;
    }
    .breadcrumb a { color: var(--muted); }
    .breadcrumb a:hover { color: var(--text); }
    .breadcrumb-separator { margin: 0 0.3rem; }
    @media (max-width: 860px) {
      nav ul {
        display: none;
        position: absolute;
        top: 56px;
        right: 0;
        background: var(--bg-alt);
        padding: 0.75rem 1rem;
        border-radius: 12px;
        border: 1px solid var(--border);
        flex-direction: column;
        gap: 0.75rem;
        min-width: 210px;
      }
      body.menu-open nav ul { display: flex; }
      .nav-toggle { display: block; }
      .nav-contact { display: none; }
    }


/* ===== Styles extraits de contact-error.html ===== */
:root {
      --bg: #05060a;
      --bg-alt: #0b0e16;
      --text: #f5f5f5;
      --muted: #b0b3c1;
      --accent: #3b82f6;
      --border: #111827;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #111827 0, #020617 55%);
      color: var(--text);
      line-height: 1.6;
    }
    a { color: var(--accent); text-decoration: none; }
    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: linear-gradient(to bottom, rgba(2,6,23,0.95), rgba(2,6,23,0.8));
      border-bottom: 1px solid var(--border);
    }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.9rem 0;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.9rem;
      color: var(--text);
    }
    .logo-img { height: 50px; width: auto; display: block; }
    nav { position: relative; }
    nav ul { display: flex; list-style: none; gap: 1.5rem; font-size: 0.9rem; }
    nav a { color: var(--muted); }
    nav a:hover { color: var(--text); }
    nav a.contact-link {
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.5);
      background: linear-gradient(to right, #2563eb, #3b82f6);
      color: #f9fafb;
      box-shadow: 0 8px 20px rgba(37,99,235,0.35);
    }
    .nav-contact {
      font-size: 0.78rem;
      color: var(--muted);
      text-align: right;
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      white-space: nowrap;
    }
    .nav-contact a { color: var(--muted); }
    .nav-contact a:hover { color: var(--text); }
    .nav-toggle {
      display: none;
      background: rgba(15,23,42,0.9);
      border-radius: 999px;
      border: 1px solid var(--border);
      color: var(--muted);
      padding: 0.25rem 0.7rem;
      font-size: 1.1rem;
      cursor: pointer;
    }
    main { padding: 3rem 0 3rem; }
    .card {
      background: var(--bg-alt);
      border-radius: 14px;
      border: 1px solid var(--border);
      padding: 1.5rem;
      max-width: 640px;
      margin: 0 auto;
      text-align: left;
      font-size: 0.95rem;
    }
    h1 {
      font-size: 1.6rem;
      margin-bottom: 0.5rem;
    }
    p { color: var(--muted); margin-bottom: 0.6rem; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1.2rem;
      border-radius: 999px;
      font-size: 0.9rem;
      border: 1px solid transparent;
      cursor: pointer;
      margin-top: 0.8rem;
    }
    .btn-primary {
      background: linear-gradient(to right, #2563eb, #3b82f6);
      box-shadow: 0 10px 25px rgba(37,99,235,0.35);
      color: white;
    }
    footer {
      border-top: 1px solid var(--border);
      padding: 1.5rem 0 1.8rem;
      font-size: 0.8rem;
      color: var(--muted);
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
    }
    .breadcrumb {
      font-size: 0.78rem;
      color: var(--muted);
      padding: 0.6rem 0 1rem;
    }
    .breadcrumb a { color: var(--muted); }
    .breadcrumb a:hover { color: var(--text); }
    .breadcrumb-separator { margin: 0 0.3rem; }
    @media (max-width: 860px) {
      nav ul {
        display: none;
        position: absolute;
        top: 56px;
        right: 0;
        background: var(--bg-alt);
        padding: 0.75rem 1rem;
        border-radius: 12px;
        border: 1px solid var(--border);
        flex-direction: column;
        gap: 0.75rem;
        min-width: 210px;
      }
      body.menu-open nav ul { display: flex; }
      .nav-toggle { display: block; }
      .nav-contact { display: none; }
    }


/* ===== Styles extraits de contact.php ===== */
:root {
      --bg: #05060a;
      --bg-alt: #0b0e16;
      --text: #f5f5f5;
      --muted: #b0b3c1;
      --accent: #3b82f6;
      --border: #111827;
      --error: #f97373;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #111827 0, #020617 55%);
      color: var(--text);
      line-height: 1.6;
    }
    a { color: var(--accent); text-decoration: none; }
    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: linear-gradient(to bottom, rgba(2,6,23,0.95), rgba(2,6,23,0.8));
      border-bottom: 1px solid var(--border);
    }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.9rem 0;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.9rem;
      color: var(--text);
    }
    .logo-img { height: 50px; width: auto; display: block; }
    nav { position: relative; }
    nav ul { display: flex; list-style: none; gap: 1.5rem; font-size: 0.9rem; }
    nav a { color: var(--muted); }
    nav a:hover { color: var(--text); }
    nav a.contact-link {
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.5);
      background: linear-gradient(to right, #2563eb, #3b82f6);
      color: #f9fafb;
      box-shadow: 0 8px 20px rgba(37,99,235,0.35);
    }
    .nav-contact {
      font-size: 0.78rem;
      color: var(--muted);
      text-align: right;
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      white-space: nowrap;
    }
    .nav-contact a { color: var(--muted); }
    .nav-contact a:hover { color: var(--text); }
    .nav-toggle {
      display: none;
      background: rgba(15,23,42,0.9);
      border-radius: 999px;
      border: 1px solid var(--border);
      color: var(--muted);
      padding: 0.25rem 0.7rem;
      font-size: 1.1rem;
      cursor: pointer;
    }
    main { padding: 3rem 0 3rem; }
    h1 {
      font-size: 1.6rem;
      margin-bottom: 0.6rem;
    }
    p.lead { color: var(--muted); margin-bottom: 1rem; }
    .grid {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
      gap: 2.2rem;
      align-items: flex-start;
    }
    form {
      background: var(--bg-alt);
      border-radius: 16px;
      border: 1px solid var(--border);
      padding: 1.5rem;
    }
    label {
      display: block;
      font-size: 0.85rem;
      font-weight: 500;
      margin-bottom: 0.25rem;
    }
    input, textarea, select {
      width: 100%;
      padding: 0.55rem 0.7rem;
      border-radius: 0.55rem;
      border: 1px solid #1f2937;
      background: rgba(15,23,42,0.9);
      color: var(--text);
      font-size: 0.9rem;
      margin-bottom: 0.6rem;
    }
    textarea { min-height: 120px; resize: vertical; }
    .field-error {
      color: var(--error);
      font-size: 0.8rem;
      margin-top: -0.35rem;
      margin-bottom: 0.55rem;
    }
    .global-error {
      background: rgba(248,113,113,0.09);
      border: 1px solid rgba(248,113,113,0.8);
      color: var(--error);
      border-radius: 0.6rem;
      padding: 0.6rem 0.75rem;
      font-size: 0.85rem;
      margin-bottom: 0.9rem;
    }
    .checkbox-row {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin-bottom: 0.6rem;
    }
    .checkbox-row input[type="checkbox"] {
      width: auto;
      margin-top: 0.15rem;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1.4rem;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      font-size: 0.9rem;
      background: linear-gradient(to right, #2563eb, #3b82f6);
      color: #f9fafb;
      box-shadow: 0 10px 25px rgba(37,99,235,0.35);
    }
    .aside {
      font-size: 0.9rem;
      color: var(--muted);
    }
    .aside strong { color: var(--text); }
    .breadcrumb {
      font-size: 0.78rem;
      color: var(--muted);
      padding: 0.6rem 0 1.2rem;
    }
    .breadcrumb a { color: var(--muted); }
    .breadcrumb a:hover { color: var(--text); }
    .breadcrumb-separator { margin: 0 0.3rem; }
    footer {
      border-top: 1px solid var(--border);
      padding: 1.5rem 0 1.8rem;
      font-size: 0.8rem;
      color: var(--muted);
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
    }
    @media (max-width: 860px) {
      .grid { grid-template-columns: minmax(0, 1fr); }
      nav ul {
        display: none;
        position: absolute;
        top: 56px;
        right: 0;
        background: var(--bg-alt);
        padding: 0.75rem 1rem;
        border-radius: 12px;
        border: 1px solid var(--border);
        flex-direction: column;
        gap: 0.75rem;
        min-width: 210px;
      }
      body.menu-open nav ul { display: flex; }
      .nav-toggle { display: block; }
      .nav-contact { display: none; }
    }

/* ===== Accessibilité & détails techniques ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: var(--accent);
  color: #0b1120;
  border-radius: 999px;
  z-index: 50;
  font-size: 0.85rem;
}

.skip-link:focus {
  left: 0.75rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}



/* Bloc spécialités (À propos) */
.specialites {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
.specialites-title {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.specialites-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.specialites-list li {
  margin-bottom: 0.3rem;
}


.hp-field-wrapper label,
.hp-field-wrapper .hp-field {
  font-size: 0;
  line-height: 0;
}
