/* ============================================ */
/* 🎨 AUDIOMASTERIZER - DESIGN SYSTEM v2.0 */
/* ============================================ */
/**
 * Système de design complet basé sur une palette
 * maîtresse blanc/noir/rouge (sans mode nuit).
 * 
 * Les palettes utilisateur sont disponibles pour
 * les membres via la section Paramètres.
 * 
 * @author AudioMasterizer Team
 * @version 2.0.0
 */

/* ============================================ */
/* 🎨 MASTER PALETTE (DEFAULT - BASE DU SITE) */
/* ============================================ */
/**
 * Palette par défaut : Blanc / Noir / Rouge
 * Utilisée pour tous les visiteurs non connectés
 * et comme base pour toutes les autres palettes.
 * 
 * ⚠️ MODE CLAIR UNIQUEMENT - Pas de mode nuit
 */
:root {
  color-scheme: light;
  
  /* 🎯 COULEURS PRINCIPALES */
  --color-bg: #FFFFFF;               /* Fond principal blanc pur */
  --color-text: #1A1A1A;             /* Texte noir profond */
  --color-text-pure: #000000;        /* Noir absolu pour emphase */
  
  /* 🔴 ROUGE ACCENT (PRINCIPAL) */
  --color-accent: #DC2626;           /* Rouge principal vif */
  --color-accent-hover: #B91C1C;     /* Rouge foncé au survol */
  --color-accent-light: #EF4444;     /* Rouge clair pour backgrounds */
  --color-accent-soft: rgba(220, 38, 38, 0.10);  /* Rouge très transparent */
  
  /* ⚫ ÉCHELLE DE GRIS (50 → 900) */
  --color-gray-50: #F9FAFB;          /* Gris le plus clair */
  --color-gray-100: #F3F4F6;         /* Arrière-plans légers */
  --color-gray-200: #E5E7EB;         /* Bordures claires */
  --color-gray-300: #D1D5DB;         /* Bordures standards */
  --color-gray-400: #9CA3AF;         /* Texte désactivé */
  --color-gray-500: #6B7280;         /* Texte secondaire */
  --color-gray-600: #4B5563;         /* Texte tertiaire */
  --color-gray-700: #374151;         /* Texte fort */
  --color-gray-800: #1F2937;         /* Quasi-noir */
  --color-gray-900: #111827;         /* Noir profond */
  
  /* 🚦 COULEURS SYSTÈME */
  --color-success: #10B981;          /* Vert succès */
  --color-error: #EF4444;            /* Rouge erreur */
  --color-warning: #F59E0B;          /* Orange avertissement */
  --color-info: #3B82F6;             /* Bleu information */
  
  /* 📐 BORDURES & OMBRES */
  --color-border: var(--color-gray-200);
  --radius: 12px;                    /* Rayon de bordure standard */
  --radius-sm: 8px;                  /* Petit rayon */
  --radius-lg: 16px;                 /* Grand rayon */
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);  /* Ombre douce */
  
  /* ✏️ TYPOGRAPHIE */
  --font-family: 'Manrope', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  
  /* 🔗 ALIASES COMPATIBILITÉ (utilisés dans les composants) */
  --bg: var(--color-bg);
  --panel: #FFFFFF;
  --card-bg: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.92);
  --text: var(--color-text);
  --subtext: var(--color-gray-500);
  --line: var(--color-border);
  --outline: var(--color-border);
  --muted: var(--color-gray-400);
  --accent: var(--color-accent);
  --accent-hover: var(--color-accent-hover);
  --accent-soft: var(--color-accent-soft);
  --accent-2: var(--color-warning);  /* Accent secondaire (orange) */
  --success: var(--color-success);
  --error: var(--color-error);
  --warning: var(--color-warning);
  --info: var(--color-info);
}

/* ============================================ */
/* 🎨 PALETTES UTILISATEUR (OPT-IN MEMBERS) */
/* ============================================ */
/**
 * Les palettes ci-dessous sont disponibles pour les utilisateurs connectés
 * via la section "Personnalisation" de leur compte.
 * Elles s'appuient sur la palette master (blanc/noir/rouge) et ajustent
 * uniquement les accents et couleurs secondaires.
 * 
 * ⚠️ MODE CLAIR UNIQUEMENT - Pas de mode nuit
 */

