/* NOTE: CSS inline pour simplicité - à externaliser en production */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
@media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }
body {
      background: linear-gradient(135deg, #0a1220 0%, #0f1729 50%, #0a0a14 100%);
      min-height: 100vh;
      font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      color: #ffffff;
      overflow-x: hidden;
    }
@keyframes gentleSlide {
      0% {
        left: -25px;
        transform: translateY(-50%) scale(0.7);
        opacity: 0;
      }
      10% {
        opacity: 0.6;
        transform: translateY(-50%) scale(0.9);
      }
      25% {
        opacity: 0.8;
        transform: translateY(-50%) scale(1);
      }
      70% {
        left: 20px;
        opacity: 0.4;
      }
      100% {
        left: 20px;
        transform: translateY(-50%) scale(0.7);
        opacity: 0;
      }
    }
@keyframes activityPulse {
      0%, 100% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(1.15);
        opacity: 0.8;
      }
    }
@keyframes shine {
      0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
      }
      100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
      }
    }
@keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-3px);
      }
    }
/* Animation cursor clignotant */
    @keyframes blink-cursor {
      0%, 49% { opacity: 1; }
      50%, 100% { opacity: 0; }
    }
@keyframes iconPulse {
      0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
      }
      50% {
        transform: translate(-50%, -50%) scale(1.15);
        filter: drop-shadow(0 0 16px rgba(59, 130, 246, 0.9)) drop-shadow(0 0 8px rgba(168, 85, 247, 0.5));
      }
    }
@keyframes glowPulse {
      0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
      }
      50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.7;
      }
    }
.btn-reply {
      padding: 12px 28px;
      background: rgba(59, 130, 246, 0.2);
      color: #60a5fa;
      border: 1px solid rgba(59, 130, 246, 0.4);
      border-radius: 13px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      align-items: center;
      gap: 8px;
    }
.btn-reply:hover {
      background: rgba(59, 130, 246, 0.3);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35);
    }
.btn-reply:active {
      transform: translateY(0);
    }
.btn-reply:focus-visible {
      outline: 2px solid #60a5fa;
      outline-offset: 2px;
    }
/* Inline Reply Editor (Desktop) */
    .inline-reply-editor {
      background: rgba(15, 20, 35, 0.9);
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 20px;
      padding: 24px;
      margin-top: 20px;
      margin-bottom: 20px;
      animation: slideDown 0.3s ease-out;
      display: none;
      max-width: 100%;
      width: 100%;
    }
.inline-reply-editor.show {
      display: block;
    }
@keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
.reply-engagement-header {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
      border: 1px solid rgba(59, 130, 246, 0.25);
      border-radius: 16px;
      padding: 16px 18px;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 14px;
      animation: pulseGlow 3s ease-in-out infinite;
    }
@keyframes pulseGlow {
      0%, 100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.3);
        border-color: rgba(59, 130, 246, 0.25);
      }
      50% {
        box-shadow: 0 0 20px 3px rgba(59, 130, 246, 0.2);
        border-color: rgba(59, 130, 246, 0.4);
      }
    }
.reply-engagement-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: #ffffff;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
      animation: iconBounce 2s ease-in-out infinite;
    }
@keyframes iconBounce {
      0%, 100% {
        transform: translateY(0) scale(1);
      }
      50% {
        transform: translateY(-3px) scale(1.05);
      }
    }
.reply-engagement-content {
      flex: 1;
    }
.reply-engagement-title {
      color: #ffffff;
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 3px;
      line-height: 1.2;
    }
.reply-engagement-subtitle {
      color: rgba(255, 255, 255, 0.7);
      font-size: 13px;
      line-height: 1.3;
    }
.reply-engagement-stat {
      color: #a855f7;
      font-weight: 600;
    }
.reply-error-message {
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
      border: 1px solid rgba(239, 68, 68, 0.3);
      border-radius: 12px;
      padding: 12px 14px;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fca5a5;
      font-size: 14px;
      animation: shake 0.4s ease;
      display: none;
    }
.reply-error-message.show {
      display: flex;
    }
@keyframes shake {
      0%, 100% { transform: translateX(0); }
      25% { transform: translateX(-5px); }
      75% { transform: translateX(5px); }
    }
.reply-error-message i {
      color: #f87171;
      font-size: 16px;
    }
.reply-emoji-picker {
      background: rgba(30, 41, 59, 0.4);
      border: 1px solid rgba(100, 116, 139, 0.3);
      border-radius: 14px;
      padding: 10px 12px;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }
.reply-emoji-btn {
      width: 40px;
      height: 40px;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      cursor: pointer;
      transition: all 0.2s ease;
      user-select: none;
    }
.reply-emoji-btn:hover {
      background: rgba(59, 130, 246, 0.2);
      border-color: rgba(59, 130, 246, 0.4);
      transform: scale(1.15);
    }
.reply-emoji-btn:active {
      transform: scale(0.95);
    }
.inline-reply-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }
.inline-reply-title {
      color: #ffffff;
      font-size: 18px;
      font-weight: 600;
    }
