
    /* --- VARIABLES & RESET --- */
    :root {
      --primary: #0ea5e9;    /* Ocean Blue */
      --primary-dark: #0284c7;
      --secondary: #14b8a6;  /* Teal */
      --secondary-dark: #0f766e;
      --tertiary: #8b5cf6;   /* Violet */
      --tertiary-dark: #7c3aed;
      --alert: #dc2626;      /* Red */
      --warning: #ea580c;    /* Orange */
      --success: #16a34a;    /* Green */
      --dark-bg: #0f172a;    /* Slate 900 */
      --text-main: #1e293b;
      --text-muted: #64748b;
      --bg-light: #f8fafc;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      color: var(--text-main);
      line-height: 1.6;
      background: var(--bg-light);
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
    }

    /* --- BACKGROUND MESH GRADIENT APAISANT --- */
    .bg-lagon {
      position: fixed;
      top: 0; left: 0; width: 100vw; height: 100vh;
      background: 
        radial-gradient(circle at 12% 16%, rgba(14, 165, 233, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 88% 18%, rgba(20, 184, 166, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(254, 240, 138, 0.22) 0%, transparent 55%),
        linear-gradient(135deg, #f0fdfa 0%, #f0f9ff 50%, #f8fafc 100%);
      background-size: 200% 200%;
      animation: gradientShift 18s ease infinite;
      z-index: -1;
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* --- LAYOUT GLOBAL --- */
    main {
      flex: 1 0 auto;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px 60px 20px;
    }

    /* --- BANDEAU URGENCE VITALE (MODERNE & PLEINE LARGEUR) --- */
    .urgent-bar {
      background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
      color: white;
      padding: 10px 20px;
      font-size: 14px;
      letter-spacing: 0.2px;
      width: 100%;
      box-shadow: 0 4px 20px rgba(185, 28, 28, 0.28);
      position: relative;
      z-index: 20;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    .urgent-bar-content {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      text-align: center;
    }
    .urgent-text {
      font-weight: 500;
    }
    .urgent-text strong {
      font-weight: 800;
    }
    .pulse-dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      background-color: #fef2f2;
      border-radius: 50%;
      box-shadow: 0 0 0 0 rgba(254, 202, 202, 0.85);
      animation: pulse 1.8s infinite cubic-bezier(0.4, 0, 0.6, 1);
      flex-shrink: 0;
    }
    @keyframes pulse {
      0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(254, 202, 202, 0.85); }
      70% { transform: scale(1.1); box-shadow: 0 0 0 9px rgba(254, 202, 202, 0); }
      100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(254, 202, 202, 0); }
    }
    .urgent-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.45);
      color: white;
      padding: 4px 14px;
      border-radius: 9999px;
      font-size: 13px;
      font-weight: 800;
      text-decoration: none;
      backdrop-filter: blur(8px);
      transition: all 0.2s ease;
      white-space: nowrap;
    }
    .urgent-btn:hover {
      background: white;
      color: #b91c1c;
      border-color: white;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    /* --- HEADER HERO MODERNISÉ --- */
    .hero-section {
      text-align: center;
      padding: 40px 0 35px 0;
    }
    .hero-logo-container {
      margin: 0 auto 18px auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .hero-logo-img {
      width: 124px;
      height: 124px;
      border-radius: 50%;
      object-fit: cover;
      background: white;
      padding: 4px;
      box-shadow: 0 10px 30px rgba(14, 165, 233, 0.18), 0 0 0 4px rgba(255, 255, 255, 0.95), 0 0 0 6px rgba(14, 165, 233, 0.22);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    }
    .hero-logo-img:hover {
      transform: scale(1.05);
      box-shadow: 0 16px 40px rgba(14, 165, 233, 0.28), 0 0 0 4px white, 0 0 0 7px rgba(14, 165, 233, 0.38);
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(14, 165, 233, 0.25);
      box-shadow: 0 4px 20px rgba(14, 165, 233, 0.08);
      font-size: 13px;
      font-weight: 700;
      color: #0369a1;
      margin-bottom: 14px;
      letter-spacing: 0.2px;
    }
    .hero-badge-icon { font-size: 15px; }
    .hero-section h1 {
      font-size: 38px;
      font-weight: 850;
      color: #0f172a;
      letter-spacing: -0.8px;
      margin-bottom: 6px;
      line-height: 1.15;
    }
    .hero-motto {
      font-size: 15px;
      font-weight: 600;
      color: #475569;
      letter-spacing: 0.2px;
      margin: 0 0 14px 0;
    }
    .hero-tags {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 8px;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 700;
      color: #0284c7;
      background: rgba(14, 165, 233, 0.08);
      padding: 4px 12px;
      border-radius: 8px;
      border: 1px solid rgba(14, 165, 233, 0.18);
    }
    .hero-tag-accent {
      color: #0d9488;
      background: rgba(20, 184, 166, 0.08);
      border-color: rgba(20, 184, 166, 0.18);
    }
    .hero-tag-sep {
      color: #94a3b8;
      font-weight: 300;
    }

    /* --- EFFET VERRE GLASSMORPHISM 2.0 --- */
    .glass-card {
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-radius: 18px;
      box-shadow: 0 10px 35px -5px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(15, 23, 42, 0.03);
      transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .glass-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.05);
    }

    /* --- TRIAGE SECTION --- */
    .triage-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 28px;
      margin-bottom: 28px;
    }

    .triage-block {
      padding: 35px;
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .triage-block::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 5px;
    }
    .theme-internet::before {
      background: linear-gradient(90deg, #0ea5e9, #38bdf8);
    }
    .theme-phone::before {
      background: linear-gradient(90deg, #8b5cf6, #a855f7);
    }
    
    .triage-header { margin-bottom: 25px; }
    .triage-header-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
    }
    .triage-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    .theme-internet .triage-icon {
      background: rgba(14, 165, 233, 0.12);
      color: var(--primary);
    }
    .theme-phone .triage-icon {
      background: rgba(139, 92, 246, 0.12);
      color: var(--tertiary);
    }
    .triage-title {
      font-size: 24px;
      font-weight: 850;
      letter-spacing: -0.3px;
      margin-bottom: 0;
    }
    .theme-internet .triage-title { color: #0284c7; }
    .theme-phone .triage-title { color: #7c3aed; }
    .triage-desc {
      font-size: 15px;
      color: var(--text-muted);
      font-weight: 500;
      line-height: 1.55;
    }

    /* --- BOUTONS ET ACTIONS MODERNES --- */
    .action-stack {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 0;
    }

    .btn-action {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 18px 22px;
      border-radius: 14px;
      text-decoration: none;
      transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
      text-align: center;
      position: relative;
    }
    
    .btn-primary {
      background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
      color: white;
      box-shadow: 0 6px 20px rgba(14, 165, 233, 0.32);
      border: 1px solid rgba(255, 255, 255, 0.25);
    }
    .btn-primary:hover {
      background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(14, 165, 233, 0.42);
    }
    
    .btn-secondary {
      background: rgba(240, 253, 250, 0.9);
      color: #0f766e;
      border: 1.5px solid rgba(20, 184, 166, 0.35);
      box-shadow: 0 4px 15px rgba(20, 184, 166, 0.08);
    }
    .btn-secondary:hover {
      background: #14b8a6;
      color: white;
      border-color: #14b8a6;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(20, 184, 166, 0.28);
    }

    .btn-evaluation {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
      color: #6d28d9;
      border: 1.5px solid rgba(139, 92, 246, 0.35);
      box-shadow: 0 4px 15px rgba(139, 92, 246, 0.08);
    }
    .btn-evaluation:hover {
      background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
      color: white;
      border-color: #7c3aed;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(139, 92, 246, 0.32);
    }

    .btn-title {
      font-size: 16px;
      font-weight: 850;
      margin-bottom: 3px;
      letter-spacing: 0.3px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .btn-arrow {
      display: inline-block;
      transition: transform 0.2s ease;
    }
    .btn-action:hover .btn-arrow {
      transform: translateX(4px);
    }
    .btn-subtitle {
      font-size: 13px;
      font-weight: 500;
      opacity: 0.92;
    }

    /* Phone boxes (Clickable) */
    .phone-box {
      background: rgba(255, 255, 255, 0.7);
      border: 1.5px solid rgba(139, 92, 246, 0.25);
      border-radius: 14px;
      padding: 20px;
      text-align: center;
      text-decoration: none;
      display: block;
      transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .phone-box:hover {
      background: white;
      border-color: rgba(139, 92, 246, 0.6);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
    }
    .phone-box-badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 800;
      color: #7c3aed;
      background: rgba(139, 92, 246, 0.12);
      padding: 2px 10px;
      border-radius: 9999px;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      margin-bottom: 6px;
    }
    .phone-box-number {
      font-size: 32px;
      font-weight: 900;
      color: #0f172a;
      display: block;
      line-height: 1.1;
      margin-bottom: 4px;
      letter-spacing: -0.5px;
    }
    .phone-box-label {
      font-size: 13px;
      color: var(--tertiary);
      font-weight: 700;
    }
    
    .phone-box-alt {
      background: transparent;
      border: 1px dashed rgba(15, 23, 42, 0.2);
      margin-top: 10px;
      padding: 14px;
      border-radius: 12px;
    }
    .phone-box-alt:hover {
      border-color: rgba(15, 23, 42, 0.45);
      background: rgba(255, 255, 255, 0.5);
    }
    .phone-box-alt .phone-box-number {
      font-size: 19px;
      font-weight: 800;
      color: #334155;
    }
    .phone-box-alt .phone-box-label {
      color: var(--text-muted);
      font-size: 12px;
    }

    /* Encart de régulation Jennifer intégré dans la carte Téléphone */
    .phone-regulation-box {
      background: rgba(139, 92, 246, 0.05);
      border: 1px solid rgba(139, 92, 246, 0.2);
      border-radius: 12px;
      padding: 10px 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .phone-regulation-title {
      font-size: 12.5px;
      font-weight: 750;
      color: #6d28d9;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .schedule-chips-mini {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }
    .schedule-chip-mini {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: white;
      border: 1px solid rgba(139, 92, 246, 0.22);
      padding: 3px 8px;
      border-radius: 6px;
      font-size: 11.5px;
      color: #334155;
    }
    .schedule-chip-mini strong {
      color: #6d28d9;
    }

    /* Bulles d'information dépliables légères */
    .info-bubble-toggle {
      background: rgba(139, 92, 246, 0.04);
      border: 1px dashed rgba(139, 92, 246, 0.25);
      border-radius: 8px;
      padding: 6px 10px;
      font-size: 12px;
      color: #6d28d9;
      cursor: pointer;
      transition: background 0.15s ease;
    }
    .info-bubble-toggle:hover {
      background: rgba(139, 92, 246, 0.08);
    }
    .info-bubble-toggle summary {
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: space-between;
      list-style: none;
      user-select: none;
    }
    .info-bubble-toggle summary::-webkit-details-marker {
      display: none;
    }
    .info-bubble-toggle summary .toggle-badge {
      font-size: 10px;
      background: #8b5cf6;
      color: white;
      padding: 2px 6px;
      border-radius: 9999px;
      font-weight: 700;
    }
    .info-bubble-content {
      margin-top: 6px;
      padding-top: 6px;
      border-top: 1px solid rgba(139, 92, 246, 0.15);
      font-size: 11.5px;
      line-height: 1.5;
      color: #475569;
      cursor: default;
    }
    .phone-fallback-line {
      font-size: 11.5px;
      color: #64748b;
      text-align: center;
      padding: 6px 10px;
      border-radius: 8px;
      background: rgba(241, 245, 249, 0.7);
      border: 1px dashed #cbd5e1;
    }

    /* --- INFO BANNER JENNIFER REGULATION --- */
    .info-bar {
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(14, 165, 233, 0.25);
      border-left: 5px solid var(--primary);
      padding: 22px 26px;
      margin-bottom: 35px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .info-bar-header {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .info-bar-icon {
      font-size: 28px;
      background: rgba(14, 165, 233, 0.1);
      width: 46px;
      height: 46px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .info-bar-title {
      font-size: 16px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 2px;
    }
    .info-bar-desc {
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 500;
    }
    .schedule-chips {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 2px;
    }
    .schedule-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #f0f9ff;
      border: 1px solid rgba(14, 165, 233, 0.22);
      padding: 8px 14px;
      border-radius: 10px;
      font-size: 13px;
    }
    .chip-day {
      font-weight: 700;
      color: #0369a1;
    }
    .chip-time {
      font-weight: 800;
      color: #0284c7;
      background: white;
      padding: 2px 8px;
      border-radius: 6px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }
    .info-bar-footer {
      display: flex;
      align-items: center;
      gap: 8px;
      padding-top: 10px;
      border-top: 1px dashed rgba(14, 165, 233, 0.18);
      font-size: 13px;
      color: #475569;
    }

    /* --- QUICK LINKS (Grille 2x2 Équilibrée & Glow Coloré) --- */
    .quick-links {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 35px;
    }
    @media (max-width: 768px) {
      .quick-links {
        grid-template-columns: 1fr;
      }
    }
    .q-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      text-decoration: none;
      border-radius: 16px;
      border-left: 5px solid;
      transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease, border-color 0.22s ease;
    }
    .q-link-content {
      display: flex;
      flex-direction: column;
      padding-right: 12px;
    }
    .q-link-title {
      font-weight: 800;
      font-size: 16px;
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .q-link-desc {
      font-size: 13px;
      font-weight: 500;
      opacity: 0.88;
      line-height: 1.4;
    }
    .q-link-btn {
      font-size: 12px;
      font-weight: 800;
      padding: 8px 16px;
      border-radius: 50px;
      border: 1px solid;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      white-space: nowrap;
      transition: all 0.2s ease;
      flex-shrink: 0;
    }

    /* Themes Quick links avec Glow Hover */
    .ql-sport { border-left-color: var(--secondary); color: #115e59; }
    .ql-sport .q-link-btn { color: var(--secondary); border-color: rgba(20, 184, 166, 0.4); background: rgba(255,255,255,0.85); }
    .ql-sport:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px -8px rgba(20, 184, 166, 0.25), 0 0 0 1.5px rgba(20, 184, 166, 0.35);
    }
    .ql-sport:hover .q-link-btn { background: var(--secondary); color: white; border-color: var(--secondary); }
    
    .ql-saturday { border-left-color: var(--warning); color: #7c2d12; }
    .ql-saturday .q-link-btn { color: var(--warning); border-color: rgba(234, 88, 12, 0.4); background: rgba(255,255,255,0.85); }
    .ql-saturday:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px -8px rgba(234, 88, 12, 0.25), 0 0 0 1.5px rgba(234, 88, 12, 0.35);
    }
    .ql-saturday:hover .q-link-btn { background: var(--warning); color: white; border-color: var(--warning); }

    .ql-waitlist { border-left-color: #16a34a; color: #15803d; }
    .ql-waitlist .q-link-btn { color: #16a34a; border-color: rgba(22, 163, 74, 0.4); background: rgba(255,255,255,0.85); }
    .ql-waitlist:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px -8px rgba(22, 163, 74, 0.25), 0 0 0 1.5px rgba(22, 163, 74, 0.35);
    }
    .ql-waitlist:hover .q-link-btn { background: #16a34a; color: white; border-color: #16a34a; }

    .ql-contact { border-left-color: var(--tertiary); color: #5b21b6; }
    .ql-contact .q-link-btn { color: var(--tertiary); border-color: rgba(139, 92, 246, 0.4); background: rgba(255,255,255,0.85); }
    .ql-contact:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px -8px rgba(139, 92, 246, 0.25), 0 0 0 1.5px rgba(139, 92, 246, 0.35);
    }
    .ql-contact:hover .q-link-btn { background: var(--tertiary); color: white; border-color: var(--tertiary); }

    /* --- TEAM SECTION AVEC BADGES DE ROLES --- */
    .team-container { margin-top: 50px; }
    .team-container h2 {
      text-align: center;
      font-size: 20px;
      color: #0f172a;
      margin-bottom: 28px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 850;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 16px;
    }
    
    .team-card {
      padding: 22px 18px;
      text-align: center;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-radius: 16px;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }
    .team-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 30px -5px rgba(15, 23, 42, 0.1);
      border-color: rgba(14, 165, 233, 0.3);
    }
    .team-role-badge {
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 50px;
      margin-bottom: 12px;
      letter-spacing: 0.4px;
    }
    .team-name { font-weight: 800; font-size: 15px; color: #0f172a; margin-bottom: 5px; }
    
    /* Badges Couleurs pour la clarté immédiate */
    .badge-med { background: rgba(14, 165, 233, 0.1); color: var(--primary); border: 1px solid rgba(14, 165, 233, 0.2); }
    .badge-para { background: rgba(20, 184, 166, 0.1); color: var(--secondary); border: 1px solid rgba(20, 184, 166, 0.2); }
    .badge-admin { background: rgba(139, 92, 246, 0.1); color: var(--tertiary); border: 1px solid rgba(139, 92, 246, 0.2); }

    /* --- FOOTER PRO (Pleine largeur absolue) --- */
    footer.pro-space {
      background: var(--dark-bg);
      color: #f8fafc;
      width: 100%;
      padding: 60px 20px;
      flex-shrink: 0;
      border-top: 4px dashed #4f46e5;
    }
    .pro-container {
      max-width: 1100px; margin: 0 auto;
    }
    .pro-header { text-align: center; margin-bottom: 40px; }
    .pro-header h2 { font-size: 22px; color: #818cf8; text-transform: uppercase; margin: 0 0 10px 0; font-weight: 800; letter-spacing: 0.05em;}
    .pro-header p { font-size: 16px; color: #94a3b8; margin: 0; }

    .pro-banner {
      display: flex; justify-content: space-between; align-items: center;
      background: rgba(30, 41, 59, 0.8); border-left: 5px solid #6366f1;
      padding: 30px; text-decoration: none; color: #f8fafc; border-radius: 12px;
      transition: all 0.3s;
    }
    .pro-banner:hover { background: #1e293b; transform: translateY(-3px); border-color: #818cf8; box-shadow: 0 10px 30px rgba(0,0,0,0.3);}
    .pro-banner .sb-title { font-size: 18px; color: #c7d2fe; display: block; font-weight: 800; margin-bottom: 8px;}
    .pro-banner .sb-desc { color: #94a3b8; font-size: 15px;}
    .pro-banner .sb-action { font-weight: 800; font-size: 14px; margin-left: 20px; background: #4f46e5; padding: 12px 24px; border-radius: 8px; color: white; white-space: nowrap; transition: background 0.2s;}
    .pro-banner .sb-action:hover { background: #6366f1; }

    /* --- RESPONSIVE --- */
    @media (max-width: 768px) {
      .hero-section h1 { font-size: 28px; }
      .hero-tag-sep { display: none; }
      .quick-links { grid-template-columns: 1fr; }
      .q-link { flex-direction: column; text-align: center; align-items: center; gap: 15px; }
      .q-link-content { padding-right: 0; }
      .pro-banner { flex-direction: column; text-align: center; gap: 20px; }
      .pro-banner .sb-action { margin-left: 0; width: 100%; text-align: center; }
      .info-bar-header { flex-direction: column; text-align: center; }
      .schedule-chips { justify-content: center; }
    }
  
/* --- NAV MENU MODERNE (DESKTOP & MOBILE ESCAMOTABLE) --- */
.nav-menu {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
}

/* État masqué au scroll vers le bas sur mobile */
.nav-menu.nav-hidden {
    transform: translateY(-100%);
}

.nav-mobile-bar {
    display: contents;
}

.nav-burger-btn {
    display: none !important;
}

.nav-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-items a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2px;
    padding: 8px 14px;
    border-radius: 9999px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-items a:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
}

.nav-items a.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 10px rgba(14, 165, 233, 0.3);
}

.nav-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 850;
    font-size: 13px;
    color: #0f172a !important;
    padding: 4px 14px 4px 4px !important;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 9999px;
    margin-right: 6px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-brand-link:hover {
    background: white !important;
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.nav-brand-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.nav-link-etudiants {
    color: var(--tertiary) !important;
    border: 1px solid var(--tertiary) !important;
}
.nav-link-etudiants:hover {
    background: rgba(139, 92, 246, 0.1) !important;
}

/* --- VERSION MOBILE ESCAMOTABLE (< 768px) --- */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        padding: 8px 14px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    }
    .nav-mobile-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .nav-brand-link {
        margin-right: 0;
        padding: 3px 10px 3px 3px !important;
        font-size: 13px;
    }
    .nav-brand-logo {
        width: 26px;
        height: 26px;
    }
    .nav-burger-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: rgba(14, 165, 233, 0.08);
        border: 1px solid rgba(14, 165, 233, 0.3);
        color: var(--primary);
        padding: 6px 14px;
        min-height: 38px;
        min-width: 82px;
        border-radius: 9999px;
        font-size: 13px;
        font-weight: 800;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        transition: all 0.2s ease;
    }
    .nav-burger-btn:hover, .nav-burger-btn:active {
        background: var(--primary);
        color: white;
    }
    .nav-burger-btn .burger-icon {
        font-size: 14px;
        line-height: 1;
    }
    .nav-items {
        display: none; /* ESCAMOTABLE : masque par defaut sur mobile */
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        animation: navSlideDown 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .nav-items.nav-open {
        display: grid !important;
    }
    .nav-items a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 9px 8px;
        font-size: 12px;
        background: rgba(248, 250, 252, 0.95);
        border: 1px solid rgba(226, 232, 240, 0.9);
        border-radius: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .nav-items a:hover, .nav-items a:active {
        background: rgba(14, 165, 233, 0.12);
        color: var(--primary);
    }
    .nav-link-etudiants {
        grid-column: span 2;
        border-color: var(--tertiary) !important;
        color: var(--tertiary) !important;
    }

    /* Bandeau Urgence compact sur mobile */
    .urgent-bar {
        padding: 6px 12px;
        font-size: 12px;
    }
    .urgent-bar-content {
        justify-content: space-between;
        gap: 6px;
    }
    .urgent-text {
        font-size: 11px;
        text-align: left;
    }
    .urgent-btn {
        padding: 3px 8px;
        font-size: 11px;
    }
}

@keyframes navSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- BREADCRUMBS --- */
.breadcrumb {
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--text-muted);
}
.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* --- PAGE CONTENT V5 --- */
.page-container {
    max-width: 900px;
    margin: 40px auto;
}
.content-card {
    padding: 40px;
    margin-bottom: 30px;
}
.content-card h1 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 32px;
    border-bottom: 2px solid rgba(14, 165, 233, 0.2);
    padding-bottom: 15px;
}
.content-card h1 {
    color: var(--dark-bg);
    margin-bottom: 30px;
    font-size: 32px;
    border-bottom: 2px solid rgba(14, 165, 233, 0.2);
    padding-bottom: 15px;
    font-weight: 800;
}
.content-card h2 {
    color: #0f172a;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border-left: 5px solid var(--primary);
    padding: 14px 20px;
    border-radius: 0 10px 10px 0;
    margin-top: 45px;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
}
.content-card h3, .content-card h4 {
    color: var(--secondary);
    font-size: 19px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(20, 184, 166, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}
.content-card p {
    margin-bottom: 22px;
    line-height: 1.9;
    font-size: 16px;
    color: #334155;
}
.content-card .article-lead {
    font-size: 19px;
    line-height: 1.8;
    color: #0f172a;
    font-weight: 500;
    border-left: 4px solid var(--secondary);
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.08) 0%, transparent 100%);
    padding: 18px 22px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 30px;
}
.content-card ul, .content-card ol {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.content-card ul li, .content-card ol li {
    position: relative;
    padding: 14px 18px 14px 44px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 10px;
    line-height: 1.6;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(15, 23, 42, 0.02);
}
.content-card ul li:hover, .content-card ol li:hover {
    transform: translateX(4px);
    border-color: rgba(14, 165, 233, 0.4);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}
.content-card ul li::before, .content-card ol li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(14, 165, 233, 0.15);
    color: var(--primary);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
}
details.faq-accordion {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 12px;
    margin: 22px 0;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
}
details.faq-accordion[open] {
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.08);
}
details.faq-accordion summary {
    padding: 18px 22px;
    font-weight: 700;
    font-size: 17px;
    color: #0f172a;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
    transition: background 0.2s ease;
}
details.faq-accordion summary:hover {
    background: rgba(14, 165, 233, 0.05);
    color: var(--primary);
}
details.faq-accordion summary::after {
    content: "+";
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    transition: transform 0.3s ease;
}
details.faq-accordion[open] summary::after {
    content: "−";
}
details.faq-accordion .faq-body {
    padding: 20px 22px;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    color: #334155;
    line-height: 1.8;
}
.content-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.content-card a:hover {
    text-decoration: underline;
}
.content-card img {
    max-width: 100%;
    border-radius: 12px;
    margin: 25px auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* --- ARTICLE CARDS (HUB) --- */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.article-card {
    display: flex;
    flex-direction: column;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    border-top: 4px solid var(--primary);
    transition: transform 0.2s;
}
.article-card:hover {
    transform: translateY(-5px);
}
.article-card:nth-child(2n) {
    border-top-color: var(--secondary);
}
.article-card:nth-child(3n) {
    border-top-color: var(--tertiary);
}
.article-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-main);
}
.article-desc {
    font-size: 14px;
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 20px;
    line-height: 1.6;
}
.article-btn {
    align-self: flex-start;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    transition: background 0.2s;
}
.article-card:hover .article-btn {
    background: var(--primary);
    color: white;
}

/* --- V5 BOXES --- */
.warn-box {
    background-color: #fff8f2;
    border-left: 4px solid #fd7e14;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(253, 126, 20, 0.08);
    position: relative;
}
.warn-box::before {
    content: "⚠️";
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 20px;
}
.warn-box p { margin-left: 35px; margin-bottom: 0; }

.decision-box {
    background-color: #f3f0ff;
    border: 2px solid #845ef7;
    padding: 20px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(132, 94, 247, 0.1);
    position: relative;
}
.decision-box::before {
    content: "⚖️";
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 24px;
    background: white;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.decision-box p { margin-bottom: 0; font-weight: 500; }

.success-box {
    background-color: #ebfbee;
    border-left: 4px solid #2f9e44;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    position: relative;
}
.success-box::before {
    content: "✅";
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 20px;
}
.success-box p { margin-left: 35px; margin-bottom: 0; }

.info-box {
    background-color: #f0fcfd;
    border-left: 4px solid #17a2b8;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    position: relative;
}
.info-box::before {
    content: "ℹ️";
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 20px;
}
.info-box p { margin-left: 35px; margin-bottom: 0; }

.tip-box {
    background-color: #fff9db;
    border-left: 4px solid #f5c011;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    position: relative;
}
.tip-box::before {
    content: "💡";
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 20px;
}
.tip-box p { margin-left: 35px; margin-bottom: 0; }

/* --- V4 CUSTOM LISTS --- */
.custom-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 25px;
}
.custom-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    line-height: 1.8;
    background: rgba(14, 165, 233, 0.02);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 15px;
    border-radius: 8px;
}
.custom-list li::before {
    content: "✔️";
    position: absolute;
    left: 10px;
    top: 11px;
    font-size: 14px;
}

/* --- V4 HIGHLIGHTS --- */
.highlight-text {
    background: linear-gradient(120deg, rgba(23, 162, 184, 0.15) 0%, rgba(23, 162, 184, 0.05) 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    color: var(--primary);
}


/* ==========================================================================
   UX ENHANCEMENTS : Bento Résumé & Accordéons Anti-Texte-Long
   ========================================================================== */

.quick-summary-box {
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.95) 0%, rgba(224, 242, 254, 0.95) 100%);
    border: 1.5px solid rgba(14, 165, 233, 0.35);
    border-radius: 16px;
    padding: 22px 24px;
    margin: 20px 0 28px 0;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.08);
}
.quick-summary-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 850;
    color: #0369a1;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
    padding-bottom: 10px;
}
.quick-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.quick-summary-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(14, 165, 233, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: transform 0.2s ease;
}
.quick-summary-item:hover {
    transform: translateY(-2px);
    border-color: rgba(14, 165, 233, 0.4);
}
.quick-summary-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}
.quick-summary-text strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    margin-bottom: 3px;
}
.quick-summary-text span {
    color: #475569;
    font-size: 12.5px;
    line-height: 1.45;
}

/* Accordéons Dépliables */
details.faq-accordion {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 0;
    transition: all 0.2s ease;
    overflow: hidden;
}
details.faq-accordion[open] {
    border-color: #38bdf8;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.08);
}
details.faq-accordion summary {
    padding: 14px 18px;
    font-weight: 750;
    font-size: 15px;
    color: #1e293b;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    user-select: none;
    transition: background 0.2s;
}
details.faq-accordion summary::-webkit-details-marker {
    display: none;
}
details.faq-accordion summary::after {
    content: "＋";
    font-size: 16px;
    font-weight: bold;
    color: #0284c7;
    transition: transform 0.2s;
}
details.faq-accordion[open] summary {
    background: rgba(14, 165, 233, 0.08);
    color: #0369a1;
    border-bottom: 1px solid rgba(14, 165, 233, 0.15);
}
details.faq-accordion[open] summary::after {
    content: "—";
}
details.faq-accordion .accordion-body {
    padding: 18px;
    color: #334155;
    font-size: 14px;
    line-height: 1.65;
}


/* ==========================================================================
   MOTEUR DE RECHERCHE ACCUEIL AVEC SYNONYMES
   ========================================================================== */
.home-search-section {
    margin: 10px 0 35px 0;
}
.home-search-box {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.home-search-box:focus-within {
    border-color: #0ea5e9;
    box-shadow: 0 12px 36px rgba(14, 165, 233, 0.15);
}
.home-search-header {
    margin-bottom: 14px;
}
.home-search-title {
    font-size: 1.25rem;
    font-weight: 850;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 4px 0;
}
.home-search-subtitle {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}
.home-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.home-search-input-icon {
    position: absolute;
    left: 16px;
    font-size: 18px;
    color: #0ea5e9;
    pointer-events: none;
}
.home-search-input {
    width: 100%;
    padding: 14px 44px 14px 46px;
    font-size: 15px;
    color: #0f172a;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
}
.home-search-input:focus {
    background: white;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}
.home-search-clear-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    font-size: 16px;
    color: #94a3b8;
    cursor: pointer;
    padding: 6px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.home-search-clear-btn:hover {
    color: #0f172a;
    background: #f1f5f9;
}
.home-search-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.home-search-chip-label {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
}
.home-search-chip {
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.25);
    color: #0369a1;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}
.home-search-chip:hover {
    background: #0ea5e9;
    color: white;
    border-color: #0ea5e9;
    transform: translateY(-1px);
}
.home-search-results-box {
    margin-top: 16px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.search-results-list {
    display: flex;
    flex-direction: column;
}
.search-result-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
}
.search-result-card:last-child {
    border-bottom: none;
}
.search-result-card:hover {
    background: rgba(14, 165, 233, 0.06);
}
.search-result-icon {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
}
.search-result-body {
    flex: 1;
    min-width: 0;
}
.search-result-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
    flex-wrap: wrap;
}
.search-result-category {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(14, 165, 233, 0.12);
    color: #0369a1;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}
.search-result-title {
    font-size: 14.5px;
    color: #0f172a;
    font-weight: 750;
}
.search-result-desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-result-action {
    font-size: 12px;
    font-weight: 800;
    color: #0ea5e9;
    white-space: nowrap;
    margin-left: 10px;
}
@media (max-width: 768px) {
    .home-search-box {
        padding: 16px;
        border-radius: 16px;
    }
    .home-search-input {
        font-size: 14px;
        padding: 12px 38px 12px 40px;
    }
    .search-result-action {
        display: none;
    }
    .search-result-desc {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

/* ==========================================================================
   PIED DE PAGE (FOOTER ÉPURÉ)
   ========================================================================== */
.site-footer-minimal {
  margin-top: 35px;
  margin-bottom: 25px;
  padding: 18px 24px;
  text-align: center;
  border-radius: 16px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
}
.site-footer-minimal a {
  color: #0284c7;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}
.site-footer-minimal a:hover {
  color: #0369a1;
  text-decoration: underline;
}
.site-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 6px 0;
  font-weight: 600;
}
.site-footer-sep {
  color: #cbd5e1;
}
@media (max-width: 768px) {
  .site-footer-minimal {
    padding: 16px 14px;
    font-size: 12px;
  }
  .site-footer-links {
    gap: 10px;
  }
}