/* 🎨 PALETTE UTILISATEUR 1: WOOD (Studio Bois) */
:root.palette-wood {
  color-scheme: light;
  --color-bg: #FBF8F3;               /* Fond beige très clair */
  --color-text: #2D1F12;             /* Brun foncé pour texte */
  --color-text-pure: #1A0F08;        /* Brun très foncé */
  
  /* 🟤 ACCENTS BOIS */
  --color-accent: #8B5E34;           /* Brun principal */
  --color-accent-hover: #6D4A28;     /* Brun foncé */
  --color-accent-light: #A67C52;     /* Brun clair */
  --color-accent-soft: rgba(139, 94, 52, 0.10);
  
  /* Grises adaptées au thème bois */
  --color-gray-50: #FAF7F2;
  --color-gray-100: #F0EBE3;
  --color-gray-200: #E0D5C7;
  --color-gray-300: #C9BCB0;
  --color-gray-400: #9C8B7A;
  --color-gray-500: #6B5A48;
  
  /* Mise à jour des aliases */
  --bg: var(--color-bg);
  --panel: #FFFFFF;
  --card-bg: #FEFAF5;
  --glass: rgba(254, 250, 245, 0.92);
  --accent: var(--color-accent);
  --accent-hover: var(--color-accent-hover);
  --accent-soft: var(--color-accent-soft);
  --subtext: var(--color-gray-500);
  --muted: var(--color-gray-400);
}

/* 🎨 PALETTE UTILISATEUR 2: NATURAL (Studio Naturel) */
:root.palette-natural {
  color-scheme: light;
  --color-bg: #F7FAF7;               /* Fond vert très clair */
  --color-text: #1A231A;             /* Vert foncé pour texte */
  --color-text-pure: #0F180F;        /* Vert très foncé */
  
  /* 🟢 ACCENTS NATURELS */
  --color-accent: #4A7C59;           /* Vert principal */
  --color-accent-hover: #3A6247;     /* Vert foncé */
  --color-accent-light: #5F9A6E;     /* Vert clair */
  --color-accent-soft: rgba(74, 124, 89, 0.10);
  
  /* Grises adaptées au thème naturel */
  --color-gray-50: #F5F9F5;
  --color-gray-100: #E8F0E8;
  --color-gray-200: #D1E3D1;
  --color-gray-300: #B5D0B5;
  --color-gray-400: #7A9B7A;
  --color-gray-500: #556B55;
  
  /* Mise à jour des aliases */
  --bg: var(--color-bg);
  --panel: #FFFFFF;
  --card-bg: #FAFCFA;
  --glass: rgba(250, 252, 250, 0.92);
  --accent: var(--color-accent);
  --accent-hover: var(--color-accent-hover);
  --accent-soft: var(--color-accent-soft);
  --subtext: var(--color-gray-500);
  --muted: var(--color-gray-400);
  --color-success: #22C55E;          /* Vert plus vif pour succès */
}

/* 🎨 PALETTE UTILISATEUR 3: OCEAN (Console Bleue) */
:root.palette-ocean {
  color-scheme: light;
  --color-bg: #F5F9FC;               /* Fond bleu très clair */
  --color-text: #1A2632;             /* Bleu foncé pour texte */
  --color-text-pure: #0F1A24;        /* Bleu très foncé */
  
  /* 🔵 ACCENTS OCÉAN */
  --color-accent: #2563EB;           /* Bleu principal */
  --color-accent-hover: #1D4ED8;     /* Bleu foncé */
  --color-accent-light: #3B82F6;     /* Bleu clair */
  --color-accent-soft: rgba(37, 99, 235, 0.10);
  
  /* Grises adaptées au thème océan */
  --color-gray-50: #F8FAFC;
  --color-gray-100: #F1F5F9;
  --color-gray-200: #E2E8F0;
  --color-gray-300: #CBD5E1;
  --color-gray-400: #94A3B8;
  --color-gray-500: #64748B;
  
  /* Mise à jour des aliases */
  --bg: var(--color-bg);
  --panel: #FFFFFF;
  --card-bg: #FCFCFD;
  --glass: rgba(252, 252, 253, 0.92);
  --accent: var(--color-accent);
  --accent-hover: var(--color-accent-hover);
  --accent-soft: var(--color-accent-soft);
  --subtext: var(--color-gray-500);
  --muted: var(--color-gray-400);
  --color-info: var(--color-accent);
}