.inline-reply-close {
      width: 32px;
      height: 32px;
      background: rgba(239, 68, 68, 0.2);
      border: 1px solid rgba(239, 68, 68, 0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f87171;
      cursor: pointer;
      transition: all 0.2s;
      font-size: 16px;
    }
.inline-reply-close:hover {
      background: rgba(239, 68, 68, 0.3);
      transform: scale(1.1);
    }
.inline-reply-close:focus-visible {
      outline: 2px solid #f87171;
      outline-offset: 2px;
    }
.reply-textarea {
      width: 100%;
      min-height: 120px;
      background: rgba(30, 41, 59, 0.5);
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 14px;
      padding: 14px;
      color: #ffffff;
      font-size: 15px;
      font-family: inherit;
      resize: vertical;
      margin-bottom: 16px;
      transition: border-color 0.3s;
    }
.reply-textarea:focus {
      outline: none;
      border-color: rgba(59, 130, 246, 0.6);
    }
.reply-textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }
.reply-identity-section {
      margin-bottom: 16px;
    }
.reply-firstname-input {
      width: 100%;
      background: rgba(30, 41, 59, 0.5);
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 12px;
      padding: 12px 14px;
      color: #ffffff;
      font-size: 15px;
      font-family: inherit;
      margin-bottom: 12px;
      transition: all 0.3s;
    }
.reply-firstname-input:focus {
      outline: none;
      border-color: rgba(59, 130, 246, 0.6);
      background: rgba(30, 41, 59, 0.7);
    }
.reply-firstname-input::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }
.reply-firstname-input.hidden {
      display: none;
    }
.reply-anonymous-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 14px;
      background: rgba(30, 41, 59, 0.3);
      border: 1px solid rgba(100, 116, 139, 0.3);
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s;
      user-select: none;
    }
.reply-anonymous-toggle:hover {
      background: rgba(30, 41, 59, 0.4);
      border-color: rgba(100, 116, 139, 0.4);
    }
.reply-anonymous-label {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      font-weight: 500;
    }
.reply-anonymous-label i {
      color: rgba(100, 116, 139, 0.8);
      font-size: 16px;
    }
.inline-reply-actions {
      display: flex;
      gap: 10px;
      justify-content: flex-end;
    }
/* Sheet Overlay */
    .sheet-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(10, 18, 32, 0.70);
      backdrop-filter: blur(12px) saturate(150%);
      -webkit-backdrop-filter: blur(12px) saturate(150%);
      z-index: 999998;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
.sheet-overlay.show {
      opacity: 1;
      pointer-events: all;
    }
/* Universal Sheet - un seul sheet qui s'adapte */
    .universal-sheet {
      position: fixed;
      background: rgba(15, 20, 35, 0.85);
      backdrop-filter: blur(30px) saturate(150%);
      -webkit-backdrop-filter: blur(30px) saturate(150%);
      overflow-y: auto;
      z-index: 999999;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(255, 255, 255, 0.12);
      will-change: transform;
      /* Mobile par défaut */
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 32px 32px 0 0;
      max-height: 90vh;
      box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.6);
    }
/* Desktop */
    @media (min-width: 969px) {
      .universal-sheet {
        right: 0;
        top: 0;
        bottom: 0;
        left: auto;
        width: 480px;
        max-width: 90vw;
        border-radius: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: -10px 0 60px rgba(0, 0, 0, 0.6);
        max-height: 100vh;
        transform: translateX(100%);
      }

      .universal-sheet.show {
        transform: translateX(0);
      }

      .sheet-handle {
        display: none;
      }
    }
.universal-sheet.show {
      transform: translateY(0);
    }
.universal-sheet.dragging {
      transition: none;
    }
/* Sheet Content */
    .sheet-handle {
      width: 40px;
      height: 4px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 2px;
      margin: 12px auto;
      display: block;
      cursor: grab;
      transition: background 0.2s ease;
      animation: handlePulse 3s ease-in-out infinite;
    }
@keyframes handlePulse {
      0%, 100% {
        background: rgba(255, 255, 255, 0.3);
        transform: scaleX(1);
      }
      50% {
        background: rgba(255, 255, 255, 0.5);
        transform: scaleX(1.2);
      }
    }
.sheet-handle:hover {
      background: rgba(255, 255, 255, 0.5);
      animation: none;
    }
.sheet-handle:active {
      cursor: grabbing;
      background: rgba(255, 255, 255, 0.6);
      animation: none;
    }
.sheet-video-header {
      position: relative;
      height: 200px;
      overflow: hidden;
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
      flex-shrink: 0;
    }
@media (min-width: 969px) {
      .sheet-video-header {
        height: 240px;
      }
    }
.sheet-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
.sheet-video-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(15, 20, 35, 0.7) 100%);
    }
.sheet-header {
      position: sticky;
      top: 0;
      background: rgba(15, 20, 35, 0.95);
      backdrop-filter: blur(20px);
      padding: 20px 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 10;
    }
.sheet-title {
      color: #ffffff;
      font-size: 22px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 12px;
    }
.sheet-close {
      width: 40px;
      height: 40px;
      background: rgba(239, 68, 68, 0.2);
      border: 1px solid rgba(239, 68, 68, 0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f87171;
      cursor: pointer;
      transition: all 0.2s;
      font-size: 18px;
    }
.sheet-close:hover {
      background: rgba(239, 68, 68, 0.3);
      transform: rotate(90deg) scale(1.1);
    }
.sheet-close:focus-visible {
      outline: 2px solid #f87171;
      outline-offset: 2px;
    }
.sheet-body {
      padding: 24px;
    }
.sheet-section {
      margin-bottom: 28px;
    }
.sheet-section-title {
      color: #ffffff;
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
.sheet-section-title i {
      color: #a855f7;
      font-size: 18px;
    }
.sheet-description {
      color: rgba(255, 255, 255, 0.8);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 16px;
    }
.sheet-info-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 12px;
      margin-bottom: 10px;
    }
.sheet-info-icon {
      width: 36px;
      height: 36px;
      background: rgba(59, 130, 246, 0.2);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #60a5fa;
      font-size: 16px;
      flex-shrink: 0;
    }
.sheet-info-content {
      flex: 1;
    }
.sheet-info-label {
      color: rgba(255, 255, 255, 0.6);
      font-size: 12px;
      margin-bottom: 4px;
    }
.sheet-info-value {
      color: #ffffff;
      font-size: 15px;
      font-weight: 500;
    }
/* AI Actions dans Sheet */
    .sheet-ai-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: all 0.3s ease;
    }
