/* ── Reset & base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      background: #f5f0eb;
      color: #1a1a1a;
      line-height: 1.65;
      font-size: 17px;
    }

    /* ── Typographie ── */
    h1, h2, h3 { line-height: 1.2; font-weight: 700; }
    h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
    h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
    h3 { font-size: 1.15rem; font-weight: 600; }
    p { margin-bottom: 1rem; }
    a { color: inherit; text-decoration: none; }

    /* ── Layout ── */
    .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 24px;
    }
    section { padding: 80px 0; }
    section:nth-child(even) { background: #ede8e1; }

    /* ── Bandeau top ── */
    .topbar {
      background: #1a1a1a;
      color: #f5f0eb;
      text-align: center;
      font-size: 0.82rem;
      padding: 9px 16px;
      letter-spacing: 0.02em;
    }

    /* ── Navigation ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #f5f0eb;
      border-bottom: 1px solid #ddd8d0;
      padding: 14px 0;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .nav-logo { display: inline-flex; align-items: center; gap: 14px; }
    .nav-logo__mark { width: 44px; height: 44px; display: block; flex-shrink: 0; }
    .nav-logo__text { display: flex; flex-direction: column; gap: 4px; }
    .nav-logo__name { font-weight: 800; font-size: 1.08rem; letter-spacing: 0.02em; line-height: 1; }
    .nav-logo__sub { font-weight: 400; font-size: 0.72rem; display: block; color: #666; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1; }
    .nav-links {
      display: flex;
      gap: 28px;
      align-items: center;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.9rem;
      color: #444;
      transition: color .2s;
    }
    .nav-links a:hover { color: #1a1a1a; }
    .btn-nav {
      background: #1a1a1a;
      color: #f5f0eb !important;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 0.88rem !important;
      font-weight: 600;
      transition: background .2s;
    }
    .btn-nav:hover { background: #333 !important; }

    /* ── Boutons ── */
    .btn-primary {
      display: inline-block;
      background: #1a1a1a;
      color: #f5f0eb;
      padding: 16px 32px;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: background .2s, transform .15s;
    }
    .btn-primary:hover { background: #333; transform: translateY(-1px); }
    .btn-secondary {
      display: inline-block;
      background: transparent;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      border: 2px solid #1a1a1a;
      transition: background .2s, color .2s;
    }
    .btn-secondary:hover { background: #1a1a1a; color: #f5f0eb; }

    /* ── HERO ── */
    #accueil {
      background: #f5f0eb;
      padding: 100px 0 80px;
    }
    .hero-tag {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #888;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      padding: 5px 12px;
      border-radius: 20px;
    }
    .hero-title {
      max-width: 780px;
      margin-bottom: 24px;
    }
    .hero-subtitle {
      font-size: 1.15rem;
      color: #444;
      max-width: 600px;
      margin-bottom: 36px;
    }
    .hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
    .hero-independance {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 48px;
      background: #1a1a1a;
      color: #f5f0eb;
      padding: 14px 22px;
      border-radius: 8px;
      font-size: 0.88rem;
      font-weight: 500;
      max-width: 600px;
    }
    .hero-independance strong { font-weight: 700; }

    /* ── Situations ── */
    .situations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }
    .situation-card {
      background: #fff;
      border-radius: 12px;
      padding: 28px 26px;
      border: 1px solid #e0dbd3;
    }
    .situation-icon { font-size: 1.6rem; margin-bottom: 14px; }
    .situation-card p {
      font-size: 1rem;
      font-style: italic;
      color: #333;
      margin-bottom: 0;
      line-height: 1.55;
    }

    /* ── Services ── */
    .services-list {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .service-item {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      background: #fff;
      border-radius: 10px;
      padding: 24px 26px;
      border: 1px solid #e0dbd3;
    }
    .service-check { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
    .service-item h3 { margin-bottom: 6px; }
    .service-item p { color: #555; margin-bottom: 0; }
    .independance-box {
      margin-top: 36px;
      background: #1a1a1a;
      color: #f5f0eb;
      border-radius: 12px;
      padding: 28px 32px;
      font-size: 1rem;
      line-height: 1.6;
    }
    .independance-box strong { font-weight: 700; font-size: 1.05rem; }

    /* ── Méthode ── */
    .methode-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      margin-top: 44px;
    }
    .step-card {
      background: #fff;
      border-radius: 12px;
      padding: 30px 26px;
      border: 1px solid #e0dbd3;
    }
    .step-number {
      width: 38px;
      height: 38px;
      background: #1a1a1a;
      color: #f5f0eb;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 16px;
    }
    .step-card h3 { margin-bottom: 10px; }
    .step-card p { color: #555; margin-bottom: 0; font-size: 0.95rem; }

    /* ── Médical ── */
    #medical { background: #1a1a1a; color: #f5f0eb; }
    #medical h2 { color: #f5f0eb; }
    .medical-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 44px;
    }
    @media (max-width: 640px) { .medical-grid { grid-template-columns: 1fr; } }
    .medical-card {
      background: #2a2a2a;
      border-radius: 12px;
      padding: 28px 26px;
      border: 1px solid #3a3a3a;
    }
    .medical-card h3 { color: #f5f0eb; margin-bottom: 14px; }
    .medical-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .medical-card ul li {
      color: #c8c2b8;
      font-size: 0.92rem;
      padding-left: 22px;
      position: relative;
    }
    .medical-card ul li::before {
      content: '✔';
      position: absolute;
      left: 0;
      color: #7ec87e;
      font-size: 0.85rem;
    }
    .fmh-badge {
      display: inline-block;
      margin-top: 28px;
      background: #2a2a2a;
      border: 1px solid #444;
      border-radius: 8px;
      padding: 14px 20px;
      font-size: 0.88rem;
      color: #c8c2b8;
    }
    .fmh-badge strong { color: #f5f0eb; }

    /* ── Témoignages ── */
    .temoignages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 44px;
    }
    .temoignage-card {
      background: #fff;
      border-radius: 12px;
      padding: 28px 26px;
      border: 1px solid #e0dbd3;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .stars { color: #c8a84b; font-size: 1rem; letter-spacing: 2px; }
    .temoignage-card blockquote {
      font-style: italic;
      color: #333;
      font-size: 0.95rem;
      line-height: 1.6;
      border: none;
      padding: 0;
    }
    .temoignage-author { font-size: 0.82rem; color: #888; }
    .temoignage-author strong { color: #555; display: block; }

    /* ── FAQ ── */
    .faq-list {
      margin-top: 44px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .faq-item {
      background: #fff;
      border-radius: 10px;
      padding: 24px 26px;
      border: 1px solid #e0dbd3;
    }
    .faq-item h3 { margin-bottom: 10px; font-size: 1rem; }
    .faq-item p { color: #555; font-size: 0.95rem; margin-bottom: 0; }

    /* ── Contact ── */
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-top: 44px;
    }
    @media (max-width: 700px) { .contact-layout { grid-template-columns: 1fr; gap: 36px; } }
    .contact-left h3 { font-size: 1.1rem; margin-bottom: 16px; color: #555; font-weight: 500; }
    .contact-checks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 36px;
    }
    .contact-checks li {
      padding-left: 26px;
      position: relative;
      font-size: 0.95rem;
      color: #444;
    }
    .contact-checks li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: #1a1a1a;
      font-weight: 700;
    }
    .contact-infos { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.95rem;
      color: #444;
    }
    .contact-info-item a { color: #1a1a1a; font-weight: 600; text-decoration: underline; }
    .contact-form {
      background: #fff;
      border-radius: 14px;
      padding: 36px 32px;
      border: 1px solid #e0dbd3;
    }
    .contact-form h3 { font-size: 1.1rem; margin-bottom: 24px; }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: #444;
      margin-bottom: 7px;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid #ddd8d0;
      border-radius: 8px;
      font-size: 0.95rem;
      font-family: inherit;
      background: #faf8f5;
      color: #1a1a1a;
      transition: border-color .2s;
    }
    .form-group input:focus,
    .form-group textarea:focus { outline: none; border-color: #1a1a1a; }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-submit {
      width: 100%;
      padding: 15px;
      background: #1a1a1a;
      color: #f5f0eb;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s;
    }
    .form-submit:hover { background: #333; }
    .form-note { text-align: center; font-size: 0.78rem; color: #999; margin-top: 10px; }
    .form-feedback { text-align: center; font-size: 0.86rem; color: #1a1a1a; margin-top: 14px; min-height: 1.4em; }
    .form-feedback.is-error { color: #b42318; }

    /* ── Footer ── */
    footer {
      background: #111;
      color: #888;
      padding: 48px 0 32px;
      font-size: 0.88rem;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .footer-logo { font-size: 1.1rem; font-weight: 800; color: #f5f0eb; margin-bottom: 6px; }
    .footer-brand p { color: #666; font-size: 0.85rem; max-width: 280px; line-height: 1.5; }
    .footer-links h4 { color: #f5f0eb; font-size: 0.88rem; margin-bottom: 14px; }
    .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-links ul a { color: #666; transition: color .2s; }
    .footer-links ul a:hover { color: #f5f0eb; }
    .footer-contact h4 { color: #f5f0eb; font-size: 0.88rem; margin-bottom: 14px; }
    .footer-contact p { color: #666; margin-bottom: 6px; }
    .footer-contact a { color: #888; transition: color .2s; }
    .footer-contact a:hover { color: #f5f0eb; }
    .footer-bottom {
      border-top: 1px solid #2a2a2a;
      padding-top: 20px;
      color: #555;
      font-size: 0.8rem;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }

    /* ── Utilitaires ── */
    .section-tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #888;
      margin-bottom: 12px;
    }
    .section-intro {
      color: #555;
      font-size: 1rem;
      max-width: 640px;
      margin-top: 16px;
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hero-cta-group { flex-direction: column; align-items: flex-start; }
    }

:root {
      --omx-text: #181512;
      --omx-muted: #62584f;
      --omx-muted-soft: #8a7d71;
      --omx-line: rgba(124, 108, 92, 0.16);
      --omx-surface: rgba(255, 255, 255, 0.82);
      --omx-surface-strong: rgba(255, 255, 255, 0.9);
      --omx-shadow-soft: 0 20px 60px -42px rgba(68, 48, 29, 0.28);
      --omx-shadow-card: 0 26px 70px -44px rgba(68, 48, 29, 0.34);
      --omx-shadow-cta: 0 18px 40px -24px rgba(24, 21, 18, 0.35);
      --omx-radius-lg: 24px;
      --omx-radius-md: 18px;
    }

    body {
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0) 34%),
        radial-gradient(circle at top right, rgba(255,248,241,0.9) 0%, rgba(255,248,241,0) 36%),
        linear-gradient(180deg, #fffdf9 0%, #f8f4ee 28%, #f4efe8 100%);
      color: var(--omx-text);
      line-height: 1.7;
      overflow-x: hidden;
    }
    h1, h2, h3 {
      line-height: 1.08;
      letter-spacing: -0.035em;
    }
    h1 { font-size: clamp(2.35rem, 5vw, 4.2rem); }
    h2 { font-size: clamp(1.85rem, 3.2vw, 2.9rem); }
    h3 { letter-spacing: -0.02em; }
    .container,
    .nav-inner { max-width: 1100px; padding-left: 28px; padding-right: 28px; }
    section { padding: 96px 0; position: relative; }
    section:nth-child(even) { background: linear-gradient(180deg, rgba(255,252,247,0.38) 0%, rgba(255,248,242,0.7) 100%); }

    .topbar {
      background: rgba(255, 252, 247, 0.72);
      color: var(--omx-muted-soft);
      font-size: 0.78rem;
      padding: 12px 16px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(124, 108, 92, 0.12);
      backdrop-filter: blur(14px);
    }
    nav {
      background: rgba(250, 246, 240, 0.78);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(124, 108, 92, 0.12);
      box-shadow: 0 12px 40px -34px rgba(56, 40, 26, 0.32);
      padding: 18px 0;
    }
    .nav-inner { gap: 30px; }
    .nav-logo { gap: 14px; flex-shrink: 0; }
    .nav-logo__mark { width: 46px; height: 46px; filter: drop-shadow(0 10px 18px rgba(0,0,0,0.08)); }
    .nav-logo__text { gap: 5px; }
    .nav-logo__name { font-size: 1.14rem; letter-spacing: 0.08em; }
    .nav-logo__sub { color: var(--omx-muted-soft); letter-spacing: 0.14em; }
    .nav-links { gap: 22px; }
    .nav-links a { color: var(--omx-muted); font-size: 0.92rem; }
    .nav-links a:hover { color: var(--omx-text); }
    .btn-nav,
    .btn-primary,
    .form-submit {
      background: linear-gradient(180deg, #241f1b 0%, #171310 100%);
      color: #fbf6ef !important;
      border-radius: 999px;
      box-shadow: var(--omx-shadow-cta);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .btn-nav:hover,
    .btn-primary:hover,
    .form-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 24px 46px -26px rgba(24, 21, 18, 0.44);
    }
    .btn-nav { padding: 12px 22px; }
    .btn-primary,
    .btn-secondary { border-radius: 999px; padding: 16px 30px; font-weight: 650; }
    .btn-secondary {
      background: rgba(255, 255, 255, 0.62);
      color: var(--omx-text);
      border: 1px solid rgba(124, 108, 92, 0.2);
      box-shadow: 0 16px 36px -30px rgba(68, 48, 29, 0.26);
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.88); border-color: rgba(124, 108, 92, 0.3); transform: translateY(-1px); }

    #accueil { background: transparent; padding: 112px 0 88px; }
    .hero-tag,
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 22px;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(124, 108, 92, 0.16);
      background: rgba(255, 255, 255, 0.62);
      color: var(--omx-muted-soft);
      letter-spacing: 0.14em;
      box-shadow: 0 14px 36px -30px rgba(68, 48, 29, 0.24);
    }
    .hero-title { max-width: 860px; }
    .hero-subtitle,
    .section-intro { color: var(--omx-muted); font-size: 1.12rem; max-width: 760px; }
    .hero-independance {
      background: rgba(255, 255, 255, 0.78);
      color: var(--omx-text);
      border: 1px solid rgba(124, 108, 92, 0.14);
      border-radius: var(--omx-radius-md);
      box-shadow: var(--omx-shadow-soft);
      padding: 18px 22px;
      max-width: 680px;
    }

    .situation-card,
    .temoignage-card,
    .step-card,
    .service-item,
    .faq-item,
    .contact-form {
      background: var(--omx-surface);
      border: 1px solid var(--omx-line);
      border-radius: var(--omx-radius-lg);
      box-shadow: var(--omx-shadow-card);
      backdrop-filter: blur(10px);
    }
    .situation-card,
    .temoignage-card,
    .step-card,
    .faq-item { padding: 30px 28px; }
    .service-item { padding: 28px; border-radius: var(--omx-radius-lg); }
    .service-item p,
    .step-card p,
    .faq-item p,
    .contact-checks li,
    .contact-info-item,
    .footer-brand p,
    .footer-contact p { color: var(--omx-muted); }
    .situation-card p,
    .temoignage-card blockquote { color: #302923; line-height: 1.68; }
    .service-check {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(124,108,92,0.12);
      font-size: 1.05rem;
    }
    .independance-box {
      background: linear-gradient(135deg, #1d1814 0%, #2a221d 100%);
      color: #f8f2ea;
      border-radius: 26px;
      box-shadow: 0 26px 70px -34px rgba(25, 18, 13, 0.46);
      padding: 30px 34px;
    }
    .step-number {
      width: 42px;
      height: 42px;
      background: linear-gradient(180deg, #221d18 0%, #181411 100%);
      box-shadow: 0 16px 30px -20px rgba(24,21,18,0.55);
    }

    #medical {
      background: linear-gradient(135deg, #201a16 0%, #2c241e 100%);
      border-top: 1px solid rgba(255,255,255,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .medical-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 22px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
      backdrop-filter: blur(12px);
      padding: 30px 28px;
    }
    .medical-card h3 { margin-bottom: 18px; }
    .medical-card ul { gap: 12px; }
    .medical-card li { color: #d8cec1; font-size: 0.95rem; line-height: 1.72; }
    .medical-card li::before { color: #c9f0ca; }
    .fmh-badge {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 18px;
      box-shadow: 0 18px 44px -32px rgba(0,0,0,0.42);
      padding: 16px 22px;
    }

    .contact-layout { gap: 64px; align-items: start; }
    .contact-form {
      padding: 38px 34px;
      background: var(--omx-surface-strong);
    }
    .form-group label,
    .contact-left h3,
    .contact-form h3 { color: #4d443d; font-weight: 600; }
    .form-group input,
    .form-group textarea {
      padding: 14px 15px;
      border: 1px solid rgba(124, 108, 92, 0.18);
      border-radius: 14px;
      background: rgba(255,255,255,0.72);
      transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: #9a8d81; }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: rgba(36, 31, 27, 0.42);
      box-shadow: 0 0 0 4px rgba(36, 31, 27, 0.08);
      background: rgba(255,255,255,0.92);
    }
    .form-group textarea { min-height: 120px; }
    .form-note,
    .footer-bottom { color: var(--omx-muted-soft); }

    footer {
      background: linear-gradient(180deg, #181310 0%, #0f0c0a 100%);
      color: #a79b8f;
      padding: 56px 0 34px;
    }
    .footer-inner { gap: 42px; }
    .footer-logo,
    .footer-links h4,
    .footer-contact h4 { color: #B01C2E; letter-spacing: 0.08em; }
    .footer-links ul a,
    .footer-contact a { color: #aa9d91; }
    .footer-links ul a:hover,
    .footer-contact a:hover { color: #fff7ee; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; }

    @media (max-width: 980px) {
      .nav-inner,
      .contact-layout,
      .footer-inner {
        display: grid;
        grid-template-columns: 1fr;
      }
      .nav-links {
        display: flex;
        gap: 14px 16px;
        justify-content: flex-start;
      }
      .medical-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 700px) {
      .container,
      .nav-inner { padding-left: 20px; padding-right: 20px; }
      section { padding: 76px 0; }
      #accueil { padding: 92px 0 72px; }
      .hero-cta-group,
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .situations-grid,
      .temoignages-grid,
      .methode-steps,
      .medical-grid { grid-template-columns: 1fr; }
      .btn-primary,
      .btn-secondary,
      .btn-nav,
      .form-submit { width: 100%; }
      .nav-links { width: 100%; }
    }

:root {
      --omx-ink: #06071b;
      --omx-burgundy: #561021;
      --omx-red: #bb2529;
      --omx-slate: #304251;
      --omx-cream: #f0ecbc;
      --omx-sage: #8ea8a1;
      --omx-text: #06071b;
      --omx-muted: #304251;
      --omx-muted-soft: #6f8883;
      --omx-line: rgba(48, 66, 81, 0.14);
      --omx-surface: rgba(255, 252, 245, 0.8);
      --omx-surface-strong: rgba(255, 252, 245, 0.92);
      --omx-shadow-soft: 0 20px 60px -42px rgba(6, 7, 27, 0.18);
      --omx-shadow-card: 0 26px 70px -44px rgba(48, 66, 81, 0.24);
      --omx-shadow-cta: 0 18px 40px -24px rgba(6, 7, 27, 0.34);
    }

    body {
      background:
        radial-gradient(circle at top left, rgba(187, 37, 41, 0.07) 0%, rgba(187, 37, 41, 0) 28%),
        radial-gradient(circle at top right, rgba(142, 168, 161, 0.18) 0%, rgba(142, 168, 161, 0) 34%),
        linear-gradient(180deg, #faf7ef 0%, #f5f1df 52%, #edf0e8 100%);
      color: var(--omx-text);
    }

    section:nth-child(even) {
      background: linear-gradient(180deg, rgba(240, 236, 188, 0.22) 0%, rgba(142, 168, 161, 0.12) 100%);
    }

    .topbar {
      background: linear-gradient(90deg, rgba(6, 7, 27, 0.96) 0%, rgba(86, 16, 33, 0.94) 100%);
      color: rgba(240, 236, 188, 0.92);
      border-bottom: 1px solid rgba(240, 236, 188, 0.16);
    }

    nav {
      background: rgba(240, 236, 188, 0.62);
      border-bottom: 1px solid rgba(48, 66, 81, 0.12);
      box-shadow: 0 12px 40px -34px rgba(6, 7, 27, 0.22);
    }

    .nav-logo__mark {
      filter: drop-shadow(0 10px 18px rgba(6, 7, 27, 0.14));
    }

    .nav-logo__name {
      color: var(--omx-ink);
      letter-spacing: 0.12em;
    }

    .nav-logo__sub {
      color: rgba(48, 66, 81, 0.72);
      letter-spacing: 0.16em;
    }

    .nav-links a {
      color: var(--omx-slate);
    }

    .nav-links a:hover {
      color: var(--omx-ink);
    }

    .btn-nav,
    .btn-primary,
    .form-submit {
      background: linear-gradient(180deg, #06071b 0%, #304251 100%);
      color: #fbf8f2 !important;
      box-shadow: var(--omx-shadow-cta);
    }

    .btn-nav:hover,
    .btn-primary:hover,
    .form-submit:hover {
      background: linear-gradient(180deg, #0d1029 0%, #3b5061 100%);
      box-shadow: 0 24px 46px -26px rgba(6, 7, 27, 0.44);
    }

    .btn-secondary {
      background: rgba(240, 236, 188, 0.42);
      color: var(--omx-ink);
      border: 1px solid rgba(48, 66, 81, 0.16);
      box-shadow: 0 16px 36px -30px rgba(48, 66, 81, 0.18);
    }

    .btn-secondary:hover {
      background: rgba(240, 236, 188, 0.64);
      border-color: rgba(48, 66, 81, 0.26);
    }

    .hero-tag,
    .section-tag {
      border: 1px solid rgba(48, 66, 81, 0.14);
      background: rgba(240, 236, 188, 0.5);
      color: rgba(48, 66, 81, 0.82);
      box-shadow: 0 14px 36px -30px rgba(6, 7, 27, 0.16);
    }

    .hero-subtitle,
    .section-intro,
    .service-item p,
    .step-card p,
    .faq-item p,
    .contact-checks li,
    .contact-info-item,
    .footer-brand p,
    .footer-contact p {
      color: var(--omx-muted);
    }

    .hero-independance {
      background: rgba(255, 252, 245, 0.72);
      border: 1px solid rgba(48, 66, 81, 0.12);
    }

    .situation-card,
    .temoignage-card,
    .step-card,
    .service-item,
    .faq-item,
    .contact-form {
      background: var(--omx-surface);
      border: 1px solid var(--omx-line);
      box-shadow: var(--omx-shadow-card);
    }

    .situation-card p,
    .temoignage-card blockquote {
      color: rgba(6, 7, 27, 0.84);
    }

    .service-check {
      background: rgba(142, 168, 161, 0.16);
      border: 1px solid rgba(142, 168, 161, 0.2);
      color: var(--omx-burgundy);
    }

    .independance-box {
      background: linear-gradient(135deg, #06071b 0%, #561021 100%);
      color: #f9f5ea;
      box-shadow: 0 26px 70px -34px rgba(6, 7, 27, 0.46);
    }

    .step-number {
      background: linear-gradient(180deg, #561021 0%, #bb2529 100%);
      box-shadow: 0 16px 30px -20px rgba(86, 16, 33, 0.55);
    }

    #medical {
      background: linear-gradient(135deg, #06071b 0%, #561021 52%, #304251 100%);
      border-top: 1px solid rgba(240, 236, 188, 0.08);
      border-bottom: 1px solid rgba(240, 236, 188, 0.08);
    }

    .medical-card {
      background: rgba(240, 236, 188, 0.08);
      border: 1px solid rgba(240, 236, 188, 0.12);
      padding: 34px 30px;
    }

    .medical-card h3 {
      margin-bottom: 22px;
    }

    .medical-card ul {
      gap: 14px;
    }

    .medical-card li {
      color: rgba(249, 245, 234, 0.82);
      line-height: 1.78;
    }

    .medical-card li::before {
      color: var(--omx-red);
    }

    .fmh-badge {
      background: rgba(240, 236, 188, 0.08);
      border: 1px solid rgba(240, 236, 188, 0.16);
    }

    .contact-form {
      background: var(--omx-surface-strong);
    }

    .form-group label,
    .contact-left h3,
    .contact-form h3 {
      color: #24313c;
    }

    .form-group input,
    .form-group textarea {
      border: 1px solid rgba(48, 66, 81, 0.18);
      background: rgba(255, 252, 245, 0.78);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder,
    .form-note,
    .footer-bottom {
      color: var(--omx-muted-soft);
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: rgba(48, 66, 81, 0.42);
      box-shadow: 0 0 0 4px rgba(48, 66, 81, 0.08);
      background: rgba(255, 252, 245, 0.96);
    }

    footer {
      background: linear-gradient(180deg, #06071b 0%, #121827 100%);
      color: rgba(240, 236, 188, 0.62);
    }

    .footer-logo,
    .footer-links h4,
    .footer-contact h4 {
      color: var(--omx-cream);
    }

    .footer-links ul a,
    .footer-contact a {
      color: rgba(240, 236, 188, 0.72);
    }

    .footer-links ul a:hover,
    .footer-contact a:hover {
      color: var(--omx-cream);
    }

    .footer-bottom {
      border-top: 1px solid rgba(240, 236, 188, 0.08);
    }

@media (max-width: 820px) {
      .topbar {
        font-size: 0.68rem;
        line-height: 1.45;
        padding: 10px 14px;
      }

      nav {
        padding: 14px 0 16px;
      }

      .nav-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: start;
      }

      .nav-logo {
        width: 100%;
        gap: 12px;
      }

      .nav-logo__mark {
        width: 42px;
        height: 42px;
      }

      .nav-logo__name {
        font-size: 1rem;
        letter-spacing: 0.1em;
      }

      .nav-logo__sub {
        font-size: 0.68rem;
        letter-spacing: 0.12em;
      }

      .nav-links {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
      }

      .nav-links li {
        width: 100%;
        list-style: none;
      }

      .nav-links li:last-child {
        grid-column: 1 / -1;
      }

      .nav-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        width: 100%;
        padding: 12px 14px;
        text-align: center;
        border-radius: 14px;
        background: rgba(255, 252, 245, 0.74);
        border: 1px solid rgba(48, 66, 81, 0.12);
      }

      .nav-links a.btn-nav {
        min-height: 52px;
      }

      #accueil {
        padding: 72px 0 48px;
      }

      .hero-tag,
      .section-tag {
        font-size: 0.68rem;
        line-height: 1.45;
        padding: 8px 12px;
      }

      .hero-title {
        max-width: none;
        font-size: clamp(2rem, 10.5vw, 2.9rem);
        margin-bottom: 18px;
      }

      .hero-subtitle,
      .section-intro {
        max-width: none;
        font-size: 1rem;
      }

      .hero-cta-group {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
      }

      .hero-independance {
        display: flex;
        width: 100%;
        max-width: none;
        margin-top: 28px;
        padding: 16px 18px;
        font-size: 0.92rem;
        line-height: 1.6;
      }

      .btn-primary,
      .btn-secondary,
      .btn-nav,
      .form-submit {
        width: 100%;
      }

      section {
        padding: 68px 0;
      }

      .situations-grid,
      .temoignages-grid,
      .methode-steps,
      .medical-grid,
      .contact-layout,
      .footer-inner {
        grid-template-columns: 1fr !important;
      }

      .situation-card,
      .temoignage-card,
      .step-card,
      .service-item,
      .faq-item,
      .medical-card,
      .contact-form {
        padding: 24px 20px;
        border-radius: 20px;
      }

      .contact-layout {
        gap: 32px;
      }

      .contact-infos {
        gap: 10px;
      }

      .contact-info-item {
        line-height: 1.6;
      }

      .form-group input,
      .form-group textarea {
        font-size: 16px;
      }

      .footer-bottom {
        display: grid;
        gap: 8px;
      }
    }

    @media (max-width: 520px) {
      .container,
      .nav-inner {
        padding-left: 16px;
        padding-right: 16px;
      }

      .nav-links {
        grid-template-columns: 1fr;
      }

      .hero-title {
        font-size: clamp(1.85rem, 11vw, 2.45rem);
      }

      .hero-subtitle,
      .section-intro,
      .medical-card li,
      .contact-checks li,
      .contact-info-item,
      .faq-item p {
        font-size: 0.96rem;
      }
    }

:root {
      --omx-pearl: #faf6f1;
      --omx-pearl-deep: #f3ede6;
      --omx-pearl-warm: #efe7df;
      --omx-stone: #cfc2b6;
      --omx-text-soft: #4d433d;
      --omx-text-muted: #7d7067;
      --omx-sage-light: #b7c6c0;
      --omx-sand-accent: #d9c8b8;
      --omx-surface-light: rgba(255, 252, 248, 0.9);
      --omx-line-soft: rgba(156, 138, 124, 0.16);
      --omx-shadow-light: 0 26px 60px -42px rgba(122, 105, 90, 0.18);
    }

    body {
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0) 26%),
        radial-gradient(circle at top right, rgba(183,198,192,0.18) 0%, rgba(183,198,192,0) 30%),
        linear-gradient(180deg, #fcf9f5 0%, #f6f1ea 48%, #efe7df 100%);
      color: var(--omx-text-soft);
      font-weight: 400;
    }

    h1,
    h2,
    h3,
    .nav-logo__name,
    .footer-logo {
      color: var(--omx-text-soft);
      font-weight: 600 !important;
      letter-spacing: -0.03em;
    }

    .nav-logo__sub,
    .section-intro,
    .hero-subtitle,
    .service-item p,
    .step-card p,
    .faq-item p,
    .contact-checks li,
    .contact-info-item,
    .footer-brand p,
    .footer-contact p,
    .form-note,
    .footer-bottom {
      color: var(--omx-text-muted) !important;
    }

    section:nth-child(even) {
      background: linear-gradient(180deg, rgba(255,255,255,0.26) 0%, rgba(239,231,223,0.78) 100%);
    }

    .topbar {
      background: rgba(246, 241, 234, 0.88);
      color: var(--omx-text-muted);
      border-bottom: 1px solid var(--omx-line-soft);
      backdrop-filter: blur(12px);
    }

    nav {
      background: rgba(250, 246, 241, 0.82);
      border-bottom: 1px solid var(--omx-line-soft);
      box-shadow: 0 16px 40px -34px rgba(122, 105, 90, 0.16);
      backdrop-filter: blur(18px);
    }

    .nav-links a {
      color: var(--omx-text-muted) !important;
      font-weight: 500;
    }

    .nav-links a:hover {
      color: var(--omx-text-soft) !important;
    }

    .nav-links a:not(.btn-nav) {
      background: rgba(255, 252, 248, 0.62);
      border: 1px solid rgba(207, 194, 182, 0.36);
    }

    .btn-nav,
    .btn-primary,
    .form-submit {
      background: linear-gradient(180deg, #d8c6b4 0%, #c7b6a5 100%) !important;
      color: #4f443d !important;
      border: 1px solid rgba(159, 139, 123, 0.18);
      box-shadow: 0 18px 32px -26px rgba(122, 105, 90, 0.18);
      font-weight: 600 !important;
    }

    .btn-nav:hover,
    .btn-primary:hover,
    .form-submit:hover {
      background: linear-gradient(180deg, #dfcebd 0%, #cfbeaf 100%) !important;
      box-shadow: 0 22px 36px -24px rgba(122, 105, 90, 0.2);
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: rgba(255, 252, 248, 0.78) !important;
      color: var(--omx-text-soft) !important;
      border: 1px solid rgba(159, 139, 123, 0.18) !important;
      box-shadow: 0 16px 34px -28px rgba(122, 105, 90, 0.12);
      font-weight: 500;
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.94) !important;
      color: var(--omx-text-soft) !important;
    }

    .hero-tag,
    .section-tag,
    .fmh-badge {
      background: rgba(255, 252, 248, 0.76) !important;
      color: var(--omx-text-muted) !important;
      border: 1px solid rgba(159, 139, 123, 0.14) !important;
      box-shadow: 0 16px 34px -30px rgba(122, 105, 90, 0.12);
      font-weight: 500;
    }

    .hero-title {
      max-width: 900px;
      line-height: 1.02;
    }

    .hero-independance,
    .independance-box {
      background: linear-gradient(180deg, rgba(250,246,241,0.92) 0%, rgba(243,237,230,0.96) 100%) !important;
      color: var(--omx-text-soft) !important;
      border: 1px solid rgba(159, 139, 123, 0.16);
      box-shadow: var(--omx-shadow-light);
    }

    .situation-card,
    .temoignage-card,
    .step-card,
    .service-item,
    .faq-item,
    .medical-card,
    .contact-form {
      background: var(--omx-surface-light) !important;
      border: 1px solid rgba(159, 139, 123, 0.12) !important;
      box-shadow: var(--omx-shadow-light) !important;
      backdrop-filter: blur(14px);
    }

    .situation-card p,
    .temoignage-card blockquote {
      color: var(--omx-text-soft) !important;
      font-style: normal;
    }

    .service-check,
    .step-number {
      background: linear-gradient(180deg, #b7c6c0 0%, #cfdcd7 100%) !important;
      color: #5b6a64 !important;
      border: 1px solid rgba(142, 168, 161, 0.28);
      box-shadow: none !important;
    }

    #medical {
      background: linear-gradient(180deg, #f6f1ea 0%, #eee6dd 100%) !important;
      color: var(--omx-text-soft) !important;
      border-top: 1px solid rgba(159, 139, 123, 0.1);
      border-bottom: 1px solid rgba(159, 139, 123, 0.1);
    }

    #medical h2,
    #medical .medical-card h3,
    #medical strong {
      color: var(--omx-text-soft) !important;
    }

    .medical-card li {
      color: var(--omx-text-muted) !important;
    }

    .medical-card li::before {
      color: #9fb1aa !important;
    }

    .form-group label,
    .contact-left h3,
    .contact-form h3 {
      color: var(--omx-text-soft) !important;
      font-weight: 600;
    }

    .form-group input,
    .form-group textarea {
      background: rgba(255,255,255,0.78) !important;
      border: 1px solid rgba(159, 139, 123, 0.16) !important;
      color: var(--omx-text-soft) !important;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #9c8d82 !important;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: rgba(183, 198, 192, 0.62) !important;
      box-shadow: 0 0 0 4px rgba(183, 198, 192, 0.14) !important;
      background: rgba(255,255,255,0.94) !important;
    }

    footer {
      background: linear-gradient(180deg, #f1eae2 0%, #e9e0d7 100%) !important;
      color: var(--omx-text-muted) !important;
      border-top: 1px solid rgba(159, 139, 123, 0.12);
    }

    .footer-links ul a,
    .footer-contact a {
      color: var(--omx-text-muted) !important;
    }

    .footer-links ul a:hover,
    .footer-contact a:hover {
      color: var(--omx-text-soft) !important;
    }

    .footer-bottom {
      border-top: 1px solid rgba(159, 139, 123, 0.1) !important;
    }

:root {
      --omx-air: 0 32px 80px -54px rgba(124, 108, 95, 0.16);
      --omx-air-soft: 0 22px 54px -44px rgba(124, 108, 95, 0.1);
    }

    body {
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0) 24%),
        radial-gradient(circle at 90% 10%, rgba(214, 225, 220, 0.16) 0%, rgba(214, 225, 220, 0) 26%),
        linear-gradient(180deg, #fdfbf8 0%, #f7f2ec 54%, #f2ebe3 100%);
    }

    .container,
    .nav-inner {
      max-width: 1140px !important;
    }

    section {
      padding: 104px 0;
    }

    .topbar {
      letter-spacing: 0.08em;
      font-size: 0.72rem;
    }

    nav {
      padding: 18px 0;
      background: rgba(252, 249, 245, 0.78);
      box-shadow: none;
    }

    .nav-logo__name {
      font-size: 1.02rem !important;
      font-weight: 600 !important;
      letter-spacing: 0.14em !important;
    }

    .nav-logo__sub {
      font-size: 0.69rem !important;
      letter-spacing: 0.18em !important;
      text-transform: uppercase;
    }

    .nav-links {
      gap: 18px;
    }

    .nav-links a:not(.btn-nav) {
      background: transparent;
      border: none;
      padding: 0;
      min-height: auto;
      border-radius: 0;
    }

    .nav-links a {
      font-size: 0.88rem;
    }

    .btn-nav,
    .btn-primary,
    .form-submit {
      border-radius: 999px !important;
      padding-top: 15px;
      padding-bottom: 15px;
      box-shadow: var(--omx-air-soft);
    }

    .btn-secondary {
      border-radius: 999px !important;
      padding-top: 15px;
      padding-bottom: 15px;
    }

    #accueil {
      padding: 132px 0 96px;
    }

    .hero-tag,
    .section-tag {
      padding: 9px 15px;
      border-radius: 999px;
      letter-spacing: 0.12em;
      font-size: 0.7rem;
    }

    .hero-title {
      max-width: 980px;
      margin-bottom: 22px;
      font-size: clamp(2.35rem, 5.8vw, 4.8rem);
      font-weight: 600 !important;
    }

    .hero-subtitle {
      max-width: 760px;
      font-size: 1.1rem;
      line-height: 1.82;
      margin-bottom: 42px;
    }

    .hero-cta-group {
      gap: 16px;
    }

    .hero-independance,
    .independance-box {
      border-radius: 24px !important;
      padding: 24px 26px !important;
      box-shadow: var(--omx-air);
    }

    .hero-independance {
      max-width: 760px;
      margin-top: 54px;
      font-size: 0.94rem;
      line-height: 1.72;
    }

    .situations-grid,
    .temoignages-grid,
    .methode-steps,
    .medical-grid {
      gap: 24px;
      margin-top: 46px;
    }

    .services-list,
    .faq-list {
      gap: 18px;
      margin-top: 46px;
    }

    .situation-card,
    .temoignage-card,
    .step-card,
    .service-item,
    .faq-item,
    .medical-card,
    .contact-form {
      border-radius: 24px !important;
      border-color: rgba(159, 139, 123, 0.09) !important;
      box-shadow: var(--omx-air) !important;
    }

    .situation-card,
    .temoignage-card,
    .step-card,
    .faq-item,
    .medical-card,
    .contact-form {
      padding: 30px !important;
    }

    .service-item {
      padding: 26px 28px !important;
      gap: 16px;
    }

    .service-item h3,
    .step-card h3,
    .faq-item h3,
    .medical-card h3,
    .contact-form h3,
    .contact-left h3 {
      font-weight: 600 !important;
      font-size: 1.08rem;
      margin-bottom: 10px;
    }

    .service-item p,
    .step-card p,
    .faq-item p,
    .medical-card li,
    .contact-checks li,
    .contact-info-item {
      line-height: 1.8;
    }

    .service-check,
    .step-number {
      width: 40px;
      height: 40px;
      font-weight: 600;
    }

    .contact-layout {
      gap: 72px;
      margin-top: 52px;
    }

    .contact-form {
      padding: 36px 34px !important;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      margin-bottom: 8px;
      font-size: 0.82rem;
      letter-spacing: 0.03em;
    }

    .form-group input,
    .form-group textarea {
      border-radius: 16px !important;
      padding: 15px 16px;
    }

    .form-group textarea {
      min-height: 128px;
    }

    footer {
      padding: 64px 0 34px;
    }

    .footer-inner {
      gap: 52px;
    }

    .footer-links h4,
    .footer-contact h4 {
      color: #B01C2E !important;
    }

    @media (max-width: 820px) {
      section {
        padding: 76px 0;
      }

      #accueil {
        padding: 86px 0 54px;
      }

      .hero-title {
        font-size: clamp(2.05rem, 10vw, 3.2rem);
      }

      .hero-subtitle {
        font-size: 1rem;
        line-height: 1.72;
      }

      .situation-card,
      .temoignage-card,
      .step-card,
      .service-item,
      .faq-item,
      .medical-card,
      .contact-form {
        padding: 24px !important;
      }

      .contact-layout {
        gap: 34px;
      }
    }

:root {
      --omx-accent-sage: #a8bbb3;
      --omx-accent-rose: #c9a79b;
      --omx-accent-burgundy-soft: #9d6d72;
      --omx-accent-cream: #efe3d6;
    }

    body {
      background:
        radial-gradient(circle at top left, rgba(201,167,155,0.16) 0%, rgba(201,167,155,0) 24%),
        radial-gradient(circle at 88% 10%, rgba(168,187,179,0.22) 0%, rgba(168,187,179,0) 26%),
        linear-gradient(180deg, #fdfbf8 0%, #f8f2eb 54%, #f3ebe3 100%);
    }

    section:nth-child(even) {
      background:
        linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(239,227,214,0.7) 100%);
    }

    .topbar {
      background: linear-gradient(90deg, rgba(239,227,214,0.9) 0%, rgba(230,238,234,0.88) 100%);
    }

    nav {
      background:
        linear-gradient(180deg, rgba(253,250,246,0.88) 0%, rgba(248,242,235,0.82) 100%);
    }

    .nav-links a:hover {
      color: var(--omx-accent-burgundy-soft) !important;
    }

    .btn-nav,
    .btn-primary,
    .form-submit {
      background: linear-gradient(135deg, #d8c5b6 0%, #c8a39f 48%, #b7c6c0 100%) !important;
      color: #4c413b !important;
      border: 1px solid rgba(157,109,114,0.12);
    }

    .btn-secondary {
      background: linear-gradient(180deg, rgba(255,252,248,0.92) 0%, rgba(244,236,228,0.88) 100%) !important;
    }

    .hero-tag {
      background: linear-gradient(180deg, rgba(255,252,248,0.9) 0%, rgba(243,233,224,0.92) 100%) !important;
      color: #8a736b !important;
    }

    .section-tag,
    .fmh-badge {
      background: linear-gradient(180deg, rgba(255,252,248,0.98) 0%, rgba(244,236,228,0.96) 100%) !important;
      color: #6e5954 !important;
      border: 1px solid rgba(166, 141, 132, 0.28) !important;
      font-size: 0.92rem !important;
      font-weight: 600 !important;
      letter-spacing: 0.11em !important;
      padding: 10px 18px !important;
      border-radius: 999px !important;
      box-shadow: 0 10px 24px rgba(90, 74, 69, 0.08) !important;
      margin-bottom: 24px !important;
    }

    .hero-tag::before,
    .section-tag::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--omx-accent-burgundy-soft) 0%, var(--omx-accent-sage) 100%);
      display: inline-block;
      margin-right: 10px;
      vertical-align: middle;
      box-shadow: 0 0 0 5px rgba(168,187,179,0.08);
    }

    .hero-independance,
    .independance-box {
      background:
        linear-gradient(135deg, rgba(255,250,245,0.96) 0%, rgba(242,234,228,0.96) 100%) !important;
      border: 1px solid rgba(201,167,155,0.18);
    }

    .situation-card,
    .temoignage-card,
    .step-card,
    .service-item,
    .faq-item,
    .medical-card,
    .contact-form {
      position: relative;
      overflow: hidden;
    }

    .situation-card::before,
    .temoignage-card::before,
    .step-card::before,
    .service-item::before,
    .faq-item::before,
    .medical-card::before,
    .contact-form::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, rgba(201,167,155,0.8) 0%, rgba(168,187,179,0.9) 100%);
    }

    .service-check,
    .step-number {
      background: linear-gradient(135deg, #e3cdc2 0%, #cfe0da 100%) !important;
      color: #816865 !important;
    }

    #medical {
      background:
        radial-gradient(circle at top right, rgba(168,187,179,0.18) 0%, rgba(168,187,179,0) 28%),
        linear-gradient(180deg, #f8f2eb 0%, #efe4db 100%) !important;
    }

    .medical-card {
      background:
        linear-gradient(180deg, rgba(255,252,248,0.92) 0%, rgba(247,239,232,0.92) 100%) !important;
    }

    .medical-card li::before {
      color: var(--omx-accent-burgundy-soft) !important;
    }

    .contact-info-item a {
      color: #8a6e68 !important;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: rgba(168,187,179,0.72) !important;
      box-shadow: 0 0 0 4px rgba(168,187,179,0.16) !important;
    }

    .services-list {
      counter-reset: omx-service;
    }

    .service-item {
      counter-increment: omx-service;
      align-items: center !important;
    }

    .service-check {
      position: relative;
      width: 50px !important;
      height: 50px !important;
      min-width: 50px;
      color: transparent !important;
      font-size: 0 !important;
      border-radius: 18px !important;
      background: linear-gradient(180deg, rgba(236,224,216,0.95) 0%, rgba(223,234,230,0.95) 100%) !important;
      border: 1px solid rgba(159,139,123,0.16) !important;
      box-shadow: 0 14px 26px rgba(122,104,92,0.08) !important;
    }

    .service-check::before {
      content: counter(omx-service, decimal-leading-zero);
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #7f6761;
      font-size: 0.84rem;
      font-weight: 600;
      letter-spacing: 0.08em;
    }

    .contact-checks {
      gap: 14px !important;
    }

    .contact-checks li {
      position: relative;
      padding: 15px 18px 15px 50px !important;
      background: linear-gradient(180deg, rgba(255,252,248,0.9) 0%, rgba(246,239,232,0.86) 100%);
      border: 1px solid rgba(159,139,123,0.1);
      border-radius: 18px;
      box-shadow: 0 10px 22px rgba(122,104,92,0.05);
    }

    .contact-checks li::before {
      content: "";
      position: absolute;
      left: 20px;
      top: 50%;
      width: 12px;
      height: 12px;
      border-radius: 999px;
      transform: translateY(-50%);
      background: linear-gradient(135deg, #c99ea6 0%, #b8c9c3 100%);
      box-shadow: 0 0 0 6px rgba(184,201,195,0.12);
    }

    .medical-card ul li {
      padding-left: 28px !important;
    }

    .medical-card ul li::before {
      content: "";
      width: 10px;
      height: 10px;
      top: 0.82rem;
      border-radius: 999px;
      background: linear-gradient(135deg, #ead3c7 0%, #b8c9c3 100%);
      box-shadow: 0 0 0 5px rgba(184,201,195,0.12);
    }

    footer {
      background:
        linear-gradient(180deg, #f3ebe3 0%, #eadfd5 100%) !important;
    }

:root {
      --omx-marine: #0F1923;
      --omx-swiss-red: #B01C2E;
      --omx-neutral-gray: #8A8A8A;
      --omx-paper: #FFFFFF;
      --omx-black-print: #111111;
    }

    body {
      background:
        radial-gradient(circle at top right, rgba(176,28,46,0.06) 0%, rgba(176,28,46,0) 22%),
        linear-gradient(180deg, #FFFFFF 0%, rgba(15,25,35,0.03) 100%) !important;
      color: var(--omx-marine) !important;
    }

    section:nth-child(even) {
      background: linear-gradient(180deg, rgba(15,25,35,0.02) 0%, rgba(15,25,35,0.045) 100%) !important;
    }

    .topbar,
    nav {
      background: rgba(255,255,255,0.92) !important;
      border-bottom-color: rgba(15,25,35,0.1) !important;
    }

    .nav-logo__sub,
    .section-intro,
    .hero-subtitle,
    .service-item p,
    .step-card p,
    .faq-item p,
    .contact-checks li,
    .contact-info-item,
    .footer-brand p,
    .footer-contact p,
    .form-note,
    .footer-bottom {
      color: var(--omx-neutral-gray) !important;
    }

    .nav-links a,
    .footer-links ul a,
    .footer-contact a,
    .contact-info-item a {
      color: var(--omx-marine) !important;
    }

    .nav-links a:hover,
    .footer-links ul a:hover,
    .footer-contact a:hover,
    .contact-info-item a:hover {
      color: var(--omx-swiss-red) !important;
    }

    .btn-nav,
    .btn-primary,
    .form-submit {
      background: var(--omx-marine) !important;
      color: var(--omx-paper) !important;
      border: 1px solid rgba(15,25,35,0.14) !important;
      box-shadow: 0 18px 34px -26px rgba(15,25,35,0.34) !important;
    }

    .btn-nav:hover,
    .btn-primary:hover,
    .form-submit:hover {
      background: var(--omx-swiss-red) !important;
      color: var(--omx-paper) !important;
    }

    .btn-secondary {
      background: rgba(255,255,255,0.86) !important;
      color: var(--omx-marine) !important;
      border: 1px solid rgba(15,25,35,0.14) !important;
    }

    .btn-secondary:hover {
      background: var(--omx-paper) !important;
      color: var(--omx-swiss-red) !important;
      border-color: rgba(176,28,46,0.24) !important;
    }

    .hero-tag,
    .section-tag,
    .fmh-badge {
      background: rgba(255,255,255,0.9) !important;
      color: var(--omx-marine) !important;
      border: 1px solid rgba(15,25,35,0.12) !important;
      box-shadow: 0 14px 30px -28px rgba(15,25,35,0.16) !important;
    }

    .hero-tag::before,
    .section-tag::before,
    .contact-checks li::before,
    .medical-card ul li::before {
      background: var(--omx-swiss-red) !important;
      box-shadow: 0 0 0 5px rgba(176,28,46,0.08) !important;
    }

    .hero-independance,
    .independance-box {
      background: linear-gradient(180deg, #13202d 0%, #0F1923 100%) !important;
      color: var(--omx-paper) !important;
      border: 1px solid rgba(176,28,46,0.16) !important;
      box-shadow: 0 24px 52px -34px rgba(15,25,35,0.46) !important;
    }

    .situation-card,
    .temoignage-card,
    .step-card,
    .service-item,
    .faq-item,
    .medical-card,
    .contact-form {
      background: rgba(255,255,255,0.92) !important;
      border: 1px solid rgba(15,25,35,0.1) !important;
      box-shadow: 0 24px 50px -42px rgba(15,25,35,0.18) !important;
    }

    .situation-card::before,
    .temoignage-card::before,
    .step-card::before,
    .service-item::before,
    .faq-item::before,
    .medical-card::before,
    .contact-form::before {
      background: linear-gradient(90deg, var(--omx-swiss-red) 0%, var(--omx-marine) 100%) !important;
    }

    .service-check,
    .step-number {
      background: rgba(15,25,35,0.06) !important;
      border: 1px solid rgba(15,25,35,0.1) !important;
      color: var(--omx-swiss-red) !important;
      box-shadow: none !important;
    }

    .service-check::before {
      color: var(--omx-marine) !important;
    }

    #medical {
      background: linear-gradient(180deg, rgba(15,25,35,0.03) 0%, rgba(15,25,35,0.06) 100%) !important;
      color: var(--omx-marine) !important;
      border-top: 1px solid rgba(15,25,35,0.08);
      border-bottom: 1px solid rgba(15,25,35,0.08);
    }

    #medical h2,
    #medical .medical-card h3,
    #medical strong {
      color: var(--omx-marine) !important;
    }

    .medical-card li {
      color: var(--omx-neutral-gray) !important;
    }

    .form-group input,
    .form-group textarea {
      background: rgba(255,255,255,0.96) !important;
      border: 1px solid rgba(15,25,35,0.12) !important;
      color: var(--omx-black-print) !important;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: var(--omx-neutral-gray) !important;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: rgba(176,28,46,0.42) !important;
      box-shadow: 0 0 0 4px rgba(176,28,46,0.08) !important;
    }

    footer {
      background: linear-gradient(180deg, rgba(15,25,35,0.02) 0%, rgba(15,25,35,0.06) 100%) !important;
      color: var(--omx-neutral-gray) !important;
      border-top: 1px solid rgba(15,25,35,0.08) !important;
    }

.omx-logo { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
    .omx-logo__mark { display: block; flex-shrink: 0; }
    .omx-logo--nav .omx-logo__mark { width: 40px; height: 40px; }
    .omx-logo--footer .omx-logo__mark { width: 36px; height: 36px; }
    .omx-logo__text { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
    .omx-logo__name { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 200; font-size: 17px; letter-spacing: 0.32em; line-height: 1; text-transform: uppercase; }
    .omx-logo__tagline { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400; font-size: 8px; letter-spacing: 0.26em; text-transform: uppercase; line-height: 1; color: #B01C2E; }
    .omx-logo__sub { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 300; font-size: 9px; letter-spacing: 0.16em; line-height: 1; margin-top: 2px; }
    .omx-logo--light .omx-logo__name { color: #0F1923; }
    .omx-logo--light .omx-logo__sub { color: rgba(15,25,35,0.48); }
    .footer-brand-copy {
      display: grid;
      gap: 8px;
      margin-top: 12px;
      max-width: 360px;
    }
    .footer-brand-copy span {
      display: block;
      color: var(--omx-neutral-gray) !important;
      font-size: 0.93rem;
      line-height: 1.62;
      font-weight: 350;
      letter-spacing: 0.01em;
    }
    .footer-brand-copy span:first-child {
      color: rgba(15, 25, 35, 0.76) !important;
      font-weight: 450;
    }
    .footer-brand .omx-logo { margin-bottom: 14px; }
    @media (max-width: 820px) { .omx-logo--nav .omx-logo__mark { width: 38px; height: 38px; } .omx-logo__name { font-size: 15px; letter-spacing: 0.24em; } .omx-logo__tagline { font-size: 7px; letter-spacing: 0.2em; } .omx-logo__sub { font-size: 8px; letter-spacing: 0.12em; } }

.nav-links .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(15, 25, 35, 0.08);
      box-shadow: 0 16px 32px -28px rgba(15, 25, 35, 0.22);
    }

    .nav-links .lang-link {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      min-width: 48px;
      min-height: 40px;
      padding: 0 14px !important;
      border-radius: 999px !important;
      color: #0F1923 !important;
      font-size: 0.78rem !important;
      font-weight: 600 !important;
      letter-spacing: 0.08em !important;
      text-transform: uppercase;
      background: transparent !important;
      border: none !important;
      white-space: nowrap;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }

    .nav-links .lang-link:hover,
    .nav-links .lang-link:focus-visible {
      background: rgba(176, 28, 46, 0.08) !important;
      color: #B01C2E !important;
      transform: translateY(-1px);
    }

    .nav-links .lang-link.is-current {
      background: #B01C2E !important;
      color: #fff !important;
      box-shadow: 0 14px 30px -24px rgba(176, 28, 46, 0.56);
    }

    @media (max-width: 820px) {
      .nav-links .lang-switch {
        width: 100%;
        justify-content: center;
      }
    }

.btn-primary,
    .form-submit {
      background: linear-gradient(180deg, rgba(176, 28, 46, 0.94) 0%, rgba(176, 28, 46, 0.84) 100%) !important;
      color: #fffdf9 !important;
      border: 1px solid rgba(176, 28, 46, 0.18) !important;
      box-shadow: 0 18px 38px -24px rgba(176, 28, 46, 0.28) !important;
    }
    .btn-primary:hover,
    .form-submit:hover {
      background: linear-gradient(180deg, rgba(191, 39, 58, 0.96) 0%, rgba(176, 28, 46, 0.9) 100%) !important;
      color: #fffdf9 !important;
      box-shadow: 0 22px 44px -24px rgba(176, 28, 46, 0.34) !important;
    }
    .hero-independance,
    .independance-box {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(252, 248, 243, 0.96) 100%) !important;
      color: rgba(15, 25, 35, 0.82) !important;
      border: 1px solid rgba(15, 25, 35, 0.08) !important;
      box-shadow: 0 20px 44px -34px rgba(15, 25, 35, 0.14) !important;
    }
    .hero-independance strong,
    .independance-box strong {
      color: #0F1923 !important;
    }
    .hero-independance {
      max-width: 720px;
    }
    .independance-box {
      background: linear-gradient(180deg, rgba(255, 250, 247, 0.98) 0%, rgba(250, 244, 239, 0.98) 100%) !important;
      color: rgba(15, 25, 35, 0.84) !important;
      border: 1px solid rgba(176, 28, 46, 0.12) !important;
      box-shadow: 0 18px 38px -30px rgba(15, 25, 35, 0.12) !important;
      position: relative;
    }
    .independance-box::before {
      content: "";
      position: absolute;
      inset: 18px auto 18px 18px;
      width: 3px;
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(176, 28, 46, 0.78) 0%, rgba(176, 28, 46, 0.28) 100%);
    }
    .independance-box strong {
      color: #0F1923 !important;
    }

.hero-tag,
    .section-tag {
      min-height: 40px !important;
      padding: 10px 16px !important;
      border-radius: 999px !important;
      white-space: nowrap;
      font-size: 0.72rem !important;
      font-weight: 600 !important;
      letter-spacing: 0.12em !important;
      line-height: 1 !important;
    }

.section-intro--wide { max-width: 760px; }
.section-tag--muted { color: #666; }
.section-intro--soft { color: #b0aa9f; margin-top: 16px; }
.medical-copy--lead { color: #3e4b58; margin-top: 12px; }
.medical-copy--body { color: #5f6c79; margin-top: 12px; }
.medical-copy--body.is-first { margin-top: 18px; }
.text-strong-inherit { color: inherit; font-weight: 700; }