/* 🎨 PALETTE UTILISATEUR 4: NEON (Néon Cyber) */
:root.palette-neon {
  color-scheme: light;
  --color-bg: #F7F9FB;               /* Fond neutre clair */
  --color-text: #1E1E2E;             /* Quasi-noir */
  --color-text-pure: #0F0F1A;        /* Noir profond */
  
  /* 💜 ACCENTS NÉON */
  --color-accent: #7C3AED;           /* Violet principal */
  --color-accent-hover: #6D28D9;     /* Violet foncé */
  --color-accent-light: #8B5CF6;     /* Violet clair */
  --color-accent-soft: rgba(124, 58, 237, 0.10);
  
  /* Grises neutres */
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;
  --color-gray-500: #6B7280;
  
  /* Mise à jour des aliases */
  --bg: var(--color-bg);
  --panel: #FFFFFF;
  --card-bg: #FAFBFC;
  --glass: rgba(250, 251, 252, 0.92);
  --accent: var(--color-accent);
  --accent-hover: var(--color-accent-hover);
  --accent-soft: var(--color-accent-soft);
  --subtext: var(--color-gray-500);
  --muted: var(--color-gray-400);
}

/* ============================================ */
/* 🎯 RESET & BASE STYLES */
/* ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-family, 'Manrope', 'Inter', 'Helvetica Neue', Arial, sans-serif);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ============================================ */
/* 🧭 NAVIGATION & HEADER */
/* ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--panel);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 16px 24px;
  width: min(1120px, 100%);
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  max-height: 36px;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

.nav-toggle-bars {
  width: 24px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }

.nav-toggle-text {
  display: none; /* Masqué - le burger icon est suffisant */
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  margin-left: auto;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

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

.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  color: var(--bg) !important;
}

.nav-cta-danger {
  background: #ef4444;
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: background 0.2s;
}

.nav-cta-danger:hover {
  background: #dc2626;
  color: white !important;
}

/* ============================================ */
/* 🔘 GENERIC BUTTONS & CARDS                  */
/* ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: var(--font-family);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.btn-secondary {
  background: var(--panel);
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: var(--line);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
}

.btn-ghost:hover {
  background: var(--accent-soft);
}

.btn-danger {
  background: var(--error);
  color: #fff;
}

.btn-danger:hover {
  background: #dc2626;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.card-text {
  font-size: 15px;
  color: var(--subtext);
}

.card-highlight {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Settings Menu */
.settings-menu-wrapper {
  position: relative;
}

.settings-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 16px;
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  height: 38px;
  white-space: nowrap;
}

.settings-menu-btn:hover {
  background: var(--glass);
  border-color: var(--accent);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 12px;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  height: 38px;
}

.lang-btn:hover {
  background: var(--glass);
  border-color: var(--accent);
}

.lang-btn i {
  font-size: 16px;
  opacity: 0.7;
}

.current-lang {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 9999;
}

.lang-dropdown.show {
  display: flex;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
}

.lang-option:hover {
  background: var(--glass);
}

.lang-option.active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.lang-flag {
  font-size: 20px;
}

.settings-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
}

.settings-dropdown.show {
  display: flex;
}

.settings-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.settings-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.settings-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0;
}

/* Dropdown Menu Items (New User Menu) */
.dropdown-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}

.dropdown-menu-item:hover {
  background: var(--glass);
  color: var(--accent);
}

.dropdown-menu-item i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: var(--accent);
}

.dropdown-menu-item-primary {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.dropdown-menu-item-primary:hover {
  background: var(--accent);
  color: white;
}

.dropdown-menu-item-primary i {
  color: var(--accent);
}

.dropdown-menu-item-primary:hover i {
  color: white;
}

.dropdown-menu-item-danger {
  color: var(--error);
}

.dropdown-menu-item-danger:hover {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
}

.dropdown-menu-item-danger i {
  color: var(--error);
}

/* Language Options (kept for potential future use) */
.lang-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.lang-option-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: 8px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
}

.lang-option-compact:hover {
  background: var(--glass);
  border-color: var(--accent);
}