.sheet-ai-actions.pulse {
      animation: sectionPulse 1.5s ease-out;
    }
@keyframes sectionPulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
      }
      50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
      }
    }
.sheet-ai-action-btn {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 14px;
      padding: 16px 18px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 14px;
      width: 100%;
      text-align: left;
    }
.sheet-ai-action-btn:hover {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
      border-color: rgba(59, 130, 246, 0.5);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
    }
.sheet-ai-action-btn:focus-visible {
      outline: 2px solid #60a5fa;
      outline-offset: 2px;
    }
.sheet-ai-action-icon {
      font-size: 24px;
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(59, 130, 246, 0.15);
      border-radius: 10px;
    }
.sheet-ai-action-content {
      flex: 1;
    }
.sheet-ai-action-title {
      color: #ffffff;
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 2px;
    }
.sheet-ai-action-subtitle {
      color: rgba(255, 255, 255, 0.6);
      font-size: 12px;
      line-height: 1.3;
    }
/* AI Loading dans Sheet */
    .sheet-ai-loading {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
      border: 1px solid rgba(139, 92, 246, 0.3);
      border-radius: 18px;
      padding: 32px;
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      animation: loadingPulse 2s ease-in-out infinite;
    }
.sheet-ai-loading.show {
      display: flex;
    }
@keyframes loadingPulse {
      0%, 100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
        border-color: rgba(139, 92, 246, 0.3);
      }
      50% {
        box-shadow: 0 0 20px 5px rgba(139, 92, 246, 0.2);
        border-color: rgba(139, 92, 246, 0.5);
      }
    }
.sheet-ai-spinner {
      position: relative;
      width: 60px;
      height: 60px;
    }
.sheet-spinner-ring {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #8b5cf6;
      animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    }
.sheet-spinner-ring:nth-child(2) {
      border-top-color: #3b82f6;
      animation-delay: 0.3s;
      width: 70%;
      height: 70%;
      top: 15%;
      left: 15%;
    }
.sheet-spinner-ring:nth-child(3) {
      border-top-color: #06b6d4;
      animation-delay: 0.6s;
      width: 40%;
      height: 40%;
      top: 30%;
      left: 30%;
    }
@keyframes spin {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
.sheet-ai-loading-text {
      text-align: center;
    }
.sheet-ai-loading-title {
      color: #ffffff;
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 6px;
    }
.sheet-ai-loading-subtitle {
      color: rgba(255, 255, 255, 0.6);
      font-size: 13px;
    }
/* AI Result dans Sheet */
    .sheet-ai-result {
      background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
      border: 1px solid rgba(20, 184, 166, 0.4);
      border-radius: 18px;
      padding: 20px;
      animation: slideIn 0.4s ease;
      display: none;
    }
.sheet-ai-result.show {
      display: block;
    }
@keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
.sheet-ai-result-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }
.sheet-ai-result-icon {
      width: 40px;
      height: 40px;
      background: rgba(20, 184, 166, 0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #5eead4;
      font-size: 18px;
    }
.sheet-ai-result-title {
      flex: 1;
      color: #ffffff;
      font-size: 16px;
      font-weight: 600;
    }
.sheet-ai-result-close {
      width: 28px;
      height: 28px;
      background: rgba(239, 68, 68, 0.2);
      border: 1px solid rgba(239, 68, 68, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f87171;
      cursor: pointer;
      transition: all 0.2s;
      font-size: 12px;
    }
.sheet-ai-result-close:hover {
      background: rgba(239, 68, 68, 0.3);
      transform: rotate(90deg);
    }
.sheet-ai-result-close:focus-visible {
      outline: 2px solid #f87171;
      outline-offset: 2px;
    }
.sheet-ai-result-content {
      margin-bottom: 16px;
    }
.sheet-ai-result-main {
      color: #ffffff;
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 16px;
      line-height: 1.4;
    }
.sheet-ai-result-main.hours-formatted {
      margin-bottom: 0;
      font-weight: 400;
    }
.sheet-hours-container {
      display: flex;
      flex-direction: column;
      gap: 8px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 12px;
      padding: 12px;
    }
.sheet-hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 12px;
      background: linear-gradient(135deg, rgba(52, 211, 153, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
      border: 1px solid rgba(52, 211, 153, 0.15);
      border-radius: 8px;
      transition: all 0.2s ease;
    }
.sheet-hours-row:hover {
      background: linear-gradient(135deg, rgba(52, 211, 153, 0.12) 0%, rgba(16, 185, 129, 0.08) 100%);
      border-color: rgba(52, 211, 153, 0.25);
      transform: translateX(2px);
    }
.sheet-hours-day {
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      font-weight: 600;
      text-transform: capitalize;
      min-width: 80px;
    }
.sheet-hours-time {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      font-weight: 500;
      text-align: right;
      font-variant-numeric: tabular-nums;
    }
.sheet-ai-result-action-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 28px;
      background: linear-gradient(90deg, #14b8a6 0%, #06b6d4 100%);
      color: #ffffff;
      font-size: 15px;
      font-weight: 600;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
      margin-top: 4px;
    }
.sheet-ai-result-action-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(20, 184, 166, 0.5);
      background: linear-gradient(90deg, #0d9488 0%, #0891b2 100%);
    }
.sheet-ai-result-action-btn:active {
      transform: translateY(0);
    }
.sheet-ai-result-action-btn:focus-visible {
      outline: 2px solid #14b8a6;
      outline-offset: 3px;
    }
.sheet-ai-result-action-btn i {
      font-size: 16px;
    }
.sheet-ai-result-details {
      color: rgba(255, 255, 255, 0.7);
      font-size: 13px;
      line-height: 1.5;
    }
.sheet-ai-result-action {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 24px;
      background: linear-gradient(90deg, #14b8a6 0%, #06b6d4 100%);
      color: #ffffff;
      font-size: 14px;
      font-weight: 600;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    }
.sheet-ai-result-action:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
    }
.sheet-ai-result-action:focus-visible {
      outline: 2px solid #14b8a6;
      outline-offset: 2px;
    }
/* CTA Voir fiche complète */
    .sheet-cta {
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
.sheet-cta-btn {
      width: 100%;
      padding: 16px 28px;
      background: linear-gradient(90deg, 
        #4f46e5 0%,
        #7c3aed 30%,
        #a855f7 60%,
        #c084fc 85%,
        #e879f9 100%
      );
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      border: none;
      border-radius: 16px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-decoration: none;
    }
.sheet-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(124, 58, 237, 0.5);
    }
.sheet-cta-btn:active {
      transform: translateY(0);
    }
.sheet-cta-btn:focus-visible {
      outline: 2px solid #a855f7;
      outline-offset: 2px;
    }
/* Reply Bottom Sheet (Mobile uniquement) */
    .reply-bottom-sheet {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      height: 85vh;
      max-height: 85vh;
      background: rgba(15, 20, 35, 0.98);
      backdrop-filter: blur(30px) saturate(150%);
      -webkit-backdrop-filter: blur(30px) saturate(150%);
      border-radius: 24px 24px 0 0;
      display: none;
      flex-direction: column;
      z-index: 10000;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
      will-change: transform;
    }
.reply-bottom-sheet.show {
      transform: translateY(0);
      display: flex;
    }
.reply-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 9999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
.reply-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }
.reply-sheet-handle {
      width: 40px;
      height: 4px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 2px;
      margin: 12px auto;
      display: block;
      cursor: grab;
      transition: background 0.2s ease;
      position: relative;
      z-index: 1;
    }
.reply-sheet-handle:hover {
      background: rgba(255, 255, 255, 0.5);
    }
.reply-sheet-handle:active {
      cursor: grabbing;
      background: rgba(255, 255, 255, 0.6);
    }
.reply-sheet-drag-area {
      padding: 0;
      cursor: grab;
      touch-action: none;
      user-select: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
.reply-sheet-drag-area:active {
      cursor: grabbing;
    }
.reply-sheet-header {
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      flex-shrink: 0;
    }
.reply-sheet-back {
      width: 40px;
      height: 40px;
      border: none;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      color: #fff;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }
.reply-sheet-back:hover {
      background: rgba(255, 255, 255, 0.1);
    }
.reply-sheet-back:active {
      transform: scale(0.95);
    }
.reply-sheet-body {
      padding: 20px;
      overflow-y: auto;
      flex: 1;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
    }
.reply-sheet-title {
      color: #ffffff;
      font-size: 18px;
      font-weight: 600;
      flex: 1;
      text-align: center;
    }
.reply-sheet-close {
      width: 36px;
      height: 36px;
      background: rgba(239, 68, 68, 0.2);
      border: 1px solid rgba(239, 68, 68, 0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f87171;
      cursor: pointer;
      transition: all 0.2s;
      font-size: 16px;
    }
.reply-sheet-close:hover {
      background: rgba(239, 68, 68, 0.3);
      transform: scale(1.1);
    }
/* Scrollbar pour sheets */
    .universal-sheet::-webkit-scrollbar,
    .reply-sheet-body::-webkit-scrollbar {
      width: 8px;
    }
.universal-sheet::-webkit-scrollbar-track,
    .reply-sheet-body::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
    }
.universal-sheet::-webkit-scrollbar-thumb,
    .reply-sheet-body::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.2);
      border-radius: 4px;
    }
.universal-sheet::-webkit-scrollbar-thumb:hover,
    .reply-sheet-body::-webkit-scrollbar-thumb:hover {
      background: rgba(255, 255, 255, 0.3);
    }
/* Account Tunnel (Modale) */
    .account-tunnel-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(10, 18, 32, 0.75);
      backdrop-filter: blur(16px) saturate(150%);
      -webkit-backdrop-filter: blur(16px) saturate(150%);
      z-index: 10001;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
.account-tunnel-overlay.show {
      opacity: 1;
      pointer-events: all;
    }
.account-tunnel {
      background: rgba(15, 20, 35, 0.90);
      backdrop-filter: blur(35px) saturate(150%);
      -webkit-backdrop-filter: blur(35px) saturate(150%);
      border: 1px solid rgba(59, 130, 246, 0.25);
      border-radius: 32px;
      max-width: 480px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 
        0 20px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
      transform: scale(0.9) translateY(20px);
      opacity: 0;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
.account-tunnel-overlay.show .account-tunnel {
      transform: scale(1) translateY(0);
      opacity: 1;
    }
.account-tunnel-header {
      position: relative;
      padding: 36px 32px 28px;
      text-align: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
.account-tunnel-hero-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      color: #ffffff;
      box-shadow: 
        0 10px 40px rgba(124, 58, 237, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
      animation: heroIconPulse 3s ease-in-out infinite;
    }
@keyframes heroIconPulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 
          0 10px 40px rgba(124, 58, 237, 0.5),
          0 0 0 1px rgba(255, 255, 255, 0.1) inset;
      }
      50% {
        transform: scale(1.05);
        box-shadow: 
          0 15px 50px rgba(124, 58, 237, 0.7),
          0 0 0 1px rgba(255, 255, 255, 0.15) inset;
      }
    }
.account-tunnel-title {
      color: #ffffff;
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.2;
    }
.account-tunnel-subtitle {
      color: rgba(255, 255, 255, 0.7);
      font-size: 15px;
      line-height: 1.5;
    }
.account-tunnel-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 36px;
      height: 36px;
      background: rgba(239, 68, 68, 0.2);
      border: 1px solid rgba(239, 68, 68, 0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f87171;
      cursor: pointer;
      transition: all 0.2s;
      font-size: 16px;
    }
.account-tunnel-close:hover {
      background: rgba(239, 68, 68, 0.3);
      transform: rotate(90deg) scale(1.1);
    }
.account-tunnel-close:focus-visible {
      outline: 2px solid #f87171;
      outline-offset: 2px;
    }
.account-tunnel-body {
      padding: 28px 32px 32px;
    }
.account-tunnel-benefits {
      display: grid;
      gap: 12px;
      margin-bottom: 28px;
    }
/* Responsive grid */
    @media (min-width: 500px) {
      .account-tunnel-benefits {
        grid-template-columns: repeat(2, 1fr);
      }
    }
.account-benefit-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 16px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 14px;
      transition: all 0.3s;
    }
.account-benefit-item:hover {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
      border-color: rgba(59, 130, 246, 0.3);
      transform: translateX(4px);
    }
.account-benefit-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
      border: 1px solid rgba(59, 130, 246, 0.3);
    }