.lang-option-compact.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================ */
/* LEGACY PALETTE/THEME STYLES */
/* Note: Palette selection is now ONLY in Settings page for members */
/* These styles are kept for Settings page compatibility */
/* ============================================ */

/* Palette Options */
.palette-options-compact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.palette-option-compact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.2s;
}

.palette-option-compact:hover {
  background: var(--glass);
  border-color: var(--accent);
}

.palette-option-compact.active {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.palette-swatches-compact {
  display: flex;
  gap: 3px;
}

.palette-swatch-compact {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid var(--line);
}

.palette-label-compact {
  font-size: 13px;
  font-weight: 600;
  flex: 1;
}

/* Theme Toggle */
.theme-toggle-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.theme-option-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.theme-option-compact:hover {
  background: var(--glass);
  border-color: var(--accent);
}

.theme-option-compact.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================ */
/* 💰 PRIX PROMO STYLES */
/* ============================================ */
.price-old {
  color: var(--color-error);
  opacity: 0.7;
  text-decoration: line-through;
  font-size: 0.75em;
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}

.price-promo {
  color: var(--color-accent);
  font-size: 1.3em;
  font-weight: 700;
  display: block;
}

.promo-badge {
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  animation: pulse-promo 2s ease-in-out infinite;
}

@keyframes pulse-promo {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.05); }
}

/* ============================================ */
/* 🦶 FOOTER */
/* ============================================ */
.site-footer {
  background: var(--panel);
  border-top: 1px solid var(--line);
  padding: 48px 24px 24px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.footer-section h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-section p {
  font-size: 14px;
  color: var(--subtext);
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section a {
  color: var(--subtext);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================ */
/* 📱 MOBILE RESPONSIVE */
/* ============================================ */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--panel);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--line);
    z-index: 9998;
  }

  .nav-links.show {
    max-height: 600px;
  }

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

  .nav-links a {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius);
    transition: background 0.2s;
  }

  .nav-links a:hover {
    background: var(--glass);
  }

  .nav-links a.active {
    background: var(--accent);
    color: var(--bg);
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .settings-menu-wrapper {
    width: 100%;
  }

  .settings-menu-btn {
    width: 100%;
    justify-content: center;
  }

  .settings-dropdown {
    position: relative;
    left: 0;
    top: 8px;
    width: 100%;
    box-shadow: none;
    border: 1px solid var(--line);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================ */
/* 🏢 CLIENT LOGOS SLIDER */
/* ============================================ */
.clients-section {
  padding: 60px 24px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
}

.clients-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.clients-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.clients-track {
  display: flex;
  gap: 30px;
  animation: scroll-logos 30s linear infinite;
  width: max-content;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-logo-wrapper {
  flex-shrink: 0;
  width: 720px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.client-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: all 0.4s ease;
}

.client-logo-wrapper:hover .client-logo {
  opacity: 0.8;
  transform: scale(1.05);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .clients-section {
    padding: 40px 16px;
  }
  
  .clients-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }
  
  .clients-track {
    gap: 20px;
  }
  
  .client-logo-wrapper {
    width: 560px;
    height: 280px;
  }
}

/* ============================================ */
/* 💬 TESTIMONIALS SLIDER */
/* ============================================ */
.testimonials-section {
  padding: 80px 24px;
  background: var(--panel);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.testimonials-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--subtext);
  margin-bottom: 56px;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.testimonials-track {
  display: flex;
  position: relative;
  width: 100%;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 0 20px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.testimonial-content {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 1px solid var(--line);
}

.testimonial-quote-icon {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-message {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 32px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-soft);
  background: var(--gray-200);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--subtext);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.testimonial-star {
  color: var(--accent);
  font-size: 14px;
}

/* Navigation Arrows - HIDDEN (auto-play only) */
.testimonials-nav {
  display: none;
}

/* Dots Indicator */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.testimonial-dot:hover {
  background: var(--accent-light);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 16px;
  }
  
  .testimonials-title {
    font-size: 1.75rem;
  }
  
  .testimonials-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .testimonials-slider {
    padding: 20px 16px;
  }
  
  .testimonial-content {
    padding: 32px 24px;
  }
  
  .testimonial-message {
    font-size: 1rem;
  }
  
  .testimonials-nav {
    width: 40px;
    height: 40px;
  }
  
  .testimonials-nav i {
    font-size: 16px;
  }
}