.account-benefit-icon.gold {
      background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.15) 100%);
      border-color: rgba(251, 191, 36, 0.3);
    }
.account-benefit-icon.gold i {
      color: #fbbf24;
    }
.account-benefit-icon.purple {
      background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
      border-color: rgba(168, 85, 247, 0.3);
    }
.account-benefit-icon.purple i {
      color: #a855f7;
    }
.account-benefit-icon.teal {
      background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(6, 182, 212, 0.15) 100%);
      border-color: rgba(20, 184, 166, 0.3);
    }
.account-benefit-icon.teal i {
      color: #14b8a6;
    }
.account-benefit-icon i {
      color: #60a5fa;
    }
.account-benefit-content {
      flex: 1;
    }
.account-benefit-title {
      color: #ffffff;
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 2px;
    }
.account-benefit-desc {
      color: rgba(255, 255, 255, 0.6);
      font-size: 13px;
      line-height: 1.3;
    }
.account-tunnel-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
.account-tunnel-input {
      width: 100%;
      background: rgba(30, 41, 59, 0.6);
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 14px;
      padding: 14px 16px;
      color: #ffffff;
      font-size: 15px;
      font-family: inherit;
      transition: all 0.3s;
    }
.account-tunnel-input:focus {
      outline: none;
      border-color: rgba(59, 130, 246, 0.6);
      background: rgba(30, 41, 59, 0.8);
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
.account-tunnel-input::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }
.account-tunnel-submit {
      width: 100%;
      padding: 16px 28px;
      background: linear-gradient(90deg, 
        #4f46e5 0%,
        #7c3aed 30%,
        #a855f7 60%,
        #c084fc 85%,
        #e879f9 100%
      );
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      border: none;
      border-radius: 14px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 8px;
    }
.account-tunnel-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(124, 58, 237, 0.5);
    }
.account-tunnel-submit:active {
      transform: translateY(0);
    }
.account-tunnel-submit:focus-visible {
      outline: 2px solid #a855f7;
      outline-offset: 2px;
    }
.account-tunnel-footer {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      color: rgba(255, 255, 255, 0.5);
      font-size: 12px;
      line-height: 1.5;
    }
.account-tunnel-anonymous-warning {
      background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.08) 100%);
      border: 1px solid rgba(251, 191, 36, 0.3);
      border-radius: 14px;
      padding: 16px;
      margin-bottom: 24px;
      display: none;
      align-items: flex-start;
      gap: 12px;
    }
.account-tunnel-anonymous-warning.show {
      display: flex;
    }
.account-tunnel-anonymous-warning i {
      color: #fbbf24;
      font-size: 20px;
      flex-shrink: 0;
      margin-top: 2px;
    }
.account-tunnel-anonymous-warning-text {
      flex: 1;
      color: rgba(255, 255, 255, 0.85);
      font-size: 13px;
      line-height: 1.5;
    }
.account-tunnel-anonymous-warning-text strong {
      color: #fbbf24;
      font-weight: 600;
    }
/* ========================================
       RESPONSIVE
       ======================================== */
    @media (max-width: 968px) {
      html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
      }

      html {
        overflow-x: clip; /* Changé de hidden à clip pour préserver sticky */
        max-width: 100vw;
      }

      body {
        overflow-x: clip; /* Changé de hidden à clip pour préserver sticky */
        width: 100%;
        max-width: 100vw;
        position: relative;
      }

      * {
        max-width: 100%;
      }

      .hero-section {
        width: 100vw;
        max-width: 100vw;
        margin: 20px 0 30px 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 20px 16px; /* Réduction du padding vertical de 24px à 20px */
        border-radius: 0;
        border: 2px solid rgba(255, 255, 255, 0.7); /* Bordure blanche épaisse sur mobile */
        box-sizing: border-box;
      }

      /* OPTIMISATION MOBILE: Icône à gauche du titre uniquement, description en dessous pleine largeur */
      .hero-header {
        display: grid;
        grid-template-columns: 56px 1fr; /* Colonne fixe pour l'icône, reste flexible */
        grid-template-rows: auto auto; /* 2 rangées: titre + description */
        column-gap: 12px; /* Espace horizontal entre icône et titre */
        row-gap: 10px; /* Espace vertical entre titre et description */
        margin-bottom: 16px;
      }

      .hero-icon {
        grid-row: 1; /* Ligne 1 seulement */
        grid-column: 1;
        width: 56px;
        height: 56px;
        font-size: 26px;
        border-radius: 14px;
        align-self: center; /* Aligne verticalement avec le titre */
      }

      .hero-text {
        grid-row: 1 / 3; /* Le conteneur s'étend sur les 2 lignes */
        grid-column: 2;
        display: grid; /* Grid interne pour contrôler titre et sous-titre */
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
        min-width: 0; /* Permet au texte de se réduire */
      }

      .hero-title {
        font-size: 22px;
        line-height: 1.2;
        margin: 0;
        grid-row: 1;
      }

      .hero-subtitle {
        font-size: 13px;
        line-height: 1.4;
        margin: 0;
        grid-row: 2;
        /* Le sous-titre doit sortir de la grille parent pour prendre toute la largeur */
        margin-left: calc(-56px - 12px); /* Compense la colonne icône + gap */
        width: calc(100% + 56px + 12px); /* Force la pleine largeur incluant la zone de l'icône */
        max-width: calc(100% + 56px + 12px);
      }

      /* OPTIMISATION MOBILE: Badges toujours sur une seule ligne */
      .hero-stats {
        flex-wrap: nowrap; /* Force les badges sur une seule ligne */
        gap: 8px; /* Réduction du gap de 10px à 8px */
        margin-bottom: 18px; /* Réduction de 24px à 18px */
        overflow-x: auto; /* Permet le scroll horizontal si nécessaire */
        scrollbar-width: none; /* Cache la scrollbar sur Firefox */
        -ms-overflow-style: none; /* Cache la scrollbar sur IE/Edge */
      }

      /* Cache la scrollbar sur Chrome/Safari */
      .hero-stats::-webkit-scrollbar {
        display: none;
      }

      .hero-stat {
        padding: 7px 12px; /* Réduction du padding de 8px 14px à 7px 12px */
        font-size: 12px; /* Réduction de 13px à 12px */
        white-space: nowrap; /* Empêche le texte de passer à la ligne */
        flex-shrink: 0; /* Empêche les badges de rétrécir */
      }

      .hero-stat i {
        font-size: 14px; /* Réduction de 16px à 14px */
      }

      /* Optimisation de la barre de recherche */
      .hero-search-input {
        padding: 14px 52px 14px 18px; /* Réduction du padding vertical de 16px à 14px */
        font-size: 14px; /* Réduction de 15px à 14px */
      }

      .hero-search-icon {
        right: 6px;
        width: 44px; /* Maintenu à 44px pour respecter les touch targets */
        height: 44px;
      }

      .hero-search-icon i {
        font-size: 16px; /* Réduction de 18px à 16px */
      }

      .header-nav {
        padding: 8px 16px;
        min-height: 52px;
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
      }

      .logo-symbol {
        width: 34px;
        height: 34px;
      }

      .logo-icon-static {
        font-size: 16px;
      }

      .logo-text {
        font-size: 16px;
      }

      .logo-slogan {
        font-size: 8px;
      }

      .nav-btn-cta {
        padding: 7px 14px;
      }

      .cta-icon {
        font-size: 16px;
      }

      .cta-main {
        font-size: 13px;
      }

      .cta-sub {
        font-size: 10px;
      }

      .breadcrumb {
        padding: 12px 16px;
        font-size: 12px;
      }

      #root {
        padding: 10px 12px;
      }

      .top-section {
        display: flex;
        flex-direction: column;
        position: static;
        margin-bottom: 24px;
      }

      .left-column {
        max-width: 100%;
        margin-right: 0;
        width: 100%;
      }

      .right-column {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 20px;
      }

      .card-content > * {
        order: 0;
      }

      .card-content > .top-section > .left-column {
        order: 1;
      }

      .card-content > .featured-recommendation {
        order: 2;
      }

      .card-content > .view-recommendations {
        order: 3;
      }

      .card-content > .top-section > .right-column {
        order: 4;
      }

      .card-content > .answers-section {
        order: 5;
      }

      .trust-card {
        padding: 20px 16px;
        width: 100%;
        min-width: auto;
        transform: none;
        box-shadow:
          0 20px 60px rgba(0, 0, 0, 0.4),
          0 0 0 1px rgba(255, 255, 255, 0.08) inset;
        transition: none;
      }

      .trust-card::before {
        display: none;
      }

      .trust-card:hover {
        transform: none;
        box-shadow:
          0 20px 60px rgba(0, 0, 0, 0.4),
          0 0 0 1px rgba(255, 255, 255, 0.08) inset;
      }

      .trust-card:active {
        transform: none;
        box-shadow:
          0 20px 60px rgba(0, 0, 0, 0.4),
          0 0 0 1px rgba(255, 255, 255, 0.08) inset;
      }

      .trust-body {
        grid-template-columns: auto 1fr;
        gap: 16px;
      }

      .circular-score {
        width: 90px;
        height: 90px;
      }

      .score-value {
        font-size: 32px;
      }

      .score-max {
        font-size: 14px;
      }

      .trust-quote {
        font-size: 13px;
        margin-bottom: 8px;
      }

      .trust-stat-text {
        font-size: 14px;
      }

      .trust-stats {
        margin-bottom: 0;
        gap: 0;
      }

      .trust-stat-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
      }

      .trust-tooltip {
        right: auto;
        left: 0;
        min-width: 240px;
        max-width: 280px;
      }

      .trust-tooltip::after {
        right: auto;
        left: 20px;
      }

      /* Inline editor devient bottom-sheet sur mobile */
      .inline-reply-editor {
        display: none !important;
      }

      .card-content {
        padding: 20px 16px;
        border-radius: 24px;
        margin-bottom: 16px;
      }

      .card-content::before {
        border-radius: 24px;
      }

      .card-content::after {
        border-radius: 24px;
      }

      h2 {
        font-size: 22px;
      }

      .description {
        font-size: 15px;
        margin-bottom: 6px;
        line-height: 1.3;
        width: 100% !important;
        max-width: 100% !important;
      }

      .header {
        gap: 12px;
        margin-bottom: 14px;
      }

      .icon {
        width: 48px;
        height: 48px;
        padding: 10px;
        border-radius: 12px;
      }

      .bar {
        width: 7px;
      }

      .bar-red {
        height: 14px;
      }

      .bar-cyan {
        height: 20px;
      }

      .bar-blue {
        height: 28px;
      }

      .badge {
        padding: 4px 10px;
        font-size: 10px;
      }

      .badges {
        margin-bottom: 8px;
        margin-top: 4px;
        gap: 5px;
        flex-wrap: wrap;
        width: 100%;
      }

      .badge-icon {
        font-size: 10px;
      }


      .recommendation-card {
        flex-direction: column;
        padding: 14px;
      }

      .recommendation-actions {
        position: static;
        transform: none;
        justify-content: flex-end;
        margin-top: 8px;
      }

      .recommendation-image {
        width: 100%;
        height: 100px;
      }

      .featured-recommendation {
        padding: 10px;
        margin-top: 12px;
        margin-bottom: 0;
      }

      .featured-recommendation-top {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
      }

      .featured-left {
        gap: 12px;
      }

      .featured-image {
        width: 60px;
        height: 60px;
        font-size: 32px;
      }

      .featured-title {
        font-size: 17px;
      }

      .featured-location {
        font-size: 12px;
      }

      .featured-rating {
        font-size: 11px;
        margin-top: 4px;
      }

      .community-note {
        font-size: 12px;
        padding: 8px 12px;
      }

      .featured-actions-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        margin-top: 12px;
      }

      .featured-action-btn {
        padding: 10px 6px;
        font-size: 11px;
        gap: 4px;
      }

      .featured-action-btn i {
        font-size: 16px;
      }

      .action-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }

      .recommendation-title {
        font-size: 18px;
      }

      .recommendation-location {
        font-size: 13px;
      }

      .recommendation-description {
        font-size: 13px;
      }

      .recommendations {
        gap: 12px;
      }

      .recommendations.show {
        margin-top: 16px;
      }

      .question-card {
        padding: 8px 0px;
        margin-bottom: 16px;
        width: 100%;
        margin-left: 0;
        border: none;
        border-radius: 0;
      }

      .question-text {
        font-size: 20px;
        margin-bottom: 14px;
        line-height: 1.5;
      }

      .question-meta {
        gap: 8px;
        margin-bottom: 14px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }

      .question-meta-left {
        gap: 8px;
      }

      .question-author {
        font-size: 13px;
      }

      .question-date {
        font-size: 13px;
      }

      .question-author i {
        font-size: 14px;
      }

      .question-upvotes,
      .question-useful {
        font-size: 13px;
      }

      .visual-connector {
        height: 55px;
        margin: 0 0 -28px 0;
        position: relative;
        z-index: 12;
      }

      .connector-stream {
        height: 100%;
        opacity: 0.5;
      }

      .connector-communication-icon {
        font-size: 18px;
        top: 52%;
      }

      .connector-glow {
        width: 65px;
        height: 65px;
        top: 52%;
      }

      .card-content {
        position: relative;
        z-index: 10;
      }

      .question-actions {
        flex-direction: row;
        width: 100%;
        gap: 8px;
      }

      .btn-reply,
      .btn-useful {
        flex: 1;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
      }

      .answers-toggle {
        font-size: 14px;
        padding: 12px 20px;
      }

      .answer-item {
        padding: 14px;
        border-radius: 16px;
      }

      .answer-avatar {
        width: 32px;
        height: 32px;
        font-size: 13px;
      }

      .answer-author-name {
        font-size: 13px;
      }

      .answer-date {
        font-size: 11px;
      }

      .answer-text {
        font-size: 13px;
        margin-bottom: 10px;
      }

      .answer-recommendation {
        font-size: 12px;
        padding: 6px 10px;
      }

      .answer-useful-btn {
        font-size: 12px;
        padding: 5px 10px;
      }

      .sheet-header {
        padding: 16px 20px;
      }

      .sheet-title {
        font-size: 18px;
      }

      .sheet-body {
        padding: 20px 16px;
      }

      .sheet-section-title {
        font-size: 15px;
      }

      .sheet-description {
        font-size: 14px;
      }

      .sheet-cta-btn {
        font-size: 15px;
        padding: 14px 24px;
      }

      .sheet-video-header {
        height: 140px;
      }

      .reply-sheet-header {
        padding: 16px 20px;
      }

      .reply-sheet-title {
        font-size: 18px;
      }

      .reply-sheet-body {
        padding: 20px 16px;
      }

      .reply-sheet-header {
        padding: 12px 16px 16px;
      }

      .reply-sheet-title {
        font-size: 18px;
      }

      .reply-sheet-close {
        width: 32px;
        height: 32px;
        font-size: 14px;
      }

      .account-tunnel {
        max-width: 100%;
        max-height: 95vh;
        margin: 0;
        border-radius: 32px;
      }

      .account-tunnel-header {
        padding: 28px 24px 22px;
      }

      .account-tunnel-hero-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 16px;
      }

      .account-tunnel-title {
        font-size: 22px;
      }

      .account-tunnel-subtitle {
        font-size: 14px;
      }

      .account-tunnel-body {
        padding: 24px;
      }

      .account-tunnel-benefits {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .account-benefit-item {
        padding: 12px 14px;
      }

      .account-benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
      }

      .account-benefit-title {
        font-size: 14px;
      }

      .account-benefit-desc {
        font-size: 12px;
      }

      .account-tunnel-submit {
        font-size: 15px;
        padding: 14px 24px;
      }

      .account-tunnel-footer {
        font-size: 11px;
      }

      .reply-engagement-header {
        padding: 14px 16px;
      }

      .reply-engagement-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
      }

      .reply-engagement-title {
        font-size: 14px;
      }

      .reply-engagement-subtitle {
        font-size: 12px;
      }

      .reply-emoji-picker {
        padding: 8px 10px;
        gap: 6px;
      }

      .reply-emoji-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
      }
    }
@media (min-width: 969px) {
      /* Reply bottom sheet et overlay n'existent pas sur desktop */
      .reply-bottom-sheet,
      .reply-overlay {
        display: none !important;
      }
    }
@media (max-width: 1023px) {
      .hero-bottom-sections.has-map .go-map-section-wrapper { grid-column: 1 / -1; }
      .hero-bottom-sections.has-map .toc-container { height: auto; }
      .hero-bottom-sections.has-map .toc-nav { max-height: 50vh; }
    }
@media (max-width: 1023px) { .hero-bottom-sections.has-map { grid-template-columns: 1fr; } .hero-map-col .go-map { min-height: 300px; } }
/* Sur tablette: 1 colonne */
    @media (max-width: 1023px) {
      .hero-bottom-sections {
        grid-template-columns: 1fr;
        gap: 16px;
      }
    }
/* ========================================================================== */
    /* RESPONSIVE DESIGN */
    /* ========================================================================== */

    /* Desktop - Ajustements */
    @media (min-width: 1024px) {
      .toc-container {
        margin-top: 0; /* Géré par hero-bottom-sections */
      }
    }
/* Tablette */
    @media (min-width: 768px) and (max-width: 1023px) {
      .toc-container {
        margin-top: 0; /* Géré par hero-bottom-sections */
      }

      .toc-title {
        font-size: 17px;
      }

      .toc-link {
        padding: 10px 14px;
        font-size: 13px;
      }

      .toc-item-number {
        min-width: 26px;
        height: 26px;
        font-size: 12px;
      }
    }
/* Mobile - 100% avec toggle */
    @media (max-width: 767px) {
      .toc-container {
        width: 100%;
        margin-top: 0; /* Géré par hero-bottom-sections */
        padding: 14px; /* Réduction du padding */
      }

      .toc-header {
        margin-bottom: 12px;
        padding: 12px 0; /* Moins de padding */
      }

      .toc-title {
        font-size: 15px; /* Titre plus petit */
      }

      .toc-toggle {
        display: flex;
      }

      /* Navigation repliable sur mobile */
      .toc-nav {
        max-height: 0;
        overflow: hidden;
        margin: 0;
        padding: 0;
        transition: max-height 0.3s ease;
      }

      .toc-nav.open {
        max-height: 70vh; /* Limite à 70% de la hauteur viewport */
        overflow-y: auto; /* Scrollbar si contenu dépasse */
        overflow-x: hidden;
        margin-top: 12px;
        padding-top: 16px; /* Remettre le padding quand ouvert */
      }

      .toc-link {
        padding: 10px 12px; /* Plus compact */
        font-size: 13px; /* Texte plus petit */
        gap: 10px;
      }

      .toc-item-number {
        min-width: 24px; /* Numéros plus petits */
        height: 24px;
        font-size: 12px;
      }

      .toc-item-text {
        font-size: 13px;
      }
    }
/* Très petit écran */
    @media (max-width: 480px) {
      .toc-container {
        padding: 14px;
        margin-top: 0; /* Géré par hero-bottom-sections */
        border-radius: 12px;
      }

      .toc-title {
        font-size: 15px;
      }

      .toc-link {
        padding: 8px 10px;
        font-size: 12px;
        gap: 8px;
      }

      .toc-item-number {
        min-width: 22px;
        height: 22px;
        font-size: 11px;
      }

      .toc-item-text {
        font-size: 12px;
      }
    }
