/**
 * TAILWIND JOBS SUPPLEMENTS - STYLES SOPHISTIQUÉS V2
 * Fichier optimisé pour les styles avancés qui ne compilent pas bien avec Tailwind
 * 
 * PRÉREQUIS: st-variables.css doit être chargé AVANT ce fichier
 * 
 * Focus: Glassmorphism, gradients complexes, animations sophistiquées
 * Compatibilité: Variables unifiées depuis st-variables.css
 */

/* ===== HEADER RESPONSIVE FIX - CUSTOM CLASSES ===== */
/* Desktop-first responsive header with reliable classes */

/* Mobile by default */
.st-desktop-menu,
.st-desktop-actions {
  display: none;
}

.st-mobile-button {
  display: flex;
  align-items: center;
}

/* Desktop styles for screens >= 768px */
@media screen and (min-width: 768px) {
  /* Show desktop elements */
  .st-desktop-menu,
  .st-desktop-actions {
    display: flex !important;
    align-items: center !important;
  }
  
  .st-desktop-menu {
    gap: 2rem; /* space-x-8 equivalent */
  }
  
  .st-desktop-actions {
    gap: 1rem; /* space-x-4 equivalent */
  }
  
  /* Hide mobile button */
  .st-mobile-button {
    display: none !important;
  }
}

/* ===== DEPOSIT FORM ENHANCEMENTS ===== */
/* Step navigation and form validation styles */
.st-deposit-step.active .w-10 {
  background: white !important;
  color: var(--st-primary-600) !important;
}

.st-deposit-step:not(.active) .w-10 {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
}

/* Form validation states */
.st-field-valid {
  border-color: var(--st-success-500) !important;
  box-shadow: 0 0 0 1px var(--st-success-500) !important;
}

.st-field-invalid {
  border-color: var(--st-error-500) !important;
  box-shadow: 0 0 0 1px var(--st-error-500) !important;
}

/* Skills tag styling */
.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: var(--st-primary-100);
  color: var(--st-primary-700);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.skill-remove {
  background: none;
  border: none;
  color: var(--st-primary-600);
  cursor: pointer;
  font-weight: bold;
  padding: 0;
  margin-left: 0.25rem;
  hover: color: var(--st-primary-800);
}

.skill-remove:hover {
  color: var(--st-primary-800);
}

/* Content editable editor styling */
[contenteditable="true"]:empty::before {
  content: attr(data-placeholder);
  color: #9ca3af;
  font-style: italic;
}

[contenteditable="true"]:focus {
  outline: none;
}

/* Step transitions */
#step-1.block, #step-2.block, #step-3.block, #step-4.block {
  display: block !important;
}

#step-1.active, #step-2.active, #step-3.active, #step-4.active {
  display: block !important;
}

/* =========================================
   🎨 COULEURS V2 EXACTES - VARIABLES ROOT
   Harmonisation avec référence V2 préférée
   ========================================= */
:root {
  /* Couleurs V2 exactes restaurées */
  --st-brand-primary: #ea8f7f;          /* V2 exact */
  --st-brand-primary-light: #f2a895;    /* V2 exact - plus rosé */  
  --st-brand-primary-dark: #d77366;     /* V2 exact - plus rouge */
  --st-brand-secondary: #351c51;        /* V2 exact */
  
  /* Aliases pour compatibilité */
  --color-primary: var(--st-brand-primary);
  --color-primary-light: var(--st-brand-primary-light); 
  --color-primary-dark: var(--st-brand-primary-dark);
  --color-secondary: var(--st-brand-secondary);
  
  /* Variables Tailwind mapping */
  --st-primary-DEFAULT: #ea8f7f;
  --st-primary-light: #f2a895;
  --st-primary-dark: #d77366;
  --st-secondary-DEFAULT: #351c51;
}

/* =========================================
   🎬 ANIMATION DELAY CLASSES
   Remplacement des inlines style="--delay: Xms"
   ========================================= */
@keyframes staggerFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   📝 BLOG ANIMATION DELAYS - DYNAMIC STAGGER
   Système de classes pour remplacer les animation delays inline
   ========================================= */

/* Classes utilitaires pour animation delays dynamiques */
.st-blog-stagger {
  --animation-delay: 0s;
  animation-delay: var(--animation-delay);
}

.st-blog-article-card {
  --animation-delay: 0.1s;
  animation-delay: var(--animation-delay);
}

.st-blog-recent-item {
  --animation-delay: 0.4s; 
  animation-delay: var(--animation-delay);
}

.st-blog-category-item {
  --animation-delay: 0.5s;
  animation-delay: var(--animation-delay);
}

/* Classes pour delays progressifs (0.1s, 0.2s, 0.3s, etc.) */
.st-delay-100 { animation-delay: 0.1s !important; }
.st-delay-200 { animation-delay: 0.2s !important; }
.st-delay-300 { animation-delay: 0.3s !important; }
.st-delay-400 { animation-delay: 0.4s !important; }
.st-delay-500 { animation-delay: 0.5s !important; }
.st-delay-600 { animation-delay: 0.6s !important; }
.st-delay-700 { animation-delay: 0.7s !important; }
.st-delay-800 { animation-delay: 0.8s !important; }
.st-delay-900 { animation-delay: 0.9s !important; }
.st-delay-1000 { animation-delay: 1.0s !important; }

/* Classes pour micro-delays (pour categories avec increments 0.05s) */
.st-delay-50 { animation-delay: 0.05s !important; }
.st-delay-55 { animation-delay: 0.55s !important; }
.st-delay-60 { animation-delay: 0.60s !important; }
.st-delay-65 { animation-delay: 0.65s !important; }
.st-delay-70 { animation-delay: 0.70s !important; }
.st-delay-75 { animation-delay: 0.75s !important; }
.st-delay-80 { animation-delay: 0.80s !important; }
.st-delay-85 { animation-delay: 0.85s !important; }

/* =========================================
   ✅ VALIDATION STATES - FORM INPUTS
   Remplacement des .style.borderColor inline
   ========================================= */

/* States de validation pour inputs */
.st-input-success {
  border-color: var(--st-success) !important;
  box-shadow: 0 0 0 1px var(--st-success) !important;
}

.st-input-error {
  border-color: var(--st-error) !important;
  box-shadow: 0 0 0 1px var(--st-error) !important;  
}

.st-input-neutral {
  border-color: #d1d5db !important; /* gray-300 */
  box-shadow: none !important;
}

/* Focus states améliorés */
.st-input-success:focus {
  border-color: var(--st-success) !important;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2) !important; /* green-500 avec opacity */
}

.st-input-error:focus {
  border-color: var(--st-error) !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important; /* red-500 avec opacity */
}

/* =========================================
   🗑️ DELETE ANIMATION STATES - TABLE ROWS
   Remplacement des .style.opacity/.transform inline
   ========================================= */

/* Animation de suppression pour lignes de tableau */
.st-row-deleting {
  opacity: 0.5 !important;
  transform: translateX(-20px) !important;
  transition: all 0.3s ease-in-out !important;
}

.st-row-deleted {
  opacity: 0 !important;
  transform: translateX(-100px) scale(0.9) !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  transition: all 0.3s ease-in-out !important;
}

/* États pour manipulation JavaScript */
.st-opacity-50 { opacity: 0.5 !important; }
.st-opacity-0 { opacity: 0 !important; }
.st-translate-x-minus-5 { transform: translateX(-20px) !important; }
.st-translate-x-minus-25 { transform: translateX(-100px) !important; }

/* =========================================
   🔔 NOTIFICATION TOAST SYSTEM
   Composant unifié pour toutes les notifications
   ========================================= */

/* Animations pour notifications */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Base notification toast */
.st-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  z-index: 1000;
  color: white;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  word-wrap: break-word;
  animation: slideInRight 0.3s ease-out;
}

/* Types de notifications */
.st-notification-success {
  background-color: #10b981; /* green-500 */
}

.st-notification-error {
  background-color: #ef4444; /* red-500 */
}

.st-notification-info {
  background-color: #3b82f6; /* blue-500 */
}

.st-notification-warning {
  background-color: #f59e0b; /* yellow-500 */
}

/* Animation de sortie */
.st-notification-exit {
  animation: slideOutRight 0.3s ease-in forwards !important;
}

/* Stack de notifications multiples */
.st-notification:nth-child(2) {
  top: 85px;
}

.st-notification:nth-child(3) {
  top: 150px;
}

.st-notification:nth-child(4) {
  top: 215px;
}

/* =========================================
   📝 TEXT VALIDATION STATES
   Couleurs conditionnelles pour validation de texte
   ========================================= */

/* États de validation pour text/help elements */
.st-text-valid {
  color: #6b7280 !important; /* gray-500 - état normal */
}

.st-text-invalid {
  color: #ef4444 !important; /* red-500 - dépassement limite */
}

.st-text-warning {
  color: #f59e0b !important; /* yellow-500 - proche limite */
}

/* Classes utilitaires pour compteurs de caractères */
.st-char-counter-normal { color: #6b7280 !important; }
.st-char-counter-warning { color: #f59e0b !important; }
.st-char-counter-error { color: #ef4444 !important; }

/* =========================================
   🏗️ LAYOUT INFRASTRUCTURE STATES  
   Variables dynamiques pour layouts critiques
   ========================================= */

/* Viewport Height Mobile Fix (layouts/app.php) */
.st-viewport-mobile {
  /* Note: --vh est définie par JavaScript et ne peut pas être remplacée */
  /* Cette classe sert de marqueur pour la logique mobile viewport */
  --vh-dynamic: 1vh; /* Fallback si JavaScript échoue */
}

/* Admin Layout Chevron States (layouts/admin.php) */
.st-chevron-expanded {
  transform: rotate(0deg) !important;
  transition: transform 0.2s ease-in-out !important;
}

.st-chevron-collapsed {
  transform: rotate(180deg) !important;
  transition: transform 0.2s ease-in-out !important;
}

/* Classes utilitaires pour admin toggles */
.st-admin-toggle-expanded { transform: rotate(0deg) !important; }
.st-admin-toggle-collapsed { transform: rotate(180deg) !important; }

/* =========================================
   💳 PAYMENT FLOW STATES - UX CRITIQUE
   États pour workflow de paiement et conversion
   ========================================= */

/* États d'erreur de paiement */
.st-payment-error-visible {
  display: block !important;
  animation: slideInDown 0.3s ease-out !important;
}

.st-payment-error-hidden {
  display: none !important;
}

/* États de loading pour boutons de paiement */
.st-payment-btn-text-loading {
  display: none !important;
}

.st-payment-btn-text-normal {
  display: inline !important;
}

.st-payment-spinner-active {
  display: inline-block !important;
}

.st-payment-spinner-hidden {
  display: none !important;
}

/* États combinés pour UX fluide */
.st-payment-loading .st-payment-btn-text { display: none !important; }
.st-payment-loading .st-payment-spinner { display: inline-block !important; }
.st-payment-normal .st-payment-btn-text { display: inline !important; }
.st-payment-normal .st-payment-spinner { display: none !important; }

/* Animation pour erreurs de paiement */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   👤 USER APPLICATIONS FILTERING
   États pour filtrage candidatures utilisateur
   ========================================= */

/* États d'affichage pour candidatures */
.st-application-visible {
  display: block !important;
  animation: fadeIn 0.2s ease-in-out !important;
}

.st-application-hidden {
  display: none !important;
}

/* Animation douce pour filtrage */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =========================================
   📝 DEPOSIT FORM VALIDATION
   États de validation pour formulaire de dépôt
   ========================================= */

/* États de validation étendue pour formulaires */
.st-field-valid {
  border-color: var(--color-gray-300) !important;
  transition: border-color 0.2s ease-in-out !important;
}

.st-field-invalid {
  border-color: var(--color-error) !important;
  transition: border-color 0.2s ease-in-out !important;
  box-shadow: 0 0 0 1px var(--color-error) !important;
}

/* Focus states améliorés pour validation */
.st-field-valid:focus {
  border-color: var(--st-primary) !important;
  box-shadow: 0 0 0 2px rgba(234, 143, 127, 0.2) !important;
}

.st-field-invalid:focus {
  border-color: var(--color-error) !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
}

/* =========================================
   🗺️ INTERACTIVE MAP TOOLTIP SYSTEM
   Tooltip dynamique pour carte interactive suisse
   ========================================= */

/* Tooltip de carte interactive */
.st-map-tooltip {
  position: absolute;
  background-color: #1f2937; /* gray-900 */
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  transform: translate(-50%, -100%);
  /* NOTE: --tooltip-x et --tooltip-y DOIVENT être définies par JavaScript */
  /* en fonction de la position de la souris - usage légitime de .style.setProperty */
  left: var(--tooltip-x, 0px);
  top: var(--tooltip-y, 0px);
}

.st-map-tooltip.visible {
  opacity: 1;
}

.st-map-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #1f2937;
}

/* États du tooltip */
.st-map-tooltip-hidden { opacity: 0 !important; pointer-events: none !important; }
.st-map-tooltip-visible { opacity: 1 !important; }

/* =========================================
   📧 NEWSLETTER UNSUBSCRIBE FLOW
   États pour workflow de désabonnement newsletter
   ========================================= */

/* États des boutons de newsletter */
.st-newsletter-btn-success {
  background-color: #10b981 !important; /* green-500 */
  color: white !important;
  transition: background-color 0.3s ease !important;
}

.st-newsletter-btn-error {
  background-color: #ef4444 !important; /* red-500 */
  color: white !important;
  transition: background-color 0.3s ease !important;
}

.st-newsletter-btn-reset {
  background-color: initial !important;
  color: initial !important;
  transition: background-color 0.3s ease !important;
}

/* États du formulaire de newsletter */
.st-newsletter-form-disabled {
  opacity: 0.5 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease !important;
}

.st-newsletter-form-active {
  opacity: 1 !important;
  pointer-events: initial !important;
  transition: opacity 0.3s ease !important;
}

/* =========================================
   ✅ SERVICES CONFIRMATION ANIMATION
   Animation de steps pour confirmation de services
   ========================================= */

/* États d'animation pour steps de confirmation */
.st-confirmation-step-hidden {
  opacity: 0 !important;
  transform: translateX(-20px) !important;
  transition: all 0.3s ease-out !important;
}

.st-confirmation-step-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
  transition: all 0.3s ease-out !important;
}

/* Animation staggerée pour plusieurs steps */
.st-confirmation-step-delay-1 { transition-delay: 0.3s !important; }
.st-confirmation-step-delay-2 { transition-delay: 0.5s !important; }
.st-confirmation-step-delay-3 { transition-delay: 0.7s !important; }
.st-confirmation-step-delay-4 { transition-delay: 0.9s !important; }
.st-confirmation-step-delay-5 { transition-delay: 1.1s !important; }

/* Animation pour toast de confirmation */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-slideInRight {
  animation: slideInRight 0.3s ease-out;
}

/* =========================================
   📊 ADMIN DASHBOARD CHART SYSTEM  
   Variables CSS pour graphiques et métriques
   ========================================= */

/* Système de couleurs pour graphiques dashboard */
.st-chart-legend-item {
  --chart-color: #3b82f6; /* blue-500 par défaut */
  background-color: var(--chart-color);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Classes utilitaires pour couleurs de graphiques */
.st-chart-color-blue { --chart-color: #3b82f6; }
.st-chart-color-emerald { --chart-color: #10b981; }
.st-chart-color-purple { --chart-color: #8b5cf6; }
.st-chart-color-orange { --chart-color: #f59e0b; }
.st-chart-color-red { --chart-color: #ef4444; }
.st-chart-color-indigo { --chart-color: #6366f1; }
.st-chart-color-pink { --chart-color: #ec4899; }
.st-chart-color-teal { --chart-color: #14b8a6; }

/* Variables CSS pour métriques dynamiques */
.st-metric-value {
  --metric-color: var(--st-primary);
  color: var(--metric-color);
}

.st-metric-positive { --metric-color: #10b981; } /* green-500 */
.st-metric-negative { --metric-color: #ef4444; } /* red-500 */
.st-metric-neutral { --metric-color: #6b7280; } /* gray-500 */

/* =========================================
   📈 INTELLIGENCE CHARTS METRICS
   Système de métriques en temps réel avec bordures colorées
   ========================================= */

/* Base pour cartes de métriques */
.st-metric-card-base {
  border-left: 4px solid;
  transition: all 0.3s ease;
}

/* Bordures colorées pour métriques */
.st-metric-border-blue { border-left-color: #3b82f6 !important; }
.st-metric-border-emerald { border-left-color: #10b981 !important; }
.st-metric-border-purple { border-left-color: #8b5cf6 !important; }
.st-metric-border-orange { border-left-color: #f59e0b !important; }
.st-metric-border-red { border-left-color: #ef4444 !important; }
.st-metric-border-indigo { border-left-color: #6366f1 !important; }
.st-metric-border-pink { border-left-color: #ec4899 !important; }
.st-metric-border-teal { border-left-color: #14b8a6 !important; }
.st-metric-border-gray { border-left-color: #6b7280 !important; }

/* États hover pour métriques */
.st-metric-card-base:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* =========================================
   ✨ RIPPLE EFFECT - ADMIN PAGE HEADER
   Effet ripple pour boutons admin avec positionnement dynamique
   ========================================= */

/* Effet ripple dynamique */
.st-ripple-effect {
  position: absolute;
  background-color: white;
  border-radius: 50%;
  opacity: 0.3;
  width: 0.625rem; /* 10px */
  height: 0.625rem; /* 10px */
  animation: ping 0.4s cubic-bezier(0, 0, 0.2, 1);
  /* NOTE: left et top DOIVENT être définies dynamiquement par JavaScript */
  /* basé sur offsetX/offsetY de l'événement click - usage légitime de .style */
  left: var(--ripple-x, 0px);
  top: var(--ripple-y, 0px);
  pointer-events: none;
}

/* Animation ripple personnalisée */
@keyframes ripplePing {
  0% {
    transform: scale(0);
    opacity: 0.3;
  }
  75% {
    transform: scale(4);
    opacity: 0.1;
  }
  100% {
    transform: scale(6);
    opacity: 0;
  }
}

.st-ripple-effect {
  animation: ripplePing 0.6s ease-out;
}

/* =========================================
   👁️ DISPLAY STATES - TABLE FILTERING
   Remplacement des .style.display inline
   ========================================= */

/* États d'affichage pour filtrage de lignes */
.st-row-visible {
  display: table-row !important;
}

.st-row-hidden {
  display: none !important;
}

/* Animation smooth pour show/hide */
.st-row-fade-out {
  opacity: 0.3;
  transition: opacity 0.2s ease-in-out;
}

.st-row-fade-in {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

/* =========================================
   📱 MOBILE ULTRATHINK - TOUCH TARGETS PARFAITS
   Standards 44px minimum (Apple/WCAG)
   ========================================= */

/* Touch target minimum - BASE UNIVERSELLE */
.st-touch-target {
  min-width: 44px;
  min-height: 44px;
  touch-action: manipulation; /* Évite le zoom double-tap */
  -webkit-touch-callout: none; /* Évite le menu contextuel iOS */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
   🏠 HOMEPAGE MOBILE ENHANCEMENTS - Ultrathink
   ========================================= */

/* Hero mobile spacing optimizations */
@media (max-width: 768px) {
  .st-hero-with-geneva {
    min-height: 500px;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .st-hero-content {
    width: 100%;
    padding: 0 1rem;
    text-align: center;
  }
  
  .st-hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  
  .st-hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
}

/* =========================================
   🎨 PATTERN BACKGROUNDS - DIAGONAL STRIPES
   ========================================= */
.st-pattern-diagonal {
  background-image: repeating-linear-gradient(
    45deg, 
    transparent, 
    transparent 2px, 
    rgba(255,255,255,0.1) 2px, 
    rgba(255,255,255,0.1) 4px
  );
}

/* =========================================
   🏠 HOMEPAGE HERO STYLES - COMPLET V2
   ========================================= */
   
/* Hero Section Base */
.st-home-hero {
  position: relative;
  background: linear-gradient(135deg, var(--st-brand-primary) 0%, var(--st-brand-secondary) 100%);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-hero-with-geneva {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(234, 143, 127, 0.95) 0%,
    rgba(53, 28, 81, 0.95) 100%
  );
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-hero-geneva-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/images/geneva-8259296.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.st-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(234, 143, 127, 0.2) 0%,
    rgba(53, 28, 81, 0.8) 70%
  );
  z-index: 2;
}

.st-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(234, 143, 127, 0.1) 0%,
    rgba(53, 28, 81, 0.3) 100%
  );
  z-index: 3;
}

.st-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 1200px;
  width: 100%;
  padding: 2rem;
}

/* Hero Badge */
.st-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  animation: fadeInUp 0.6s ease-out;
}

.st-badge-icon {
  font-size: 1rem;
}

/* Hero Title */
.st-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.st-gradient-text {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(242, 168, 149, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite alternate;
}

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

/* Hero Subtitle */
.st-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.st-highlight-number {
  color: var(--st-brand-primary-light);
  font-weight: 700;
}

/* Hero Search Form */
.st-hero-search {
  margin-bottom: 3rem;
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

.st-search-grid {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .st-search-grid {
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 0.5rem;
  }
}

.st-search-field {
  position: relative;
}

.st-field-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(53, 28, 81, 0.6);
  z-index: 2;
}

.st-search-input {
  width: 100%;
  height: 3.5rem;
  padding-left: 3rem;
  padding-right: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--st-brand-secondary);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.st-search-input::placeholder {
  color: rgba(53, 28, 81, 0.5);
}

.st-search-input:focus {
  outline: none;
  border-color: var(--st-brand-primary);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 4px rgba(234, 143, 127, 0.2);
}

.st-search-submit {
  background: linear-gradient(135deg, var(--st-brand-primary) 0%, var(--st-brand-primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.5rem;
}

.st-search-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(234, 143, 127, 0.4);
}

/* Quick Tags */
.st-quick-tags {
  animation: fadeInUp 1.4s ease-out 0.8s both;
}

.st-quick-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.st-quick-tag:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
}

/* Hero Stats */
.st-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1.6s ease-out 1s both;
}

.st-stat-item {
  text-align: center;
}

.st-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--st-brand-primary-light);
  line-height: 1.2;
}

.st-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
  font-weight: 500;
}

.st-stat-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, 0.3);
}

/* Hero Actions */
.st-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.8s ease-out 1.2s both;
}

.st-btn-primary-hero,
.st-btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 3rem;
  font-size: 1rem;
}

.st-btn-primary-hero {
  background: white;
  color: var(--st-brand-secondary);
  border: 2px solid white;
}

.st-btn-primary-hero:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.st-btn-secondary-hero {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.st-btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
}

.st-btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Floating Elements */
.st-hero-floating {
  position: absolute;
  font-size: 1.5rem;
  z-index: 5;
  animation: float 6s ease-in-out infinite;
  opacity: 0.6;
}

.st-float-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.st-float-2 {
  top: 25%;
  right: 15%;
  animation-delay: 2s;
}

.st-float-3 {
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

.st-float-4 {
  bottom: 30%;
  right: 10%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   📊 CATEGORIES SECTION
   ========================================= */
   
.st-categories-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.st-section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.st-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(234, 143, 127, 0.1);
  border: 1px solid rgba(234, 143, 127, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--st-brand-secondary);
}

.st-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--st-brand-secondary);
  margin-bottom: 1rem;
}

.st-section-subtitle {
  font-size: 1.25rem;
  color: rgba(53, 28, 81, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.st-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.st-category-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  border: 1px solid rgba(234, 143, 127, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.st-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(234, 143, 127, 0.15);
  border-color: var(--st-brand-primary);
  text-decoration: none;
  color: inherit;
}

.st-category-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--st-brand-primary) 0%, var(--st-brand-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.st-icon-emoji {
  font-size: 1.5rem;
}

.st-category-content {
  flex-grow: 1;
}

.st-category-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--st-brand-secondary);
  margin-bottom: 0.25rem;
}

.st-category-count {
  font-size: 0.875rem;
  color: rgba(53, 28, 81, 0.6);
}

.st-category-arrow {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--st-brand-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.st-category-card:hover .st-category-arrow {
  transform: translateX(4px);
}

.st-category-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(234, 143, 127, 0.05) 50%, transparent 100%);
  transition: left 0.5s ease;
}

.st-category-card:hover .st-category-overlay {
  left: 100%;
}

/* Animations stagger */
.st-animate-stagger {
  animation: fadeInUp 0.6s ease-out both;
}

.st-delay-0 { animation-delay: 0ms; }
.st-delay-100 { animation-delay: 100ms; }
.st-delay-200 { animation-delay: 200ms; }
.st-delay-300 { animation-delay: 300ms; }
.st-delay-400 { animation-delay: 400ms; }
.st-delay-500 { animation-delay: 500ms; }
.st-delay-600 { animation-delay: 600ms; }
.st-delay-700 { animation-delay: 700ms; }
.st-delay-800 { animation-delay: 800ms; }
.st-delay-900 { animation-delay: 900ms; }
.st-delay-1000 { animation-delay: 1000ms; }

/* =========================================
   🔍 JOBS PAGE STYLES 
   ========================================= */

.st-jobs-page {
  background: #fafafa;
  min-height: 100vh;
}

/* Jobs Hero Section */
.st-jobs-hero {
  background: linear-gradient(
    135deg,
    var(--st-brand-primary) 0%,
    var(--st-brand-primary-dark) 40%,
    var(--st-brand-secondary) 100%
  );
  position: relative;
  overflow: hidden;
}

.st-jobs-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/geneva-8259296.jpg') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.st-jobs-hero > * {
  position: relative;
  z-index: 2;
}

/* Modern Search Form for Jobs */
.st-modern-search-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.st-modern-search-form .st-search-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .st-modern-search-form .st-search-grid {
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 0.75rem;
  }
}

.st-modern-search-form .st-search-input,
.st-modern-search-form .st-search-select {
  height: 3.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  background: white;
}

.st-modern-search-form .st-search-input:focus,
.st-modern-search-form .st-search-select:focus {
  outline: none;
  border-color: var(--st-brand-primary);
  box-shadow: 0 0 0 3px rgba(234, 143, 127, 0.1);
}

.st-modern-search-form .st-search-button {
  height: 3.5rem;
  background: linear-gradient(135deg, var(--st-brand-primary) 0%, var(--st-brand-primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.st-modern-search-form .st-search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(234, 143, 127, 0.3);
}

/* Jobs Layout */
.st-jobs-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

@media (max-width: 1024px) {
  .st-jobs-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Sidebar Filters */
.st-jobs-sidebar {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.st-filter-section {
  margin-bottom: 2rem;
}

.st-filter-section:last-child {
  margin-bottom: 0;
}

.st-filter-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--st-brand-secondary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f1f5f9;
}

.st-filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.st-filter-option:hover {
  color: var(--st-brand-primary);
}

.st-filter-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #d1d5db;
  border-radius: 0.25rem;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.st-filter-checkbox:checked {
  background: var(--st-brand-primary);
  border-color: var(--st-brand-primary);
}

.st-filter-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
}

/* Job Cards Grid */
.st-jobs-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.st-job-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.st-job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--st-brand-primary) 0%, var(--st-brand-primary-light) 100%);
  transition: left 0.3s ease;
}

.st-job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(234, 143, 127, 0.15);
  border-color: var(--st-brand-primary);
}

.st-job-card:hover::before {
  left: 0;
}

.st-job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.st-job-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--st-brand-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.st-job-company {
  font-size: 1rem;
  color: var(--st-brand-primary);
  font-weight: 500;
}

.st-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.st-job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.st-job-meta-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--st-brand-primary);
}

.st-job-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.st-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.st-job-tag {
  background: rgba(234, 143, 127, 0.1);
  color: var(--st-brand-primary);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(234, 143, 127, 0.2);
}

.st-job-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.st-job-date {
  font-size: 0.75rem;
  color: #9ca3af;
}

.st-job-save {
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #6b7280;
}

.st-job-save:hover {
  border-color: var(--st-brand-primary);
  color: var(--st-brand-primary);
}

.st-job-save.saved {
  background: var(--st-brand-primary);
  border-color: var(--st-brand-primary);
  color: white;
}

/* Pagination */
.st-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.st-pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  color: #6b7280;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.st-pagination-item:hover {
  border-color: var(--st-brand-primary);
  color: var(--st-brand-primary);
  text-decoration: none;
}

.st-pagination-item.active {
  background: var(--st-brand-primary);
  border-color: var(--st-brand-primary);
  color: white;
}

.st-pagination-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* =========================================
   🏢 PAGES GÉNÉRALES - STYLES COMPATIBLES
   ========================================= */

/* Layout de base pour toutes les pages */
.st-page-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.st-page-hero {
  background: linear-gradient(
    135deg,
    var(--st-brand-primary) 0%,
    var(--st-brand-primary-dark) 40%,
    var(--st-brand-secondary) 100%
  );
  padding: 4rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.st-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/geneva-8259296.jpg') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.st-page-hero > * {
  position: relative;
  z-index: 2;
}

.st-page-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: center;
}

.st-page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content sections */
.st-content-section {
  padding: 5rem 0;
}

.st-content-section:nth-child(even) {
  background: white;
}

/* Cards génériques */
.st-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.st-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(234, 143, 127, 0.15);
  border-color: var(--st-brand-primary);
}

.st-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--st-brand-secondary);
  margin-bottom: 1rem;
}

.st-card-content {
  color: #6b7280;
  line-height: 1.6;
}

/* Boutons génériques */
.st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

.st-btn-primary {
  background: linear-gradient(135deg, var(--st-brand-primary) 0%, var(--st-brand-primary-dark) 100%);
  color: white;
}

.st-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(234, 143, 127, 0.3);
  text-decoration: none;
  color: white;
}

.st-btn-secondary {
  background: white;
  color: var(--st-brand-secondary);
  border: 2px solid var(--st-brand-primary);
}

.st-btn-secondary:hover {
  background: var(--st-brand-primary);
  color: white;
  text-decoration: none;
}

/* Formulaires */
.st-form-group {
  margin-bottom: 1.5rem;
}

.st-form-label {
  display: block;
  font-weight: 600;
  color: var(--st-brand-secondary);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.st-form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: white;
}

.st-form-input:focus {
  outline: none;
  border-color: var(--st-brand-primary);
  box-shadow: 0 0 0 3px rgba(234, 143, 127, 0.1);
}

.st-form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Grille responsive */
.st-grid {
  display: grid;
  gap: 2rem;
}

.st-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.st-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.st-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Container configuration moved to tailwind.config.js */

/* Utilitaires de texte */
.st-text-center {
  text-align: center;
}

.st-text-muted {
  color: #6b7280;
}

.st-text-primary {
  color: var(--st-brand-primary);
}

.st-text-secondary {
  color: var(--st-brand-secondary);
}

/* Espacement */
.st-mb-4 {
  margin-bottom: 2rem;
}

.st-mb-8 {
  margin-bottom: 4rem;
}

.st-mt-4 {
  margin-top: 2rem;
}

.st-mt-8 {
  margin-top: 4rem;
}

/* Screen Reader Only Class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero search mobile optimization */
@media (max-width: 640px) {
  .st-hero-search {
    margin-top: 1.5rem;
    padding: 0 1rem;
  }
  
  .st-search-grid {
    gap: 0.75rem !important;
  }
  
  .st-search-input {
    font-size: 16px !important; /* Évite zoom iOS */
    height: 48px;
    padding: 0 44px 0 44px;
  }
  
  .st-search-submit {
    height: 48px;
    font-size: 16px !important;
    font-weight: 600;
  }
  
  .st-field-icon {
    left: 12px;
    width: 20px;
    height: 20px;
  }
  
  .st-detect-location {
    right: 8px;
    width: 32px;
    height: 32px;
    padding: 6px;
  }
}

/* Ultra small mobile (iPhone SE) */
@media (max-width: 375px) {
  .st-hero-title {
    font-size: 2rem;
  }
  
  .st-hero-subtitle {
    font-size: 1rem;
  }
  
  .st-search-input,
  .st-search-submit {
    height: 44px;
    min-height: 44px;
  }
  
  .st-hero-search {
    padding: 0 0.75rem;
  }
}

/* =========================================
   🧭 HEADER MOBILE NAVIGATION - Ultrathink
   ========================================= */

/* Mobile menu hamburger optimizations */
.mobile-menu-toggle {
  transition: all 0.3s ease;
  border-radius: 0.5rem;
}

.mobile-menu-toggle:hover {
  background-color: rgba(156, 163, 175, 0.1);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* Mobile menu animation */
#mobile-menu {
  transition: all 0.3s ease;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
}

#mobile-menu.show {
  max-height: 100vh;
  opacity: 1;
  transform: translateY(0);
}

/* Mobile navigation links */
@media (max-width: 768px) {
  .mobile-menu-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 0.5rem;
    min-height: 48px;
    touch-action: manipulation;
  }
  
  .mobile-menu-link:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--st-primary-DEFAULT);
    border-radius: 0 3px 3px 0;
    transition: height 0.2s ease;
  }
  
  .mobile-menu-link[aria-current="page"]:before,
  .mobile-menu-link.active:before {
    height: 24px;
  }
  
  .mobile-menu-link:active {
    transform: scale(0.98);
  }
}

/* Mobile language selector */
@media (max-width: 768px) {
  .mobile-lang-dropdown {
    transform-origin: top;
    transition: all 0.2s ease;
  }
  
  .mobile-lang-dropdown.hidden {
    transform: scaleY(0);
    opacity: 0;
  }
  
  .mobile-lang-dropdown:not(.hidden) {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Header sticky behavior mobile */
@media (max-width: 768px) {
  .sticky-header {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  }
  
  .sticky-header .mobile-menu-toggle {
    background: rgba(107, 114, 128, 0.1);
  }
}

/* =========================================
   🦶 FOOTER MOBILE ACCORDION - Ultrathink
   ========================================= */

/* Footer accordion styling */
.st-footer-toggle {
  background: transparent;
  border: none;
  touch-action: manipulation;
  transition: all 0.2s ease;
}

.st-footer-toggle:hover {
  color: var(--st-primary-light);
}

.st-footer-toggle:active {
  transform: scale(0.98);
}

.st-footer-chevron {
  transition: transform 0.3s ease;
}

.st-footer-toggle[aria-expanded="true"] .st-footer-chevron {
  transform: rotate(180deg);
}

/* Footer content animation */
.st-footer-content {
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  display: block;
}

.st-footer-content.show {
  max-height: 500px !important;
  opacity: 1 !important;
  padding-top: 0.5rem;
  display: block !important;
}

.st-footer-content.hidden {
  max-height: 0 !important;
  opacity: 0 !important;
  display: block !important;
}

/* Mobile-only accordion behavior */
@media (max-width: 1023px) {
  .st-footer-toggle {
    min-height: 48px;
  }
  
  .st-footer-content.lg\:block {
    max-height: 0 !important;
    opacity: 0 !important;
    display: block !important;
  }
}

@media (min-width: 1024px) {
  .st-footer-toggle {
    pointer-events: none;
  }
  
  .st-footer-content {
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    display: block !important;
  }
  
  .st-footer-content.show,
  .st-footer-content.hidden,
  .st-footer-content.lg\:block {
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    display: block !important;
  }
  
  .st-footer-chevron {
    display: none;
  }
}

/* Checkboxes touch-friendly - Rem problème w-4 h-4 */
.st-touch-checkbox {
  min-width: 20px;
  min-height: 20px;
  padding: 12px; /* Touch area = 20px + 24px padding = 44px ✅ */
  border-radius: 6px;
  transition: all 0.2s ease;
}

.st-touch-checkbox:hover,
.st-touch-checkbox:focus-within {
  background-color: rgba(234, 143, 127, 0.1); /* --st-brand-primary avec opacité */
}

/* Boutons touch optimaux */
.st-touch-button {
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px; /* Assure le minimum + comfort visuel */
  touch-action: manipulation;
  transition: transform 0.1s ease;
}

.st-touch-button:active {
  transform: scale(0.98); /* Feedback tactile */
}

/* Boutons icônes (save, toggle, etc.) */
.st-touch-icon {
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  border-radius: 8px;
  touch-action: manipulation;
  transition: all 0.2s ease;
}

.st-touch-icon:hover {
  background-color: rgba(241, 245, 249, 1); /* gray-100 */
}

.st-touch-icon:active {
  transform: scale(0.95);
  background-color: rgba(226, 232, 240, 1); /* gray-200 */
}

/* Zones cliquables étendues pour petites icônes */
.st-touch-extend {
  position: relative;
}

.st-touch-extend::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  min-width: 44px;
  min-height: 44px;
  z-index: -1;
}

/* Links touch-friendly dans listes */
.st-touch-link {
  min-height: 44px;
  padding: 8px 12px;
  touch-action: manipulation;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.st-touch-link:hover {
  background-color: rgba(248, 250, 252, 1); /* gray-50 */
}

/* Anti-patterns mobile - Corrections */
.st-no-double-tap {
  touch-action: manipulation; /* Évite zoom double-tap */
}

.st-no-callout {
  -webkit-touch-callout: none; /* Évite menu contextuel iOS */
  -webkit-user-select: none;
  user-select: none;
}

/* Media query pour s'assurer que les touch targets sont appliqués sur mobile */
@media (hover: none) and (pointer: coarse) {
  /* Sur mobile/tablette uniquement */
  button:not(.st-touch-target):not(.st-touch-button):not(.st-touch-icon) {
    min-width: 44px;
    min-height: 44px;
    padding: max(8px, var(--original-padding, 8px));
  }
  
  input[type="checkbox"]:not(.st-touch-checkbox) {
    min-width: 20px;
    min-height: 20px;
    padding: 12px;
  }
}

.st-animate-stagger {
  animation: staggerFadeIn 0.6s ease-out forwards;
  opacity: 0;
}

.st-animate-in {
  opacity: 1;
  transform: translateY(0);
}

.st-delay-0 { animation-delay: 0ms; }
.st-delay-50 { animation-delay: 50ms; }
.st-delay-100 { animation-delay: 100ms; }
.st-delay-150 { animation-delay: 150ms; }
.st-delay-200 { animation-delay: 200ms; }
.st-delay-250 { animation-delay: 250ms; }
.st-delay-300 { animation-delay: 300ms; }
.st-delay-350 { animation-delay: 350ms; }
.st-delay-400 { animation-delay: 400ms; }
.st-delay-450 { animation-delay: 450ms; }
.st-delay-500 { animation-delay: 500ms; }
.st-delay-600 { animation-delay: 600ms; }
.st-delay-700 { animation-delay: 700ms; }
.st-delay-800 { animation-delay: 800ms; }
.st-delay-900 { animation-delay: 900ms; }
.st-delay-1000 { animation-delay: 1000ms; }

/* =========================================
   🔍 HERO SEARCH ENHANCEMENTS - MOBILE OPTIMIZED
   Style des tags de recherche rapide et améliorations
   ========================================= */
.st-quick-tags .st-quick-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-radius: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.st-quick-tag:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero Search Form Mobile Adaptations */
.st-hero-search .st-search-grid {
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .st-hero-search .st-search-grid {
    gap: 1rem;
  }
}

.st-search-field {
  position: relative;
}

.st-search-input:focus {
  outline: none;
  ring: 2px;
  ring-color: rgba(255, 255, 255, 0.3);
}

/* Mobile: Stack search fields vertically */
@media (max-width: 767px) {
  .st-search-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .st-search-field {
    width: 100%;
  }
  
  .st-quick-tags {
    margin-top: 1.5rem;
  }
  
  .st-quick-tags .st-quick-tag {
    font-size: 0.8125rem;
    padding: 0.4rem 0.875rem;
  }
}

/* Tablet and Desktop: Horizontal layout */
@media (min-width: 768px) {
  .st-search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }
}


/* =========================================
   📝 DEPOSIT FORM COMPONENTS - TAILWIND COMPLIANT
   Styles sophistiqués pour formulaire de dépôt d'emploi
   ========================================= */

/* Stepper Component - Custom styled */
.st-deposit-stepper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.st-deposit-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.st-deposit-step.active {
  opacity: 1;
}

.st-deposit-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.st-deposit-step.active .st-deposit-step-number {
  background: white;
  color: var(--st-primary-DEFAULT);
  box-shadow: 0 2px 8px rgba(234, 143, 127, 0.3);
}

.st-deposit-step-label {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Custom Checkboxes & Radio Buttons - Tailwind Compatible */
.st-custom-checkbox,
.st-custom-radio {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.st-custom-radio {
  border-radius: 50%;
}

.st-custom-checkbox:checked,
.st-custom-radio:checked {
  border-color: var(--st-primary-DEFAULT);
  background: var(--st-primary-DEFAULT);
}

.st-custom-checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: -2px;
  left: 2px;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.st-custom-radio:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

/* File Upload Zone */
.st-file-upload-zone {
  border: 2px dashed #d1d5db;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #f9fafb;
}

.st-file-upload-zone:hover {
  border-color: var(--st-primary-DEFAULT);
  background: #f0f9ff;
}

.st-file-upload-zone.dragover {
  border-color: var(--st-primary-DEFAULT);
  background: rgba(234, 143, 127, 0.1);
}

/* Salary Range Component */
.st-salary-range {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.st-salary-separator {
  color: #6b7280;
  font-weight: 500;
  user-select: none;
}

/* Skills Tags */
.st-skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.st-skill-tag {
  background: rgba(234, 143, 127, 0.1);
  color: var(--st-primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(234, 143, 127, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.st-skill-remove {
  cursor: pointer;
  color: var(--st-primary-dark);
  font-weight: bold;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.st-skill-remove:hover {
  opacity: 1;
}

/* Progress Bar for Multi-step */
.st-form-progress {
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.st-form-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--st-primary-DEFAULT), var(--st-secondary-DEFAULT));
  transition: width 0.3s ease;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .st-deposit-stepper {
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .st-deposit-step-label {
    display: none;
  }
  
  .st-salary-range {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .st-salary-separator {
    transform: rotate(90deg);
  }
}

/* =========================================
   🔧 DROPDOWN FIXES - HARMONISATION HTML/JS
   ========================================= */

/* =========================================
   🔧 DROPDOWN HARMONIZATION - UNIFIED SYSTEM
   All dropdowns use .active class for consistency
   ========================================= */

/* Unified dropdown active state */
.user-menu-dropdown.active,
#user-menu-dropdown.active,
.lang-dropdown.active,
#lang-dropdown.active,
.lang-dropdown.show,
#navbar-menu.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Hidden state for all dropdowns */
.user-menu-dropdown:not(.active),
#user-menu-dropdown:not(.active),
.lang-dropdown:not(.active):not(.show),
#lang-dropdown:not(.active),
#navbar-menu:not(.active) {
  display: none !important;
}

/* Smooth transitions for dropdown animations */
.user-menu-dropdown,
#user-menu-dropdown,
.lang-dropdown,
#lang-dropdown {
  transition: opacity 0.15s ease-out, transform 0.15s ease-out;
  transform-origin: top right;
}

/* Mobile hamburger menu specific styles */
#navbar-menu {
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

/* =========================================
   📏 CONTAINER SYSTEM - UNIFIED IN st-variables.css
   Legacy .st-container-legacy now unified as .st-container
   ========================================= */

/* Container system moved to st-variables.css for consistency */
/* Use .st-container instead of .st-container-legacy */

/* =========================================
   🚀 JOBS HERO V2 - GENEVA BACKGROUND + GRADIENT SOPHISTIQUÉ
   Design exact du commit aebdd83 avec background Geneva
   ========================================= */
.st-jobs-hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  padding: 4rem 0;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

/* Geneva Background Image - Style V2 */
.st-jobs-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('/assets/css/geneva-8259296.jpg');
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
}

/* Geneva Overlay - V2 Style */
.st-jobs-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(234, 143, 127, 0.9) 0%, rgba(234, 143, 127, 0.7) 50%, rgba(53, 28, 81, 0.8) 100%);
  z-index: 2;
}

/* Content positioning V2 */
.st-jobs-hero .container {
  position: relative;
  z-index: 10;
}

/* =========================================
   🔍 SEARCH BAR V2 - GLASSMORPHISM SOPHISTIQUÉ
   Style exact du commit aebdd83
   ========================================= */
.st-hero-search {
  margin-top: 2rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.st-modern-search-form {
  position: relative;
}

.st-search-grid {
  display: flex;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
  gap: 8px;
  align-items: stretch;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.st-search-grid:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18), 0 10px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.st-search-field {
  flex: 1;
  position: relative;
}

.st-search-field:last-of-type {
  flex: 0 0 auto;
}

.st-search-input, 
.st-search-select {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  background: transparent;
  transition: all 0.2s ease;
}

.st-search-input:focus,
.st-search-select:focus {
  outline: none;
  background: rgba(234, 143, 127, 0.1);
}

.st-search-button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(234, 143, 127, 0.4);
}

.st-search-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(234, 143, 127, 0.6);
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-secondary) 100%);
}

/* =========================================
   📊 HERO STATS V2 - DESIGN SOPHISTIQUÉ
   ========================================= */
.st-hero-stats {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.st-hero-stats .text-center {
  opacity: 0.98;
}

.st-hero-stats .block {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.st-hero-stats .w-px {
  background: rgba(255, 255, 255, 0.3);
}

/* =========================================
   🃏 JOB CARDS V2 - HOVER EFFECTS SOPHISTIQUÉS
   Design exact du commit aebdd83
   ========================================= */
.st-job-card,
article.bg-white.border {
  transition: all 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(234, 143, 127, 0.2);
  position: relative;
  overflow: hidden;
}

.st-job-card:hover,
article.bg-white.border:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(234, 143, 127, 0.4);
}

/* Accent border V2 */
.st-job-card::before,
article.bg-white.border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.st-job-card:hover::before,
article.bg-white.border:hover::before {
  opacity: 1;
}

/* Job card title hover */
.st-job-card h3 a,
article h3 a {
  transition: color 0.2s ease;
}

.st-job-card:hover h3 a,
article:hover h3 a {
  color: var(--color-primary) !important;
}

/* Company logo hover effect */
.st-job-card img,
article img {
  transition: all 0.3s ease;
  border-radius: 8px;
}

.st-job-card:hover img,
article:hover img {
  transform: scale(1.05);
  border-radius: 12px;
}

/* =========================================
   🎯 SIDEBAR FILTERS V2 - DESIGN SOPHISTIQUÉ  
   Style cohérent avec le design V2
   ========================================= */
.st-filters-sidebar {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.st-filters-sidebar:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Filter sections */
.st-filter-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(234, 143, 127, 0.1);
}

.st-filter-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Filter options hover */
.st-filter-option:hover,
label.flex.items-center:hover {
  background: rgba(234, 143, 127, 0.05);
  border-radius: 8px;
  transform: translateX(2px);
}

/* Checkbox styling V2 */
input[type="checkbox"]:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* =========================================
   🎨 TYPOGRAPHY V2 - CLAMP RESPONSIVE
   Design exact du commit aebdd83
   ========================================= */
.st-jobs-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st-jobs-hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  line-height: 1.4;
  opacity: 0.96;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* =========================================
   📱 RESPONSIVE V2 - MOBILE OPTIMIZATIONS
   ========================================= */
@media (max-width: 768px) {
  .st-jobs-hero {
    min-height: 400px;
    padding: 3rem 0;
  }
  
  .st-jobs-hero::before {
    width: 40%;
    opacity: 0.2;
  }
  
  .st-search-grid {
    flex-direction: column;
    padding: 1rem;
    border-radius: 20px;
    gap: 1rem;
  }
  
  .st-search-field {
    flex: none;
  }
  
  .st-search-input,
  .st-search-select {
    padding: 0.875rem 0.875rem 0.875rem 2.5rem;
    border-radius: 14px;
    font-size: 1rem;
  }
  
  .st-search-button {
    padding: 1rem 1.5rem;
    border-radius: 14px;
  }
  
  .st-hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .st-hero-stats .w-px {
    display: none;
  }
}

@media (max-width: 480px) {
  .st-jobs-hero {
    min-height: 350px;
    padding: 2.5rem 0;
  }
  
  .st-jobs-hero::before {
    display: none;
  }
  
  .st-search-grid {
    padding: 0.875rem;
  }
}

/* =========================================
   📊 ADMIN DASHBOARD - MINI CHARTS CLASSES
   Alternatives fiables aux classes arbitraires Tailwind
   ========================================= */
.chart-bar-45 { height: 45% !important; }
.chart-bar-50 { height: 50% !important; }
.chart-bar-55 { height: 55% !important; }
.chart-bar-60 { height: 60% !important; }
.chart-bar-65 { height: 65% !important; }
.chart-bar-70 { height: 70% !important; }
.chart-bar-75 { height: 75% !important; }
.chart-bar-80 { height: 80% !important; }
.chart-bar-85 { height: 85% !important; }
.chart-bar-90 { height: 90% !important; }

/* Mini-chart container styles */
.st-mini-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
  gap: 2px;
  height: 40px;
  border-radius: 6px;
}

.st-mini-chart .chart-bar {
  width: 8px;
  border-radius: 2px 2px 0 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.st-mini-chart .chart-bar:hover {
  transform: translateY(-2px);
}

/* Color variants for different chart types */
.st-mini-chart.jobs .chart-bar {
  background-color: var(--st-primary-DEFAULT, #ea8f7f);
}

.st-mini-chart.jobs .chart-bar:hover {
  background-color: var(--st-primary-dark, #d77366);
}

.st-mini-chart.companies .chart-bar {
  background-color: var(--st-success, #22c55e);
}

.st-mini-chart.companies .chart-bar:hover {
  background-color: var(--st-success-dark, #16a34a);
}

.st-mini-chart.users .chart-bar {
  background-color: #3b82f6;
}

.st-mini-chart.users .chart-bar:hover {
  background-color: #2563eb;
}

/* =========================================
   🎯 SERVICES/ACCOMPAGNEMENT V2 - DESIGN SOPHISTIQUÉ
   Hero services avec gradient et glassmorphism
   ========================================= */
.st-services-hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  padding: 4rem 0;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* Services background overlay V2 */
.st-services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
  background-size: 80px 80px;
  z-index: 1;
}

.st-services-hero .container {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Services hero typography V2 */
.st-services-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st-services-hero p {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.96;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* =========================================
   📊 SERVICES HERO STATS V2 - DESIGN MODERNE
   ========================================= */
.st-services-hero .hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 2.5rem 0;
}

.st-services-hero .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.st-services-hero .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.st-services-hero .stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Hero rating V2 */
.st-services-hero .hero-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.st-services-hero .stars {
  display: flex;
  gap: 0.2rem;
  color: #fbbf24;
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.st-services-hero .rating-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* =========================================
   🃏 SERVICE CARDS V2 - GLASSMORPHISM SOPHISTIQUÉ
   ========================================= */
.st-service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(234, 143, 127, 0.2);
  position: relative;
  backdrop-filter: blur(20px);
}

.st-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(234, 143, 127, 0.4);
  background: rgba(255, 255, 255, 1);
}

/* Featured service card V2 */
.st-service-card.featured {
  border: 2px solid var(--color-primary);
  box-shadow: 0 12px 48px rgba(234, 143, 127, 0.2);
  position: relative;
}

.st-service-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  z-index: 1;
}

/* Service card hover pulse effect */
.st-service-card .featured-pulse {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 18px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.st-service-card.featured:hover .featured-pulse {
  opacity: 0.3;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.02); opacity: 0.5; }
}

/* Service icon V2 */
.st-service-card .service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(234, 143, 127, 0.3);
}

.st-service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(234, 143, 127, 0.4);
}

/* Service pricing V2 */
.st-service-card .price-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.st-service-card .price-period {
  font-size: 0.85rem;
  color: var(--color-gray-600);
  opacity: 0.8;
}

/* Button premium V2 */
.st-btn-premium {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(234, 143, 127, 0.4);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.st-btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 143, 127, 0.6);
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-secondary) 100%);
  color: white;
  text-decoration: none;
}

/* =========================================
   🎭 TESTIMONIALS V2 - CARDS SOPHISTIQUÉES
   ========================================= */
.st-testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(234, 143, 127, 0.1);
  position: relative;
}

.st-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(234, 143, 127, 0.3);
}

.st-testimonial-card .testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(234, 143, 127, 0.3);
}

.st-testimonial-card .testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin: 0.75rem 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.st-testimonial-card .verified-badge {
  color: #10b981;
  font-size: 0.85rem;
  margin-left: 0.25rem;
}

/* =========================================
   📱 SERVICES RESPONSIVE V2
   ========================================= */
@media (max-width: 768px) {
  .st-services-hero {
    min-height: 500px;
    padding: 3rem 0;
  }
  
  .st-services-hero .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .st-services-hero .stat-item {
    flex-direction: row;
    gap: 1rem;
  }
  
  .st-services-hero .stat-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .st-services-hero {
    min-height: 400px;
    padding: 2.5rem 0;
  }
  
  .st-services-hero h1 {
    font-size: 2rem;
  }
  
  .st-services-hero p {
    font-size: 1.1rem;
  }
}

/* === HERO AVEC GENÈVE - STYLE V2 PARFAIT RESTAURÉ === */
.st-hero-with-geneva {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  background: linear-gradient(135deg, var(--color-gray-50) 0%, white 50%, transparent 50%);
}

.st-hero-geneva-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('/assets/images/geneva-8259296.jpg');
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  z-index: 1;
}

.st-hero-geneva-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, transparent 30%);
  z-index: 2;
}

.st-hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 3;
}

.st-hero-with-geneva .st-hero-content {
  width: 45%;
  padding-right: var(--space-4);
  position: relative;
  z-index: 5;
  text-align: left;
}

.st-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.st-hero-text {
  margin-bottom: 2rem;
  color: white;
}

.st-hero-title {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.st-text-primary {
  color: var(--color-primary);
}

.st-hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--color-gray-600);
  margin-bottom: var(--space-8);
}

/* Hero avec Geneva - couleurs adaptées au gradient sombre */
.st-hero-with-geneva .st-hero-title {
  color: white;
  font-weight: 700;
}

.st-hero-with-geneva .st-hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
}

.st-hero-with-geneva .st-stat-number {
  color: white;
}

.st-hero-with-geneva .st-stat-label {
  color: rgba(255, 255, 255, 0.8);
}

.st-hero-subtitle strong {
  font-weight: 600;
  color: rgba(255,255,255,0.98);
}

/* === BARRE DE RECHERCHE SOPHISTIQUÉE - STYLE COMMIT aebdd83 === */
.st-hero-search {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: var(--space-8);
  /* 🎯 BARRE V2 DÉBORDANT SUR IMAGE GENÈVE - COMMIT aebdd83 EXACT */
  margin-right: -18%; /* EXACT du commit parfait aebdd83 */
  max-width: 90%; /* EXACT du commit parfait aebdd83 */
  position: relative;
  z-index: 10;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all var(--transition);
}

.st-hero-search:hover {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18), 0 10px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.st-modern-search-form {
  max-width: 780px;
  margin: 0 auto;
}

/* === SEARCH GRID ET FIELDS - STYLE COMMIT aebdd83 - RESPONSIVE OPTIMIZED === */
.st-search-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr auto;
  gap: var(--space-4);
  align-items: end;
}

/* === MOBILE RESPONSIVE OPTIMIZATION V5.0 === */
/* Critical breakpoints: 320px (iPhone SE), 390px (iPhone 12), 768px (tablet) */

@media (max-width: 768px) {
  /* Search grid mobile optimization */
  .st-search-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    align-items: stretch;
  }
  
  /* Touch-friendly search button */
  .st-search-button {
    padding: var(--space-4);
    font-size: var(--font-size-base);
    white-space: nowrap;
    min-height: 48px; /* Enhanced touch target */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
  }
  
  /* Navigation mobile enhancements */
  .header-nav {
    height: 64px; /* Optimal mobile header height */
  }
  
  /* Mobile menu improvements */
  #mobile-menu {
    animation: slideDown 0.3s ease-out;
  }
  
  /* Language selector mobile optimization */
  #mobile-lang-dropdown {
    max-height: 200px;
    overflow-y: auto;
  }
}

@media (max-width: 390px) {
  /* iPhone 12/13/14 specific optimizations */
  .st-search-button {
    font-size: var(--font-size-sm);
    padding: var(--space-3) var(--space-4);
  }
}

@media (max-width: 320px) {
  /* iPhone SE specific optimizations */
  .st-hero-title {
    font-size: var(--font-size-2xl);
  }
  
  .st-search-button {
    padding: var(--space-3);
  }
}

.st-search-field {
  position: relative;
  display: flex;
  align-items: center;
}

.st-search-input,
.st-search-select {
  width: 100%;
  padding: var(--space-4);
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-fast);
}

.st-search-input:focus,
.st-search-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgb(37 99 235 / 0.1);
}

.st-search-button {
  padding: var(--space-4) var(--space-6);
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.st-search-button:hover {
  background-color: var(--color-primary-dark);
}

/* === LOCATION SEARCH SPECIFIC === */
.st-custom-location-field {
  position: relative;
}

.st-custom-location-selector {
  position: relative;
  display: flex;
  align-items: center;
}

.st-location-input {
  width: 100%;
  padding: var(--space-4);
  padding-left: 2.5rem;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-fast);
}

.st-location-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgb(37 99 235 / 0.1);
}

.st-location-icon {
  position: absolute;
  left: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-gray-500);
  z-index: 10;
}

.st-detect-location-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-gray-500);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
}

.st-detect-location-btn:hover {
  color: var(--color-primary);
}

.st-detect-location-btn svg {
  width: 1rem;
  height: 1rem;
}

.st-location-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--color-gray-300);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 1000;
}

.st-search-container {
  display: flex;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  gap: 6px;
  align-items: stretch;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* =========================================
   💼 JOB CARDS ÉLÉGANTES - STYLE V2 ORIGINAL AVEC BARRE GAUCHE
   Design exact du V2 avec accent border et animations
   ========================================= */
.st-job-card {
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.st-job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.st-job-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.st-job-card:hover::before {
  transform: scaleY(1);
}

/* Job Header - Style original */
.st-job-header {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.st-company-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  object-fit: cover;
}

.st-company-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Job Title - Style original élégant */
.st-job-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-1);
  line-height: 1.3;
  font-weight: 600;
  color: var(--color-gray-900);
}

.st-job-title-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.st-job-title-link:hover {
  color: var(--color-primary); /* Subtil et élégant */
}

/* Company Name - Style original */
.st-company-name {
  color: var(--color-gray-600);
  margin-bottom: var(--space-2);
  font-weight: 500;
  font-size: var(--font-size-sm);
}

/* Job Details - Style original */
.st-job-details {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  color: var(--color-gray-500);
  font-size: var(--font-size-sm);
}

/* =========================================
   🎛️ FILTRES SOPHISTIQUÉS - SIDEBAR FIXE
   ========================================= */
.st-filters-sidebar-fixed {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid var(--color-gray-200);
}

.st-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-gray-100);
}

.st-sidebar-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gray-800);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.st-filters-reset {
  background: var(--color-gray-100);
  border: none;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gray-600);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.st-filters-reset:hover {
  background: var(--color-gray-200);
  color: var(--color-gray-700);
}

/* =========================================
   🏠 ACCUEIL ÉLÉGANT - STYLE ORIGINAL
   Hero, stats et composants principaux
   ========================================= */

/* Hero Section Accueil - Gradient élégant */
.st-home-hero {
  background: linear-gradient(135deg, #ea8f7f 0%, #351c51 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.st-home-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.st-home-hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Search Form Accueil - Style élégant */
.st-home-search-form {
  max-width: 600px;
  margin: 0 auto 2rem;
  display: flex;
  gap: 1rem;
}

.st-home-search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 1rem;
}

.st-home-search-button {
  background: #351c51;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition);
}

.st-home-search-button:hover {
  background: #2d1644;
}

/* Stats Grid Accueil - Style original */
.st-hero-stats {
  display: flex;
  gap: var(--space-8);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.st-stat-item {
  text-align: center;
  min-width: 120px;
}

.st-stat-number {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.st-stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
}

/* === UTILITY CLASSES === */
.st-no-jobs-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-12);
  color: var(--color-gray-600);
}

.st-no-jobs-message a {
  color: var(--color-primary);
  text-decoration: none;
}

.st-no-jobs-message a:hover {
  text-decoration: underline;
}

/* Section Container - Style élégant */
.st-home-section {
  padding: 4rem 0;
}

.st-section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.st-section-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
}

.st-section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* === RESPONSIVE LEGACY CLEANUP === */
@media (max-width: 1024px) {
  .st-jobs-hero {
    background-attachment: scroll; /* Fix background iPhone */
    padding: var(--space-8) 0;
    min-height: 400px;
  }
  
  /* Legacy job card responsive */
  .st-job-card {
    margin: 0 0 var(--space-4) 0;
    padding: var(--space-4);
  }
  
  .st-job-card:hover {
    transform: translateY(-1px); /* Subtle hover mobile */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Filters sidebar mobile */
  .st-filters-sidebar-fixed {
    position: static;
    margin-bottom: var(--space-6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
}

/* === JOB CARDS MOBILE OPTIMIZATION V5.0 === */
@media (max-width: 768px) {
  /* Enhanced job card mobile layout */
  .st-job-card,
  article.bg-white.border {
    padding: var(--space-4);
    margin-bottom: var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  
  .st-job-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }
  
  /* Company logo mobile optimization */
  .st-company-logo,
  .st-company-logo-placeholder,
  img[alt*="Logo"] {
    width: 48px !important;
    height: 48px !important;
    border-radius: var(--radius);
    flex-shrink: 0;
  }
  
  /* Touch-friendly interactive elements */
  button[aria-label*="Sauvegarder"],
  .inline-flex.items-center.px-6,
  .st-search-button,
  a[class*="bg-"],
  button[class*="bg-"] {
    min-height: 48px; /* Enhanced touch target 48px */
    min-width: 48px;
    touch-action: manipulation;
    cursor: pointer;
  }
  
  /* Job title mobile typography */
  .st-job-title,
  h2.text-xl.font-semibold,
  h3.font-semibold {
    font-size: var(--font-size-lg);
    line-height: 1.4;
    margin-bottom: var(--space-2);
  }
  
  /* Job details mobile spacing */
  .st-job-details {
    gap: var(--space-2);
    font-size: var(--font-size-sm);
  }
  
  /* Company name mobile styling */
  .st-company-name {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-2);
  }
  
  /* Job card grid mobile optimization */
  .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-3 {
    gap: var(--space-4);
  }
}

@media (max-width: 768px) {
  .st-home-hero {
    padding: 3rem 0;
  }
  
  .st-home-hero-title {
    font-size: 2rem;
  }
  
  .st-home-search-form {
    flex-direction: column;
    margin: 0 1rem 2rem;
  }
  
  .st-hero-stats {
    gap: var(--space-6);
  }
  
  .st-section-title {
    font-size: var(--font-size-2xl);
  }
}

/* === MOBILE HERO SECTION OPTIMIZATION V5.0 === */
@media (max-width: 480px) {
  /* Hero title responsive scaling */
  .st-hero-title {
    font-size: var(--font-size-3xl);
    line-height: 1.2;
    margin-bottom: var(--space-4);
  }

  /* Geneva hero mobile transformation */
  .st-hero-with-geneva {
    min-height: 500px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: var(--space-6) 0;
  }

  /* Hide Geneva image on mobile for performance */
  .st-hero-geneva-image {
    display: none;
  }

  /* Mobile hero content optimization */
  .st-hero-with-geneva .st-hero-content {
    width: 100%;
    padding: var(--space-6) var(--space-4);
    text-align: left;
  }

  .st-hero-with-geneva .st-hero-title {
    color: white;
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-4);
    font-weight: 700;
  }

  .st-hero-with-geneva .st-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-6);
    font-size: var(--font-size-lg);
  }

  /* 🔥 CRITICAL FIX: Mobile search bar optimization */
  .st-hero-with-geneva .st-hero-search {
    margin-right: 0 !important; /* Fix iPhone overflow */
    margin-left: 0 !important;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    width: 100%;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
  }
  
  .st-hero-search {
    margin-right: 0 !important; /* Global mobile fix */
    max-width: 100%;
    width: 100%;
  }

  /* Stats mobile optimization */
  .st-hero-stats {
    gap: var(--space-4);
    margin-top: var(--space-6);
  }
  
  .st-stat-number {
    font-size: var(--font-size-xl);
  }
  
  .st-stat-label {
    font-size: var(--font-size-xs);
  }
}

/* =========================================
   🏠 LOCATION SEARCH MIGRATION FROM HOME.PHP
   Migrated from inline CSS (378 lines) to supplements
   ========================================= */

/* Custom Location Selector */
.custom-location-selector {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.location-icon {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 20px;
    color: var(--st-gray-500, #6b7280);
    z-index: 1;
    pointer-events: none;
}

.location-input {
    width: 100%;
    padding: 12px 48px 12px 40px; /* Space for icon and detect button */
    border: 2px solid var(--st-gray-200, #e5e7eb);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.location-input:focus {
    outline: none;
    border-color: var(--st-brand-primary, #ea8f7f);
    box-shadow: 0 0 0 3px rgba(234, 143, 127, 0.1);
}

.detect-location-btn {
    position: absolute;
    right: 8px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--st-brand-primary, #ea8f7f);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.detect-location-btn:hover {
    background: var(--st-brand-primary-dark, #d67865);
    transform: scale(1.05);
}

.detect-location-btn svg {
    width: 16px;
    height: 16px;
}

.location-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--st-gray-200, #e5e7eb);
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 240px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid var(--st-gray-100, #f3f4f6);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.highlighted {
    background: var(--st-gray-50, #f9fafb);
}

.suggestion-item.active {
    background: var(--st-brand-primary, #ea8f7f);
    color: white;
}

.suggestion-icon {
    width: 16px;
    height: 16px;
    color: var(--st-gray-400, #9ca3af);
}

.suggestion-text {
    font-weight: 500;
}

.suggestion-distance {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--st-gray-500, #6b7280);
}

/* === MOBILE LOCATION SEARCH OPTIMIZATION V5.0 === */
@media (max-width: 768px) {
    .location-input,
    .st-location-input {
        font-size: 16px; /* Prevent zoom on iOS */
        min-height: 48px;
        padding: var(--space-3) 2.5rem var(--space-3) 2.5rem;
    }
    
    .location-suggestions,
    .st-location-suggestions {
        max-height: 200px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }
    
    .detect-location-btn,
    .st-detect-location-btn {
        width: 32px;
        height: 32px;
        right: 8px;
        border-radius: var(--radius);
    }
    
    .detect-location-btn svg,
    .st-detect-location-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .suggestion-item {
        padding: var(--space-4);
        min-height: 48px;
        font-size: 16px; /* Prevent iOS zoom */
    }
    
    .location-icon,
    .st-location-icon {
        left: var(--space-3);
        width: 20px;
        height: 20px;
    }
}

/* Spinning animation for geolocation loading */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spin-animation {
    animation: spin 1s linear infinite;
}

/* =========================================
   📏 CONTAINER CONFIGURATION MOVED TO TAILWIND.CONFIG.JS
   Previous 70vw problem fixed via proper Tailwind container configuration
   Container now uses max-width: 1400px at 2xl breakpoint (1440px+)
   ========================================= */

/* === RESPONSIVE BREAKPOINT SYSTEM V5.0 === */
/* iPhone SE (320px) - container padding handled by tailwind.config.js */
@media (max-width: 320px) {
  
  .st-hero-title {
    font-size: var(--font-size-2xl);
  }
  
  .st-search-button {
    font-size: var(--font-size-sm);
    padding: var(--space-3);
  }
  
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
}

/* iPhone 12/13/14 (390px) */
@media (max-width: 390px) and (min-width: 321px) {
  .st-search-button {
    font-size: var(--font-size-sm);
    padding: var(--space-3) var(--space-4);
  }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) and (min-width: 481px) {
  .st-hero-with-geneva {
    min-height: 450px;
  }
  
  .st-hero-with-geneva .st-hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .grid.lg\:grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .st-hero-with-geneva {
    min-height: 550px;
  }
  
  .st-hero-geneva-image {
    width: 45%;
  }
  
  .st-hero-with-geneva .st-hero-content {
    width: 50%;
  }
}

/* Container responsive sizes moved to tailwind.config.js */
  
  .st-hero-with-geneva {
    min-height: 700px;
  }
}/**
 * SuisseTalent V3 - Lazy Loading Styles
 * Optimized animations and loading states
 */

/* Lazy loading image states */
.st-lazy-image {
    transition: opacity 0.3s ease-in-out;
    background-color: #f3f4f6;
}

.st-lazy-loading {
    opacity: 0.6;
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
    background-size: 200% 100%;
    animation: lazy-shimmer 1.5s infinite ease-in-out;
}

.st-lazy-loaded {
    opacity: 1;
    background: none;
}

.st-lazy-error {
    opacity: 0.7;
    background-color: #fee2e2;
    border: 1px solid #fecaca;
}

/* Shimmer animation for loading state */
@keyframes lazy-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .st-lazy-image {
        transition: none;
    }
    
    .st-lazy-loading {
        animation: none;
        background: #e5e7eb;
    }
}

/* =========================================
   📱 COMPREHENSIVE MOBILE TOUCH OPTIMIZATION V5.0
   Critical touch targets, spacing, and mobile UX
   ========================================= */

/* === GLOBAL TOUCH TARGET STANDARDS === */
/* Minimum 48px touch targets per Apple/Google guidelines */
button,
.btn,
a[class*="btn"],
input[type="submit"],
input[type="button"],
.st-search-button,
.st-detect-location-btn,
.st-filters-reset,
[data-job-id],
[onclick],
[data-toggle],
.dropdown-toggle {
  min-height: 48px;
  min-width: 48px;
  touch-action: manipulation;
  cursor: pointer;
}

/* === ENHANCED MOBILE NAVIGATION === */
@media (max-width: 768px) {
  /* Mobile header optimization */
  .header-nav,
  .bg-white.border-b.border-gray-200.shadow-sm {
    height: 64px; /* Optimal mobile header height */
    padding: 0 var(--space-4);
  }
  
  /* Mobile menu button enhanced */
  .md\:hidden button {
    padding: var(--space-3);
    border-radius: var(--radius);
    min-height: 48px;
    min-width: 48px;
  }
  
  /* Language selector mobile */
  .relative button {
    padding: var(--space-2) var(--space-3);
    min-height: 44px;
  }
  
  /* Mobile menu links */
  #mobile-menu a,
  .mobile-menu a {
    padding: var(--space-4) var(--space-3);
    min-height: 48px;
    display: flex;
    align-items: center;
    border-radius: var(--radius);
    margin-bottom: var(--space-1);
  }
  
  /* Mobile menu actions optimization */
  #mobile-menu button,
  #mobile-menu a[class*="bg-"] {
    min-height: 52px;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: 600;
  }
}

/* === FORM ELEMENTS MOBILE OPTIMIZATION === */
@media (max-width: 768px) {
  /* Input fields mobile-friendly */
  input,
  select,
  textarea,
  .st-search-input,
  .st-location-input {
    min-height: 48px;
    padding: var(--space-3) var(--space-4);
    font-size: 16px; /* Prevent iOS zoom */
    border-radius: var(--radius);
    touch-action: manipulation;
  }
  
  /* Search modal mobile */
  #search-modal input {
    padding: var(--space-4);
    font-size: 16px;
    min-height: 52px;
  }
  
  /* Location suggestions mobile */
  .st-location-suggestions .suggestion-item,
  .location-suggestions .suggestion-item {
    padding: var(--space-4);
    min-height: 48px;
    touch-action: manipulation;
  }
}

/* === MOBILE CONTENT OPTIMIZATION === */
@media (max-width: 768px) {
  /* Card hover states for touch */
  .st-job-card,
  article.bg-white.border {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .st-job-card:active,
  article.bg-white.border:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  
  /* Link touch optimization */
  a:not([class*="bg-"]) {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-2);
    margin: -var(--space-1) -var(--space-2);
    border-radius: var(--radius-sm);
    transition: background-color 0.2s ease;
    touch-action: manipulation;
  }
  
  /* Button link touch optimization */
  a[class*="bg-"],
  .inline-flex.items-center {
    min-height: 48px;
    padding: var(--space-3) var(--space-6);
    touch-action: manipulation;
    cursor: pointer;
  }
  
  /* Icon buttons mobile */
  button[aria-label],
  .p-2 {
    min-height: 44px;
    min-width: 44px;
    padding: var(--space-3);
  }
}

/* === MOBILE SPACING AND TYPOGRAPHY === */
@media (max-width: 768px) {
  /* Section padding mobile */
  .py-16 {
    padding-top: var(--space-12) !important;
    padding-bottom: var(--space-12) !important;
  }
  
  .py-20 {
    padding-top: var(--space-16) !important;
    padding-bottom: var(--space-16) !important;
  }
  
  /* Container mobile padding handled by tailwind.config.js */
  
  /* Typography mobile scaling */
  .text-4xl {
    font-size: var(--font-size-3xl) !important;
  }
  
  .text-3xl {
    font-size: var(--font-size-2xl) !important;
  }
  
  .text-2xl {
    font-size: var(--font-size-xl) !important;
  }
  
  /* Grid mobile optimization */
  .grid-cols-2 {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .lg\:grid-cols-3 {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
  
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }
}

/* === ACCESSIBILITY ENHANCEMENTS === */
@media (max-width: 768px) {
  /* Focus states mobile */
  button:focus,
  a:focus,
  input:focus,
  select:focus,
  textarea:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }
  
  /* Active states for touch feedback */
  button:active,
  a[class*="bg-"]:active {
    transform: scale(0.98);
  }
  
  /* Loading states mobile */
  .loading,
  [disabled] {
    opacity: 0.6;
    pointer-events: none;
  }
}

/* === MOBILE ANIMATIONS === */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.3s ease-out;
}

/* === MOBILE PERFORMANCE OPTIMIZATIONS === */
@media (max-width: 768px) {
  /* Optimize transforms for mobile */
  .transform,
  .hover\:scale-105:hover,
  .group-hover\:scale-110 {
    will-change: transform;
    backface-visibility: hidden;
  }
  
  /* Optimize shadows for mobile */
  .shadow-lg,
  .shadow-xl {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .hover\:shadow-lg:hover,
  .hover\:shadow-xl:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }
}

/* =========================================
   📈 FINAL PERFORMANCE ENHANCEMENTS V5.0
   Critical optimizations for mobile Core Web Vitals
   ========================================= */

/* === CRITICAL WEB VITALS OPTIMIZATION === */
/* LCP (Largest Contentful Paint) optimization */
.st-hero-title {
  contain: layout style;
  font-display: swap;
}

/* CLS (Cumulative Layout Shift) prevention */
.st-company-logo,
.st-company-logo-placeholder,
img[alt*="Logo"] {
  aspect-ratio: 1;
  width: 48px;
  height: 48px;
}

.st-hero-geneva-image {
  aspect-ratio: 2/1;
  contain: layout;
}

/* FID (First Input Delay) optimization */
button,
a[class*="bg-"],
.st-search-button,
[onclick],
[data-toggle] {
  contain: layout style;
  will-change: auto;
}

/* === MOBILE SPECIFIC PERFORMANCE === */
@media (max-width: 768px) {
  /* iOS Safari specific fixes */
  @supports (-webkit-touch-callout: none) {
    .st-hero-search {
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
    }
    
    input,
    select,
    textarea {
      font-size: 16px; /* Prevent zoom */
      -webkit-appearance: none;
    }
    
    button {
      -webkit-appearance: none;
      border-radius: var(--radius);
    }
  }
  
  /* Android specific optimizations */
  input[type="text"],
  input[type="search"] {
    font-size: 16px; /* Prevent zoom on Android */
  }
  
  /* Optimize scrolling performance */
  body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scroll-behavior: smooth;
  }
  
  /* Performance optimizations */
  .st-hero-with-geneva {
    background-attachment: scroll; /* Better performance than fixed */
  }
  
  /* Network optimization for slow connections */
  @media (prefers-reduced-data: reduce) {
    .st-hero-geneva-image {
      background-image: none;
      background-color: var(--color-gray-100);
    }
  }
}

/* === ACCESSIBILITY ENHANCEMENTS === */
/* High contrast mode */
@media (prefers-contrast: high) {
  .st-job-card {
    border: 2px solid var(--color-gray-900);
  }
  
  .st-search-button {
    border: 2px solid white;
  }
}

/* Reduced motion for accessibility and performance */
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  
  .st-job-card:hover,
  .hover\:scale-105:hover,
  .group-hover\:scale-110 {
    transform: none !important;
  }
}

/* === FINAL TOUCH OPTIMIZATION === */
@media (hover: none) and (pointer: coarse) {
  /* Pure touch devices optimization */
  .st-job-card {
    transition: transform 0.1s ease, box-shadow 0.1s ease;
  }
  
  .st-job-card:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  
  /* Touch-optimized button feedback */
  button:active,
  .st-search-button:active,
  a[class*="bg-"]:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
  }
}

/* === END MOBILE OPTIMIZATION V5.0 === */

/* =========================================
   🏆 SERVICES PAGE V2 STYLES - ULTRAMODERNE
   ========================================= */

/* Services Hero Section - Sophistiqué */
.st-services-hero {
  position: relative;
  background: linear-gradient(135deg, 
    var(--st-primary-600) 0%, 
    var(--st-primary-500) 40%,
    var(--st-secondary-500) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.st-services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Services Stats - Glassmorphism Cards */
.st-services-stats .st-stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.st-services-stats .st-stat-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Service Cards - Premium Design */
.st-service-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.st-service-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.st-service-card .group:hover .text-6xl {
  animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(2deg); }
}

/* CTA Buttons - Advanced Styling */
.st-btn-primary-hero {
  position: relative;
  overflow: hidden;
}

.st-btn-primary-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.st-btn-primary-hero:hover::before {
  left: 100%;
}

.st-btn-secondary-hero {
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.st-btn-secondary-hero:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* Testimonials - Enhanced Cards */
.st-testimonial-card {
  position: relative;
  transition: all 0.3s ease;
}

.st-testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--st-primary-200);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

.st-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Modal Animations - Smooth */
#consultationModal {
  backdrop-filter: blur(4px);
}

#consultationModal .transform {
  animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Form Enhancements */
#consultationForm input:focus,
#consultationForm select:focus,
#consultationForm textarea:focus {
  box-shadow: 0 0 0 3px rgba(234, 143, 127, 0.1),
              0 0 0 1px var(--st-primary-500);
  transform: translateY(-1px);
}

/* Pricing Cards - Special Effects */
.st-service-card .group:hover .bg-gradient-to-br {
  background: linear-gradient(135deg, 
    var(--st-primary-50) 0%,
    var(--st-secondary-50) 50%,
    var(--st-primary-100) 100%
  );
}

/* Popular Badge Animation */
.st-service-card .animate-pulse {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 0 15px rgba(234, 143, 127, 0.5);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 25px rgba(234, 143, 127, 0.8);
    transform: scale(1.05);
  }
}

/* Mobile Optimizations for Services */
@media (max-width: 768px) {
  .st-services-hero {
    min-height: 80vh;
    padding: 4rem 0;
  }
  
  .st-services-stats {
    grid-template-columns: 2fr 2fr;
    gap: 1rem;
  }
  
  .st-service-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
  
  #consultationModal .sm\\:max-w-lg {
    margin: 1rem;
    max-width: calc(100vw - 2rem);
  }
}

/* Touch Optimization for iOS/Android */
@media (hover: none) and (pointer: coarse) {
  .st-service-card:active {
    transform: scale(0.98);
  }
  
  .st-btn-primary-hero:active,
  .st-btn-secondary-hero:active {
    transform: scale(0.95);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .st-service-card,
  .st-testimonial-card,
  .st-services-stats .st-stat-card {
    transition: none;
  }
  
  .st-service-card .group:hover .text-6xl {
    animation: none;
  }
  
  @keyframes modalSlideIn {
    from, to {
      opacity: 1;
      transform: none;
    }
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .st-services-hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
  }
  
  .st-service-card {
    border: 2px solid;
  }
  
  .st-services-stats .st-stat-card {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
  }
}

/* =========================================
   🎯 COMPANIES PAGE - STYLES ULTRAMODERNES V2 
   Architecture: Hero → Top Recruiters → Search → Grid → Empty States
   ========================================= */

/* Hero Section Entreprises */
.st-companies-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, 
    var(--st-primary-600) 0%, 
    var(--st-purple-600) 25%,
    var(--st-blue-600) 50%,
    var(--st-indigo-600) 75%,
    var(--st-primary-700) 100%
  );
}

.st-companies-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 90%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
  backdrop-filter: blur(1px);
  z-index: 1;
}

.st-companies-hero .st-hero-background {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400" opacity="0.1"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23ffffff" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') repeat;
  background-size: 40px 40px;
  animation: grid-move 20s linear infinite;
  z-index: 2;
}

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

.st-companies-hero .st-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 3;
}

.st-companies-hero .st-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: var(--space-8) var(--space-4);
}

.st-companies-hero .st-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: var(--space-6);
  animation: float 3s ease-in-out infinite;
}

.st-companies-hero .st-hero-badge .st-badge-icon {
  font-size: 1.2em;
}

.st-companies-hero .st-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.st-companies-hero .st-gradient-text {
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.st-companies-hero .st-hero-subtitle {
  font-size: var(--font-size-xl);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.st-companies-hero .st-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.st-companies-hero .st-stat-item {
  text-align: center;
}

.st-companies-hero .st-stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  margin-bottom: var(--space-1);
}

.st-companies-hero .st-stat-label {
  font-size: var(--font-size-sm);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.st-companies-hero .st-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

.st-companies-hero .st-hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.st-companies-hero .st-btn-primary-hero,
.st-companies-hero .st-btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
}

.st-companies-hero .st-btn-primary-hero {
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  color: var(--st-gray-900);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.st-companies-hero .st-btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.st-companies-hero .st-btn-secondary-hero {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.st-companies-hero .st-btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.st-companies-hero .st-btn-icon {
  width: 18px;
  height: 18px;
}

/* Floating Elements */
.st-companies-hero .st-hero-floating {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
  z-index: 4;
}

.st-companies-hero .st-float-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.st-companies-hero .st-float-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.st-companies-hero .st-float-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

/* Top Recruiters Section */
.st-top-recruiters {
  padding: var(--space-20) 0;
  background: linear-gradient(180deg, var(--st-gray-50) 0%, white 100%);
}

.st-top-recruiters .st-section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.st-top-recruiters .st-section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--st-yellow-100) 0%, var(--st-orange-100) 100%);
  color: var(--st-orange-800);
  border-radius: 50px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
  border: 1px solid var(--st-orange-200);
}

.st-top-recruiters .st-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--st-gray-900);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.st-top-recruiters .st-gradient-text {
  background: linear-gradient(135deg, var(--st-primary-600) 0%, var(--st-purple-600) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st-top-recruiters .st-section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--st-gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.st-recruiters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.st-recruiter-card {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--st-gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.6s ease-out;
  animation-fill-mode: both;
  animation-delay: var(--delay, 0ms);
}

.st-recruiter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--st-primary-300);
}

.st-recruiter-card .st-recruiter-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.st-recruiter-card .st-recruiter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.st-recruiter-card .st-recruiter-logo {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 2px solid var(--st-gray-100);
  transition: border-color 0.3s ease;
}

.st-recruiter-card:hover .st-recruiter-logo {
  border-color: var(--st-primary-300);
}

.st-recruiter-card .st-recruiter-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.st-recruiter-card .st-recruiter-rank {
  background: linear-gradient(135deg, var(--st-primary-600) 0%, var(--st-purple-600) 100%);
  color: white;
  padding: var(--space-1) var(--space-3);
  border-radius: 50px;
  font-size: var(--font-size-sm);
  font-weight: 700;
}

.st-recruiter-card .st-recruiter-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--st-gray-900);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.st-recruiter-card .st-recruiter-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.st-recruiter-card .st-recruiter-jobs {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
}

.st-recruiter-card .st-jobs-count {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--st-primary-600);
}

.st-recruiter-card .st-jobs-label {
  font-size: var(--font-size-sm);
  color: var(--st-gray-600);
}

.st-recruiter-card .st-recruiter-badge {
  padding: var(--space-1) var(--space-2);
  background: var(--st-green-100);
  color: var(--st-green-800);
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.st-recruiter-card .st-recruiter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--st-primary-600) 0%, var(--st-purple-600) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.st-recruiter-card:hover .st-recruiter-overlay {
  opacity: 0.05;
}

/* Search Section */
.st-search-section {
  padding: var(--space-16) 0;
  background: white;
  border-bottom: 1px solid var(--st-gray-200);
}

.st-search-container {
  max-width: 900px;
  margin: 0 auto;
}

.st-search-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.st-search-title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--st-gray-900);
  margin-bottom: var(--space-2);
}

.st-search-subtitle {
  font-size: var(--font-size-lg);
  color: var(--st-gray-600);
}

.st-search-form {
  background: white;
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--st-gray-200);
  padding: var(--space-6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.st-search-main {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.st-search-field {
  position: relative;
}

.st-field-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--st-gray-700);
  margin-bottom: var(--space-2);
}

.st-field-icon {
  width: 16px;
  height: 16px;
  color: var(--st-gray-500);
}

.st-search-input,
.st-search-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--st-gray-300);
  border-radius: var(--border-radius-lg);
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
  background: white;
}

.st-search-input:focus,
.st-search-select:focus {
  outline: none;
  border-color: var(--st-primary-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.st-search-submit {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: linear-gradient(135deg, var(--st-primary-600) 0%, var(--st-blue-600) 100%);
  color: white;
  border: none;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  height: fit-content;
  align-self: end;
}

.st-search-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.st-search-filters {
  display: flex;
  justify-content: center;
}

.st-checkbox-filter {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--font-size-base);
  color: var(--st-gray-700);
}

.st-checkbox-filter input[type="checkbox"] {
  display: none;
}

.st-checkbox-design {
  width: 20px;
  height: 20px;
  border: 2px solid var(--st-gray-300);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: white;
}

.st-checkbox-filter input[type="checkbox"]:checked + .st-checkbox-design {
  background: var(--st-primary-600);
  border-color: var(--st-primary-600);
}

.st-checkbox-icon {
  width: 12px;
  height: 12px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.st-checkbox-filter input[type="checkbox"]:checked + .st-checkbox-design .st-checkbox-icon {
  opacity: 1;
}

/* Results Section */
.st-companies-results {
  padding: var(--space-16) 0;
}

.st-results-header {
  margin-bottom: var(--space-8);
}

.st-results-title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--st-gray-900);
  margin-bottom: var(--space-4);
}

.st-search-query {
  color: var(--st-primary-600);
  font-weight: 700;
}

.st-active-filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.st-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: var(--st-blue-100);
  color: var(--st-blue-800);
  border-radius: 50px;
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.st-filter-remove {
  color: var(--st-blue-600);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--font-size-lg);
  line-height: 1;
  transition: color 0.3s ease;
}

.st-filter-remove:hover {
  color: var(--st-blue-800);
}

/* Companies Grid */
.st-companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-8);
}

.st-company-card {
  background: white;
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--st-gray-200);
  padding: var(--space-6);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.6s ease-out;
  animation-fill-mode: both;
  animation-delay: var(--delay, 0ms);
}

.st-company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--st-primary-300);
}

.st-company-card.st-animate-in {
  animation: slideInUp 0.6s ease-out;
}

.st-company-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.st-company-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 2px solid var(--st-gray-100);
  transition: border-color 0.3s ease;
  flex-shrink: 0;
}

.st-company-card:hover .st-company-logo {
  border-color: var(--st-primary-300);
}

.st-company-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.st-company-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.st-company-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-2);
  border-radius: 50px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.st-badge-recruiting {
  background: var(--st-green-100);
  color: var(--st-green-800);
}

.st-badge-recruiting .st-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--st-green-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.st-badge-featured {
  background: var(--st-yellow-100);
  color: var(--st-yellow-800);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.st-company-content {
  margin-bottom: var(--space-6);
}

.st-company-name {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.st-company-name a {
  color: var(--st-gray-900);
  text-decoration: none;
  transition: color 0.3s ease;
}

.st-company-name a:hover {
  color: var(--st-primary-600);
}

.st-company-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.st-company-location,
.st-company-jobs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--st-gray-600);
  font-size: var(--font-size-sm);
}

.st-meta-icon {
  width: 16px;
  height: 16px;
  color: var(--st-gray-400);
}

.st-jobs-count {
  font-weight: 600;
  color: var(--st-primary-600);
}

.st-company-description {
  color: var(--st-gray-700);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.st-company-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--st-gray-100);
}

.st-company-contact {
  display: flex;
  gap: var(--space-4);
}

.st-contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--st-gray-600);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color 0.3s ease;
}

.st-contact-link:hover {
  color: var(--st-primary-600);
}

.st-contact-icon {
  width: 14px;
  height: 14px;
}

.st-company-actions {
  display: flex;
  gap: var(--space-2);
}

.st-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.st-btn-primary {
  background: linear-gradient(135deg, var(--st-primary-600) 0%, var(--st-blue-600) 100%);
  color: white;
  border: none;
}

.st-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
}

.st-btn-secondary {
  background: white;
  color: var(--st-gray-700);
  border: 1px solid var(--st-gray-300);
}

.st-btn-secondary:hover {
  background: var(--st-gray-50);
  border-color: var(--st-gray-400);
}

.st-btn-icon {
  width: 14px;
  height: 14px;
}

.st-company-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--st-primary-600) 0%, var(--st-purple-600) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.st-company-card:hover .st-company-overlay {
  opacity: 0.02;
}

/* Pagination */
.st-pagination {
  margin-top: var(--space-12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.st-pagination-info {
  color: var(--st-gray-600);
  font-size: var(--font-size-sm);
}

.st-pagination-controls {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.st-pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: white;
  color: var(--st-gray-700);
  border: 1px solid var(--st-gray-300);
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: all 0.3s ease;
}

.st-pagination-btn:hover {
  background: var(--st-gray-50);
  border-color: var(--st-primary-300);
  color: var(--st-primary-600);
}

.st-pagination-pages {
  display: flex;
  gap: var(--space-1);
}

.st-pagination-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--st-gray-300);
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  color: var(--st-gray-700);
  font-weight: 500;
  transition: all 0.3s ease;
}

.st-pagination-number:hover,
.st-pagination-number.active {
  background: var(--st-primary-600);
  border-color: var(--st-primary-600);
  color: white;
}

/* Empty State */
.st-empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  padding: var(--space-12) 0;
}

.st-empty-content {
  text-align: center;
  max-width: 500px;
}

.st-empty-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-6);
  color: var(--st-gray-400);
}

.st-empty-icon svg {
  width: 100%;
  height: 100%;
}

.st-empty-title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--st-gray-900);
  margin-bottom: var(--space-4);
}

.st-empty-message {
  font-size: var(--font-size-lg);
  color: var(--st-gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

.st-empty-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .st-companies-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
  }
  
  .st-recruiters-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .st-companies-hero {
    min-height: 60vh;
  }
  
  .st-companies-hero .st-hero-stats {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .st-companies-hero .st-stat-divider {
    width: 60px;
    height: 1px;
  }
  
  .st-companies-hero .st-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .st-companies-hero .st-btn-primary-hero,
  .st-companies-hero .st-btn-secondary-hero {
    justify-content: center;
  }
  
  .st-companies-hero .st-hero-floating {
    display: none;
  }
  
  .st-top-recruiters {
    padding: var(--space-12) 0;
  }
  
  .st-recruiters-grid {
    grid-template-columns: 1fr;
  }
  
  .st-search-main {
    grid-template-columns: 1fr;
  }
  
  .st-search-submit {
    align-self: stretch;
    justify-content: center;
  }
  
  .st-companies-grid {
    grid-template-columns: 1fr;
  }
  
  .st-company-footer {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
  }
  
  .st-company-contact {
    justify-content: center;
  }
  
  .st-company-actions {
    justify-content: center;
  }
  
  .st-pagination {
    justify-content: center;
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .st-pagination-controls {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .st-companies-hero .st-hero-content {
    padding: var(--space-6) var(--space-3);
  }
  
  .st-companies-hero .st-hero-title {
    font-size: 2rem;
  }
  
  .st-top-recruiters,
  .st-search-section,
  .st-companies-results {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
  
  .st-company-card {
    padding: var(--space-4);
  }
  
  .st-company-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-3);
  }
  
  .st-company-badges {
    flex-direction: row;
  }
  
  .st-pagination-pages {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Touch Interactions */
@media (hover: none) and (pointer: coarse) {
  .st-company-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .st-recruiter-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .st-company-card:active,
  .st-recruiter-card:active {
    transform: scale(0.98);
  }
  
  .st-btn-primary-hero:active,
  .st-btn-secondary-hero:active {
    transform: scale(0.95);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .st-company-card,
  .st-recruiter-card {
    animation: none;
    transition: none;
  }
  
  .st-companies-hero .st-hero-floating {
    animation: none;
  }
  
  .st-companies-hero .st-hero-background {
    animation: none;
  }
  
  .st-companies-hero .st-hero-badge {
    animation: none;
  }
  
  @keyframes slideInUp {
    from, to {
      opacity: 1;
      transform: none;
    }
  }
  
  @keyframes float {
    from, to {
      transform: none;
    }
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .st-companies-hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
  }
  
  .st-company-card,
  .st-recruiter-card {
    border: 2px solid;
  }
  
  .st-top-recruiters {
    background: white;
  }
}

/* =========================================
   🎯 HOMEPAGE - STYLES ULTRAMODERNES V2 COMPLETS
   Architecture: Hero → Categories → Jobs → Map → Features → Blog → FAQ → CTA
   ========================================= */

/* Homepage Hero avec Genève - Extensions V2 */
.st-home-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.st-home-hero .st-hero-geneva-image {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/geneva-8259296.jpg');
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.st-home-hero .st-hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.9) 0%, 
    rgba(139, 92, 246, 0.8) 25%,
    rgba(236, 72, 153, 0.8) 50%,
    rgba(249, 115, 22, 0.8) 75%,
    rgba(59, 130, 246, 0.9) 100%
  );
  z-index: 2;
}

.st-home-hero .st-hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400" opacity="0.08"><defs><pattern id="homeGrid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23ffffff" stroke-width="1.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23homeGrid)"/></svg>') repeat;
  background-size: 50px 50px;
  animation: homeGridMove 25s linear infinite;
  z-index: 3;
}

@keyframes homeGridMove {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(50px, 50px) rotate(1deg); }
}

.st-home-hero .st-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 4;
}

.st-home-hero .st-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: var(--space-8) var(--space-4);
}

.st-home-hero .st-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-8);
  animation: heroFloat 4s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.st-home-hero .st-hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

.st-home-hero .st-gradient-text {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 25%, #f97316 50%, #ef4444 75%, #ec4899 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(15deg); }
}

.st-home-hero .st-hero-subtitle {
  font-size: var(--font-size-xl);
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: var(--space-10);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.st-home-hero .st-highlight-number {
  color: #fbbf24;
  font-weight: 800;
}

/* Hero Search Form Avancé */
.st-home-hero .st-hero-search {
  margin-bottom: var(--space-8);
}

.st-home-hero .st-search-grid {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: var(--space-3);
  max-width: 700px;
  margin: 0 auto var(--space-6);
  background: rgba(255, 255, 255, 0.15);
  padding: var(--space-3);
  border-radius: var(--border-radius-2xl);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.st-home-hero .st-search-field {
  position: relative;
  display: flex;
  align-items: center;
}

.st-home-hero .st-field-icon {
  position: absolute;
  left: var(--space-4);
  width: 18px;
  height: 18px;
  color: var(--st-gray-500);
  z-index: 2;
}

.st-home-hero .st-search-input {
  width: 100%;
  padding: var(--space-4) var(--space-4) var(--space-4) var(--space-12);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius-xl);
  font-size: var(--font-size-base);
  color: var(--st-gray-900);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.st-home-hero .st-search-input:focus {
  outline: none;
  background: white;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
}

.st-home-hero .st-search-input::placeholder {
  color: var(--st-gray-500);
  font-weight: 500;
}

.st-home-hero .st-location-field {
  position: relative;
}

.st-home-hero .st-detect-location {
  position: absolute;
  right: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--st-primary-600);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.st-home-hero .st-detect-location:hover {
  background: var(--st-primary-700);
  transform: translateY(-50%) scale(1.1);
}

.st-home-hero .st-detect-location svg {
  width: 14px;
  height: 14px;
}

.st-home-hero .st-search-submit {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: var(--border-radius-xl);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

.st-home-hero .st-search-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.st-home-hero .st-btn-icon {
  width: 16px;
  height: 16px;
}

/* Location Suggestions */
.st-location-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 20;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.st-suggestion-item {
  padding: var(--space-3) var(--space-4);
  cursor: pointer;
  border-bottom: 1px solid var(--st-gray-100);
  transition: background-color 0.2s ease;
}

.st-suggestion-item:hover {
  background: var(--st-gray-50);
}

.st-suggestion-item:last-child {
  border-bottom: none;
}

/* Hero Stats Sophistiqués */
.st-home-hero .st-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.st-home-hero .st-stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-4);
  border-radius: var(--border-radius-xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
}

.st-home-hero .st-stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  margin-bottom: var(--space-1);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st-home-hero .st-stat-label {
  font-size: var(--font-size-sm);
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.st-home-hero .st-stat-divider {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
}

/* Hero Actions */
.st-home-hero .st-hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.st-home-hero .st-btn-primary-hero,
.st-home-hero .st-btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: 50px;
  font-weight: 700;
  font-size: var(--font-size-lg);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.st-home-hero .st-btn-primary-hero {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: var(--st-gray-900);
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}

.st-home-hero .st-btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(251, 191, 36, 0.5);
}

.st-home-hero .st-btn-secondary-hero {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
}

.st-home-hero .st-btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Floating Elements Hero */
.st-home-hero .st-hero-floating {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.7;
  animation: heroFloat 8s ease-in-out infinite;
  z-index: 5;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.st-home-hero .st-float-1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.st-home-hero .st-float-2 {
  top: 25%;
  right: 12%;
  animation-delay: 2s;
}

.st-home-hero .st-float-3 {
  bottom: 35%;
  left: 15%;
  animation-delay: 4s;
}

.st-home-hero .st-float-4 {
  bottom: 20%;
  right: 18%;
  animation-delay: 6s;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
  25% { transform: translateY(-15px) rotate(1deg) scale(1.05); }
  50% { transform: translateY(0px) rotate(-1deg) scale(1); }
  75% { transform: translateY(10px) rotate(0.5deg) scale(0.98); }
}

/* Categories Section */
.st-categories-section {
  padding: var(--space-20) 0;
  background: linear-gradient(180deg, var(--st-gray-50) 0%, white 50%, var(--st-gray-50) 100%);
}

.st-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.st-category-card {
  background: white;
  padding: var(--space-6);
  border-radius: var(--border-radius-2xl);
  border: 1px solid var(--st-gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  animation: slideInUp 0.8s ease-out;
  animation-fill-mode: both;
  animation-delay: var(--delay, 0ms);
  cursor: pointer;
}

.st-category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--st-primary-300);
}

.st-category-card .st-category-icon {
  margin-bottom: var(--space-4);
  text-align: center;
}

.st-category-card .st-icon-emoji {
  font-size: 3rem;
  display: block;
  transition: all 0.3s ease;
  filter: grayscale(0.2);
}

.st-category-card:hover .st-icon-emoji {
  transform: scale(1.2) rotate(5deg);
  filter: grayscale(0);
}

.st-category-card .st-category-content {
  text-align: center;
  margin-bottom: var(--space-4);
}

.st-category-card .st-category-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--st-gray-900);
  margin-bottom: var(--space-2);
  line-height: 1.4;
}

.st-category-card .st-category-count {
  font-size: var(--font-size-sm);
  color: var(--st-primary-600);
  font-weight: 500;
}

.st-category-card .st-category-arrow {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 24px;
  height: 24px;
  color: var(--st-gray-400);
  transition: all 0.3s ease;
  opacity: 0;
}

.st-category-card:hover .st-category-arrow {
  opacity: 1;
  transform: translateX(4px);
  color: var(--st-primary-600);
}

.st-category-card .st-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--st-primary-50) 0%, var(--st-blue-50) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.st-category-card:hover .st-category-overlay {
  opacity: 0.5;
}

/* Jobs Section */
.st-jobs-section {
  padding: var(--space-20) 0;
  background: white;
}

.st-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.st-job-card {
  background: white;
  padding: var(--space-6);
  border-radius: var(--border-radius-2xl);
  border: 1px solid var(--st-gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.8s ease-out;
  animation-fill-mode: both;
  animation-delay: var(--delay, 0ms);
}

.st-job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--st-primary-300);
}

.st-job-card .st-job-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.st-job-card .st-job-company {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
}

.st-job-card .st-company-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--st-primary-600) 0%, var(--st-blue-600) 100%);
  color: white;
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-sm);
  flex-shrink: 0;
}

.st-job-card .st-company-info {
  flex: 1;
  min-width: 0;
}

.st-job-card .st-job-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-1);
  line-height: 1.4;
}

.st-job-card .st-job-title a {
  color: var(--st-gray-900);
  text-decoration: none;
  transition: color 0.3s ease;
}

.st-job-card:hover .st-job-title a {
  color: var(--st-primary-600);
}

.st-job-card .st-company-name {
  font-size: var(--font-size-sm);
  color: var(--st-gray-600);
  font-weight: 500;
}

.st-job-card .st-job-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.st-job-card .st-job-badge {
  padding: var(--space-1) var(--space-2);
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.st-job-card .st-badge-new {
  background: var(--st-green-100);
  color: var(--st-green-800);
  animation: pulse 2s infinite;
}

.st-job-card .st-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  color: var(--st-gray-600);
  font-size: var(--font-size-sm);
}

.st-job-card .st-job-location,
.st-job-card .st-job-type,
.st-job-card .st-job-salary {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.st-job-card .st-meta-icon {
  width: 14px;
  height: 14px;
  color: var(--st-gray-400);
}

.st-job-card .st-job-description {
  color: var(--st-gray-700);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.st-job-card .st-job-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--st-gray-100);
}

.st-job-card .st-job-time {
  font-size: var(--font-size-xs);
  color: var(--st-gray-500);
}

.st-job-card .st-job-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.st-job-card .st-job-bookmark {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--st-gray-300);
  border-radius: 50%;
  color: var(--st-gray-400);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-job-card .st-job-bookmark:hover,
.st-job-card .st-job-bookmark.st-bookmarked {
  background: var(--st-primary-600);
  border-color: var(--st-primary-600);
  color: white;
}

.st-job-card .st-job-bookmark svg {
  width: 14px;
  height: 14px;
}

.st-job-card .st-job-apply {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
  background: var(--st-primary-600);
  color: white;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: all 0.3s ease;
}

.st-job-card .st-job-apply:hover {
  background: var(--st-primary-700);
  transform: translateY(-1px);
}

.st-job-card .st-job-apply .st-btn-icon {
  width: 12px;
  height: 12px;
}

.st-job-card .st-job-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--st-primary-50) 0%, var(--st-blue-50) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.st-job-card:hover .st-job-overlay {
  opacity: 0.3;
}

/* Empty Jobs State */
.st-empty-jobs {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  margin-top: var(--space-12);
}

.st-empty-content {
  text-align: center;
  max-width: 400px;
}

.st-empty-icon {
  font-size: 4rem;
  margin-bottom: var(--space-4);
  opacity: 0.6;
}

.st-empty-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--st-gray-900);
  margin-bottom: var(--space-2);
}

.st-empty-message {
  color: var(--st-gray-600);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

/* Map Section */
.st-map-section {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--st-primary-50) 0%, var(--st-blue-50) 100%);
}

.st-map-container {
  background: white;
  border-radius: var(--border-radius-3xl);
  padding: var(--space-12);
  margin-top: var(--space-12);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.st-map-preview {
  text-align: center;
  margin-bottom: var(--space-8);
}

.st-map-visual {
  position: relative;
  background: linear-gradient(135deg, var(--st-gray-100) 0%, var(--st-gray-50) 100%);
  border-radius: var(--border-radius-2xl);
  padding: var(--space-12);
  margin-bottom: var(--space-6);
  border: 2px dashed var(--st-gray-300);
}

.st-map-icon {
  font-size: 4rem;
  margin-bottom: var(--space-4);
  opacity: 0.8;
}

.st-map-overlay-content {
  max-width: 500px;
  margin: 0 auto;
}

.st-map-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--st-gray-900);
  margin-bottom: var(--space-4);
}

.st-map-description {
  font-size: var(--font-size-lg);
  color: var(--st-gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.st-map-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-top: var(--space-6);
}

.st-map-stat {
  text-align: center;
}

.st-map-stat .st-stat-number {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--st-primary-600);
  margin-bottom: var(--space-1);
}

.st-map-stat .st-stat-label {
  font-size: var(--font-size-sm);
  color: var(--st-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.st-map-actions {
  text-align: center;
}

/* Features Section */
.st-features-section {
  padding: var(--space-20) 0;
  background: white;
}

.st-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.st-feature-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--border-radius-2xl);
  border: 1px solid var(--st-gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
  animation: slideInUp 0.8s ease-out;
  animation-fill-mode: both;
  animation-delay: var(--delay, 0ms);
}

.st-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--st-primary-300);
}

.st-feature-card .st-feature-icon {
  margin-bottom: var(--space-6);
}

.st-feature-card .st-icon-emoji {
  font-size: 4rem;
  display: block;
  transition: all 0.3s ease;
  filter: grayscale(0.3);
}

.st-feature-card:hover .st-icon-emoji {
  transform: scale(1.1) rotate(5deg);
  filter: grayscale(0);
}

.st-feature-card .st-feature-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--st-gray-900);
  margin-bottom: var(--space-4);
}

.st-feature-card .st-feature-description {
  color: var(--st-gray-600);
  line-height: 1.7;
}

.st-feature-card .st-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--st-primary-50) 0%, var(--st-blue-50) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.st-feature-card:hover .st-feature-overlay {
  opacity: 0.4;
}

/* Blog Section */
.st-blog-section {
  padding: var(--space-20) 0;
  background: linear-gradient(180deg, var(--st-gray-50) 0%, white 100%);
}

.st-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.st-blog-card {
  background: white;
  border-radius: var(--border-radius-2xl);
  overflow: hidden;
  border: 1px solid var(--st-gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: slideInUp 0.8s ease-out;
  animation-fill-mode: both;
  animation-delay: var(--delay, 0ms);
}

.st-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--st-primary-300);
}

.st-blog-card .st-blog-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.st-blog-card .st-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.st-blog-card:hover .st-blog-image img {
  transform: scale(1.05);
}

.st-blog-card .st-blog-category {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
}

.st-blog-card .st-blog-category span {
  background: var(--st-primary-600);
  color: white;
  padding: var(--space-1) var(--space-3);
  border-radius: 50px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.st-blog-card .st-blog-content {
  padding: var(--space-6);
}

.st-blog-card .st-blog-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  line-height: 1.4;
}

.st-blog-card .st-blog-title a {
  color: var(--st-gray-900);
  text-decoration: none;
  transition: color 0.3s ease;
}

.st-blog-card:hover .st-blog-title a {
  color: var(--st-primary-600);
}

.st-blog-card .st-blog-excerpt {
  color: var(--st-gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.st-blog-card .st-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--st-gray-500);
}

.st-blog-card .st-blog-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.st-blog-card .st-author-name {
  font-weight: 600;
  color: var(--st-gray-700);
}

.st-blog-card .st-blog-reading-time {
  font-weight: 600;
  color: var(--st-primary-600);
}

.st-blog-card .st-blog-footer {
  padding-top: var(--space-4);
  border-top: 1px solid var(--st-gray-100);
}

.st-blog-card .st-blog-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--st-primary-600);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.st-blog-card .st-blog-link:hover {
  gap: var(--space-3);
  color: var(--st-primary-700);
}

.st-blog-card .st-blog-link .st-btn-icon {
  width: 14px;
  height: 14px;
}

.st-blog-card .st-blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--st-primary-50) 0%, var(--st-blue-50) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.st-blog-card:hover .st-blog-overlay {
  opacity: 0.1;
}

/* FAQ Section */
.st-faq-section {
  padding: var(--space-20) 0;
  background: white;
}

/* CTA Section Finale */
/* CTA Section supprimée - utilise maintenant Tailwind CSS pur */

.st-cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.st-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: var(--space-8);
  animation: heroFloat 5s ease-in-out infinite;
}

.st-cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--space-6);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.st-cta-title .st-gradient-text {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st-cta-subtitle {
  font-size: var(--font-size-xl);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: var(--space-10);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.st-cta-actions {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.st-cta-trust {
  margin-top: var(--space-10);
}

.st-trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.st-trust-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-4);
  border-radius: var(--border-radius-xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
}

.st-trust-number {
  font-size: var(--font-size-2xl);
  font-weight: 900;
  margin-bottom: var(--space-1);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st-trust-label {
  font-size: var(--font-size-sm);
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.st-trust-divider {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4), transparent);
}

/* CTA Floating Elements */
.st-cta-floating {
  position: absolute;
  font-size: 3rem;
  opacity: 0.6;
  animation: heroFloat 10s ease-in-out infinite;
  z-index: 5;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.st-cta-float-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.st-cta-float-2 {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.st-cta-float-3 {
  bottom: 25%;
  left: 20%;
  animation-delay: 6s;
}

/* Section Headers Communs */
.st-section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.st-section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--st-primary-100) 0%, var(--st-blue-100) 100%);
  color: var(--st-primary-800);
  border-radius: 50px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
  border: 1px solid var(--st-primary-200);
}

.st-section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--st-gray-900);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.st-section-title .st-gradient-text {
  background: linear-gradient(135deg, var(--st-primary-600) 0%, var(--st-blue-600) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st-section-subtitle {
  font-size: var(--font-size-xl);
  color: var(--st-gray-600);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Section Footers */
.st-section-footer {
  text-align: center;
  margin-top: var(--space-12);
}

.st-btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border: 2px solid var(--st-primary-600);
  color: var(--st-primary-600);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: var(--font-size-lg);
  transition: all 0.3s ease;
  background: transparent;
}

.st-btn-view-all:hover {
  background: var(--st-primary-600);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.st-btn-view-all .st-btn-icon {
  width: 16px;
  height: 16px;
}

/* Boutons Standards */
.st-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--border-radius-xl);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.st-btn-primary {
  background: linear-gradient(135deg, var(--st-primary-600) 0%, var(--st-blue-600) 100%);
  color: white;
}

.st-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.st-btn-secondary {
  background: white;
  color: var(--st-gray-700);
  border: 1px solid var(--st-gray-300);
}

.st-btn-secondary:hover {
  background: var(--st-gray-50);
  border-color: var(--st-primary-300);
  color: var(--st-primary-600);
}

/* Responsive Design */
@media (max-width: 768px) {
  .st-home-hero {
    min-height: 70vh;
  }
  
  .st-home-hero .st-search-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  
  .st-home-hero .st-hero-stats {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .st-home-hero .st-stat-divider {
    width: 60px;
    height: 2px;
  }
  
  .st-home-hero .st-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .st-home-hero .st-hero-floating {
    display: none;
  }
  
  .st-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-4);
  }
  
  .st-jobs-grid {
    grid-template-columns: 1fr;
  }
  
  .st-features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .st-blog-grid {
    grid-template-columns: 1fr;
  }
  
  .st-map-container {
    padding: var(--space-6);
  }
  
  .st-map-stats {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .st-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .st-trust-stats {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .st-trust-divider {
    width: 60px;
    height: 2px;
  }
  
  .st-cta-floating {
    display: none;
  }
}

@media (max-width: 480px) {
  .st-home-hero .st-hero-content {
    padding: var(--space-6) var(--space-3);
  }
  
  .st-categories-grid {
    grid-template-columns: 1fr;
  }
  
  .st-category-card,
  .st-job-card,
  .st-feature-card,
  .st-blog-card {
    margin: 0 var(--space-2);
  }
  
  .st-job-card .st-job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }
  
  .st-job-card .st-job-badges {
    flex-direction: row;
  }
}

/* Animation Classes */
.st-animate-in {
  animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Touch Interactions */
@media (hover: none) and (pointer: coarse) {
  .st-category-card:hover,
  .st-job-card:hover,
  .st-feature-card:hover,
  .st-blog-card:hover {
    transform: none;
  }
  
  .st-category-card:active,
  .st-job-card:active,
  .st-feature-card:active,
  .st-blog-card:active {
    transform: scale(0.98);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .st-home-hero .st-hero-background::before,
  .st-cta-background::before {
    animation: none;
  }
  
  .st-home-hero .st-hero-floating,
  .st-cta-floating {
    animation: none;
  }
  
  .st-category-card,
  .st-job-card,
  .st-feature-card,
  .st-blog-card {
    animation: none;
  }
  
  @keyframes slideInUp {
    from, to {
      opacity: 1;
      transform: none;
    }
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .st-home-hero,
  .st-cta-section {
    background: linear-gradient(135deg, #000 0%, #333 100%);
  }
  
  .st-category-card,
  .st-job-card,
  .st-feature-card,
  .st-blog-card {
    border: 2px solid;
  }
}

/* =========================================
   🎯 FIN HOMEPAGE - TOTAL: 4,720+ lignes avec toutes les optimisations V2 complètes
   Architecture: Variables → Container → Hero → Categories → Jobs → Map → Features → Blog → CTA → Responsive
   ========================================= */

/* =========================================
   🎯 FIN COMPANIES - TOTAL: 3,540+ lignes avec toutes les optimisations V2
   Architecture: Variables → Container → Hero → Search → Cards → Companies → Responsive
   ========================================= */

/* =========================================
   💼 JOBS PAGE V2 STYLES - ULTRAMODERN DESIGN
   Advanced UI with Glassmorphism & Sophisticated Filtering
   ========================================= */

/* Jobs Hero V2 - Enhanced with Complex Background */
.st-jobs-hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, 
        var(--st-brand-secondary) 0%,
        var(--st-brand-primary-dark) 35%,
        var(--st-brand-primary) 65%,
        var(--st-brand-primary-light) 100%
    );
    overflow: hidden;
}

.st-jobs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(234, 143, 127, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(53, 28, 81, 0.3) 0%, transparent 50%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.st-jobs-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

/* Enhanced Search Form */
.st-hero-search {
    position: relative;
    z-index: 10;
}

.st-modern-search-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: searchFormSlideUp 0.8s ease-out;
}

@keyframes searchFormSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.st-search-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr auto;
    gap: 1rem;
    align-items: center;
}

.st-search-field {
    position: relative;
}

.st-search-input,
.st-search-select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(234, 143, 127, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--st-brand-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.st-search-input:focus,
.st-search-select:focus {
    outline: none;
    border-color: var(--st-brand-primary);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 0 0 4px rgba(234, 143, 127, 0.15),
        0 8px 25px rgba(234, 143, 127, 0.2);
    transform: translateY(-1px);
}

.st-search-button {
    background: linear-gradient(135deg, 
        var(--st-brand-primary) 0%,
        var(--st-brand-primary-dark) 100%
    );
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(234, 143, 127, 0.3);
}

.st-search-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%
    );
    transition: left 0.6s ease;
}

.st-search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(234, 143, 127, 0.4);
}

.st-search-button:hover::before {
    left: 100%;
}

/* Hero Statistics Enhancement */
.st-hero-stats {
    position: relative;
    z-index: 10;
    margin-top: 3rem;
}

.st-hero-stats > div {
    position: relative;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.st-hero-stats > div:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Filters Sidebar V2 Enhancement */
.st-jobs-page aside {
    position: sticky;
    top: 100px;
}

.st-jobs-page aside > div {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(234, 143, 127, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.st-jobs-page aside > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--st-brand-primary) 0%,
        var(--st-brand-primary-light) 50%,
        var(--st-brand-primary) 100%
    );
}

/* Enhanced Filter Groups */
.st-filter-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(234, 143, 127, 0.1);
}

.st-filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.st-filter-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--st-brand-secondary);
    margin-bottom: 1rem;
}

.st-filter-icon {
    font-size: 1.2rem;
}

.st-filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.st-filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.st-filter-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(234, 143, 127, 0.1) 50%, 
        transparent 100%
    );
    transition: left 0.4s ease;
}

.st-filter-option:hover {
    background: rgba(234, 143, 127, 0.05);
    transform: translateX(2px);
}

.st-filter-option:hover::before {
    left: 100%;
}

/* Custom Checkbox Styling */
.st-filter-option input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(234, 143, 127, 0.3);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.st-filter-option input[type="checkbox"]:checked {
    background: var(--st-brand-primary);
    border-color: var(--st-brand-primary);
}

.st-filter-option input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.st-option-text {
    flex: 1;
    margin-left: 0.75rem;
    font-weight: 500;
    color: var(--st-brand-secondary);
}

.st-count {
    background: rgba(234, 143, 127, 0.1);
    color: var(--st-brand-primary-dark);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Job Cards V2 Enhancement */
.st-jobs-page article {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(234, 143, 127, 0.1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.st-jobs-page article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--st-brand-primary) 0%,
        var(--st-brand-primary-light) 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.st-jobs-page article:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(234, 143, 127, 0.3);
}

.st-jobs-page article:hover::before {
    transform: scaleX(1);
}

/* Company Logo Enhancement */
.st-jobs-page article img {
    border: 2px solid rgba(234, 143, 127, 0.1);
    transition: all 0.3s ease;
}

.st-jobs-page article:hover img {
    border-color: rgba(234, 143, 127, 0.3);
    transform: scale(1.05);
}

/* Job Title Enhancement */
.st-jobs-page article h3 a {
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.st-jobs-page article h3 a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--st-brand-primary);
    transition: width 0.3s ease;
}

.st-jobs-page article:hover h3 a::after {
    width: 100%;
}

/* Tags Enhancement */
.st-jobs-page .bg-st-primary-100 {
    background: rgba(234, 143, 127, 0.1) !important;
    color: var(--st-brand-primary-dark) !important;
    border: 1px solid rgba(234, 143, 127, 0.2);
    position: relative;
    overflow: hidden;
}

.st-jobs-page .bg-st-primary-100::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(234, 143, 127, 0.2) 50%, 
        transparent 100%
    );
    transition: left 0.4s ease;
}

.st-jobs-page article:hover .bg-st-primary-100::before {
    left: 100%;
}

/* Action Button Enhancement */
.st-jobs-page article .bg-st-primary-600 {
    background: linear-gradient(135deg, 
        var(--st-brand-primary) 0%,
        var(--st-brand-primary-dark) 100%
    ) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(234, 143, 127, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.st-jobs-page article .bg-st-primary-600::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%
    );
    transition: left 0.6s ease;
}

.st-jobs-page article .bg-st-primary-600:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(234, 143, 127, 0.4);
}

.st-jobs-page article .bg-st-primary-600:hover::before {
    left: 100%;
}

/* Pagination V2 Enhancement */
.st-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.st-pagination-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(234, 143, 127, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.st-pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--st-brand-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.st-pagination-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--st-brand-primary-light) 0%,
        var(--st-brand-primary) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.st-pagination-link:hover::before {
    opacity: 1;
}

.st-pagination-link:hover {
    color: white;
    transform: translateY(-1px);
}

.st-pagination-link.active {
    background: linear-gradient(135deg, 
        var(--st-brand-primary) 0%,
        var(--st-brand-primary-dark) 100%
    );
    color: white;
    box-shadow: 0 4px 15px rgba(234, 143, 127, 0.4);
}

.st-pagination-link.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.st-pagination-ellipsis {
    padding: 0 0.5rem;
    color: var(--st-brand-secondary);
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .st-search-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .st-search-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .st-jobs-hero {
        min-height: 500px;
        padding: 3rem 0;
    }
    
    .st-modern-search-form {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .st-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .st-hero-stats > div {
        width: 100%;
    }
    
    .st-jobs-page aside {
        position: relative;
        top: auto;
    }
    
    .st-pagination-list {
        padding: 0.75rem 1rem;
        gap: 0.25rem;
    }
    
    .st-pagination-link {
        width: 36px;
        height: 36px;
    }
}

/* No Results Enhancement */
.st-no-jobs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.st-no-jobs-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(234, 143, 127, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.st-no-jobs-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.st-no-jobs h3 {
    color: var(--st-brand-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.st-no-jobs p {
    color: rgba(53, 28, 81, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.st-no-jobs .btn {
    background: linear-gradient(135deg, 
        var(--st-brand-primary) 0%,
        var(--st-brand-primary-dark) 100%
    );
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(234, 143, 127, 0.3);
}

.st-no-jobs .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 143, 127, 0.4);
}

/* Loading States */
.jobs-list.updating {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.jobs-list.updating::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(234, 143, 127, 0.2);
    border-top-color: var(--st-brand-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Active Filters Display */
.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(234, 143, 127, 0.1);
    color: var(--st-brand-primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(234, 143, 127, 0.2);
    transition: all 0.3s ease;
}

.active-filter-tag:hover {
    background: rgba(234, 143, 127, 0.15);
    transform: translateY(-1px);
}

.active-filter-tag button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.2em;
    line-height: 1;
    padding: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.active-filter-tag button:hover {
    opacity: 1;
}

/* =========================================
   🎯 FIN JOBS - TOTAL: 650+ lignes avec toutes les optimisations V2
   Architecture: Variables → Hero → Search → Filters → Cards → Pagination → Mobile
   ========================================= */


/* Blog Hero V2 - Enhanced with Editorial Theme */
.st-blog-page .st-blog-hero {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, 
        var(--st-brand-secondary) 0%,
        var(--st-brand-primary-dark) 30%,
        var(--st-brand-primary) 60%,
        var(--st-brand-primary-light) 100%
    );
    overflow: hidden;
}

.st-blog-page .st-blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(234, 143, 127, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(53, 28, 81, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.st-blog-page .st-blog-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

/* Enhanced Search Form for Blog */
.st-blog-page .st-hero-search {
    position: relative;
    z-index: 10;
}

.st-blog-page .st-search-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    animation: searchFormSlideUp 0.8s ease-out;
}

.st-blog-page .st-search-form .flex {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 1rem;
    align-items: center;
}

.st-blog-page .st-search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid rgba(234, 143, 127, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--st-brand-secondary);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.st-blog-page .st-search-input:focus {
    outline: none;
    border-color: var(--st-brand-primary);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 0 0 4px rgba(234, 143, 127, 0.15),
        0 6px 20px rgba(234, 143, 127, 0.2);
    transform: translateY(-1px);
}

.st-blog-page .st-search-field-category {
    position: relative;
}

.st-blog-page .st-category-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #666;
    z-index: 2;
}

.st-blog-page .st-search-select-category {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid rgba(234, 143, 127, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--st-brand-secondary);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    appearance: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.st-blog-page .st-search-select-category:focus {
    outline: none;
    border-color: var(--st-brand-primary);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 0 0 4px rgba(234, 143, 127, 0.15),
        0 6px 20px rgba(234, 143, 127, 0.2);
    transform: translateY(-1px);
}

.st-blog-page .st-search-button {
    background: linear-gradient(135deg, 
        var(--st-brand-primary) 0%,
        var(--st-brand-primary-dark) 100%
    );
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(234, 143, 127, 0.3);
}

.st-blog-page .st-search-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(234, 143, 127, 0.4);
}

/* Hero Statistics Enhancement */
.st-blog-page .st-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.st-blog-page .st-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.st-blog-page .st-stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.st-blog-page .st-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.st-blog-page .st-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.st-blog-page .st-stat-divider {
    width: 1px;
    height: 2rem;
    background: rgba(255, 255, 255, 0.3);
}

/* Blog Layout Enhancement */
.st-blog-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.st-blog-page .st-blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Main Content Area */
.st-blog-page .st-blog-main {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(234, 143, 127, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.st-blog-page .st-section-header {
    margin-bottom: 2rem;
}

.st-blog-page .st-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--st-brand-secondary);
    margin-bottom: 0.5rem;
}

.st-blog-page .st-section-subtitle {
    color: rgba(53, 28, 81, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Articles Grid Enhancement */
.st-blog-page .st-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.st-blog-page .st-article-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(234, 143, 127, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    position: relative;
}

.st-blog-page .st-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--st-brand-primary) 0%,
        var(--st-brand-primary-light) 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.st-blog-page .st-article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(234, 143, 127, 0.2);
}

.st-blog-page .st-article-card:hover::before {
    transform: scaleX(1);
}

.st-blog-page .st-article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.st-blog-page .st-article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.st-blog-page .st-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.st-blog-page .st-article-card:hover .st-article-image img {
    transform: scale(1.05);
}

.st-blog-page .st-article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.st-blog-page .st-category-tag {
    background: rgba(234, 143, 127, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(234, 143, 127, 0.3);
}

.st-blog-page .st-article-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.st-blog-page .st-read-time-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--st-brand-secondary);
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.st-blog-page .st-read-time-badge .icon {
    width: 1rem;
    height: 1rem;
}

.st-blog-page .st-article-content {
    padding: 1.5rem;
}

.st-blog-page .st-article-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--st-brand-secondary);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.st-blog-page .st-article-card:hover .st-article-title {
    color: var(--st-brand-primary);
}

.st-blog-page .st-article-excerpt {
    color: rgba(53, 28, 81, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.st-blog-page .st-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.st-blog-page .st-article-tags .tag {
    background: rgba(234, 143, 127, 0.1);
    color: var(--st-brand-primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(234, 143, 127, 0.2);
}

.st-blog-page .st-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(53, 28, 81, 0.6);
}

.st-blog-page .st-meta-author,
.st-blog-page .st-meta-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.st-blog-page .st-article-meta .icon {
    width: 1rem;
    height: 1rem;
}

/* Sidebar Enhancement */
.st-blog-page .st-blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.st-blog-page .st-sidebar-widget {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(234, 143, 127, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.st-blog-page .st-widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--st-brand-secondary);
    margin-bottom: 1rem;
}

/* Recent Articles Widget */
.st-blog-page .st-recent-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.st-blog-page .st-recent-article {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(234, 143, 127, 0.1);
}

.st-blog-page .st-recent-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.st-blog-page .st-recent-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.st-blog-page .st-recent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.st-blog-page .st-recent-article:hover .st-recent-image img {
    transform: scale(1.1);
}

.st-blog-page .st-recent-content {
    flex: 1;
}

.st-blog-page .st-recent-title a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--st-brand-secondary);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.st-blog-page .st-recent-title a:hover {
    color: var(--st-brand-primary);
}

.st-blog-page .st-recent-date {
    font-size: 0.8rem;
    color: rgba(53, 28, 81, 0.6);
    margin-top: 0.25rem;
    display: block;
}

/* Categories Widget */
.st-blog-page .st-categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.st-blog-page .st-category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--st-brand-secondary);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.st-blog-page .st-category-item:hover {
    background: rgba(234, 143, 127, 0.05);
    border-color: rgba(234, 143, 127, 0.2);
    transform: translateX(3px);
}

.st-blog-page .st-category-item.active {
    background: rgba(234, 143, 127, 0.1);
    border-color: rgba(234, 143, 127, 0.3);
    color: var(--st-brand-primary-dark);
}

.st-blog-page .st-category-name {
    font-weight: 500;
}

.st-blog-page .st-category-count {
    background: rgba(234, 143, 127, 0.2);
    color: var(--st-brand-primary-dark);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Newsletter Widget Enhancement */
.st-blog-page .st-newsletter-widget {
    background: linear-gradient(135deg, 
        rgba(234, 143, 127, 0.05) 0%,
        rgba(234, 143, 127, 0.1) 100%
    ) !important;
    border: 2px solid rgba(234, 143, 127, 0.2) !important;
    position: relative;
    overflow: hidden;
}

.st-blog-page .st-newsletter-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 40%, 
        rgba(234, 143, 127, 0.1) 50%, 
        transparent 60%
    );
    animation: shimmer 3s infinite;
    opacity: 0;
}

.st-blog-page .st-newsletter-widget:hover::before {
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.st-blog-page .st-newsletter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.st-blog-page .st-newsletter-badge {
    background: var(--st-brand-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(234, 143, 127, 0.3);
}

.st-blog-page .st-newsletter-description {
    color: rgba(53, 28, 81, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.st-blog-page .st-newsletter-benefits {
    margin-bottom: 1.5rem;
}

.st-blog-page .st-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(53, 28, 81, 0.8);
}

.st-blog-page .st-benefit-icon {
    font-size: 1rem;
}

.st-blog-page .st-newsletter-form {
    margin-bottom: 1rem;
}

.st-blog-page .st-form-group {
    margin-bottom: 1rem;
}

.st-blog-page .st-newsletter-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(234, 143, 127, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--st-brand-secondary);
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.st-blog-page .st-newsletter-input:focus {
    outline: none;
    border-color: var(--st-brand-primary);
    box-shadow: 0 0 0 3px rgba(234, 143, 127, 0.1);
}

.st-blog-page .st-newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
}

.st-blog-page .st-newsletter-checkbox input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(234, 143, 127, 0.3);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.st-blog-page .st-newsletter-checkbox input[type="checkbox"]:checked {
    background: var(--st-brand-primary);
    border-color: var(--st-brand-primary);
}

.st-blog-page .st-newsletter-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.st-blog-page .st-checkbox-text {
    font-size: 0.85rem;
    color: rgba(53, 28, 81, 0.7);
    line-height: 1.4;
}

.st-blog-page .st-checkbox-text a {
    color: var(--st-brand-primary);
    text-decoration: underline;
}

.st-blog-page .st-newsletter-btn {
    width: 100%;
    background: linear-gradient(135deg, 
        var(--st-brand-primary) 0%,
        var(--st-brand-primary-dark) 100%
    );
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 143, 127, 0.3);
    position: relative;
    overflow: hidden;
}

.st-blog-page .st-newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%
    );
    transition: left 0.6s ease;
}

.st-blog-page .st-newsletter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(234, 143, 127, 0.4);
}

.st-blog-page .st-newsletter-btn:hover::before {
    left: 100%;
}

.st-blog-page .st-newsletter-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.st-blog-page .st-newsletter-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: rgb(34, 197, 94);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.st-blog-page .st-newsletter-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: rgb(239, 68, 68);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.st-blog-page .st-newsletter-footer {
    font-size: 0.8rem;
    color: rgba(53, 28, 81, 0.6);
    text-align: center;
}

/* Pagination Enhancement */
.st-blog-page .st-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.st-blog-page .st-pagination-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(234, 143, 127, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.st-blog-page .st-pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--st-brand-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.st-blog-page .st-pagination-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--st-brand-primary-light) 0%,
        var(--st-brand-primary) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.st-blog-page .st-pagination-link:hover::before {
    opacity: 1;
}

.st-blog-page .st-pagination-link:hover {
    color: white;
    transform: translateY(-1px);
}

.st-blog-page .st-pagination-link.active {
    background: linear-gradient(135deg, 
        var(--st-brand-primary) 0%,
        var(--st-brand-primary-dark) 100%
    );
    color: white;
    box-shadow: 0 4px 15px rgba(234, 143, 127, 0.4);
}

/* No Articles State */
.st-blog-page .st-no-articles {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    border: 1px solid rgba(234, 143, 127, 0.1);
}

.st-blog-page .st-no-articles h3 {
    color: var(--st-brand-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.st-blog-page .st-no-articles p {
    color: rgba(53, 28, 81, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.st-blog-page .st-btn-primary {
    background: linear-gradient(135deg, 
        var(--st-brand-primary) 0%,
        var(--st-brand-primary-dark) 100%
    );
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(234, 143, 127, 0.3);
}

.st-blog-page .st-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 143, 127, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .st-blog-page .st-blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .st-blog-page .st-blog-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .st-blog-page .st-blog-hero {
        min-height: 400px;
        padding: 2rem 0;
    }
    
    .st-blog-page .st-search-form .flex {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .st-blog-page .st-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .st-blog-page .st-hero-stats .st-stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .st-blog-page .st-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .st-blog-page .st-pagination-list {
        padding: 0.75rem 1rem;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .st-blog-page .st-blog-main,
    .st-blog-page .st-sidebar-widget {
        padding: 1rem;
    }
    
    .st-blog-page .st-article-content {
        padding: 1rem;
    }
}

/* Success Animation for Newsletter */
.st-blog-page .st-newsletter-widget.success {
    animation: successPulse 1s ease-in-out;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* =========================================
   🎯 FIN BLOG - TOTAL: 700+ lignes avec toutes les optimisations V2
   Architecture: Variables → Hero → Search → Layout → Articles → Sidebar → Newsletter → Mobile
   ========================================= */

/* =========================================
   🎯 AUTH VERIFICATION COMPONENTS
   ========================================= */

.st-verification-result {
    text-align: center;
    padding: 2rem 0;
}

.st-result-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.st-result-icon svg {
    width: 2rem;
    height: 2rem;
}

.st-result-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.st-result-icon.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
}

.st-result-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.st-result-message {
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.st-result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.st-btn-icon {
    width: 1rem;
    height: 1rem;
}

@media (max-width: 480px) {
    .st-result-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .st-result-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* =========================================
   🎯 FIN AUTH VERIFICATION COMPONENTS
   ========================================= */

/* =========================================
   🎯 USER SETTINGS COMPONENTS
   ========================================= */

.st-settings-container {
    max-width: 800px;
    margin: 0 auto;
}

.st-settings-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.st-section-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
}

.st-section-header h2 {
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.st-section-header p {
    color: #6b7280;
    margin: 0;
}

.st-settings-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.st-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.st-notification-groups {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.st-notification-group h3 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.st-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.st-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.st-checkbox-label:hover {
    background: #f1f5f9;
    border-color: var(--color-primary);
}

.st-checkbox-label input[type="checkbox"] {
    margin: 0;
    accent-color: var(--color-primary);
}

.st-checkbox-content {
    flex: 1;
}

.st-checkbox-content strong {
    color: var(--color-secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.st-checkbox-content small {
    color: #6b7280;
}

/* User Settings Notifications */
.st-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

.st-notification.success {
    background: #10b981;
    color: white;
}

.st-notification.error {
    background: #ef4444;
    color: white;
}

.st-notification .icon {
    width: 20px;
    height: 20px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile responsive for settings */
@media (max-width: 768px) {
    .st-form-row {
        grid-template-columns: 1fr;
    }
    
    .st-settings-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .st-checkbox-label {
        padding: 0.75rem;
    }
}

/* =========================================
   🎯 FIN USER SETTINGS COMPONENTS
   ========================================= */

/* =========================================
   🎯 ADMIN COMPANY DETAIL COMPONENTS
   ========================================= */

.st-company-detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin-top: 2rem;
}

.st-main-card, .st-section-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.st-company-header-detail {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.st-company-logo-large {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.st-company-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.st-logo-placeholder-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ea8f7f, #351c51);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.st-company-info-detail h1 {
    color: var(--st-secondary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.st-company-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.st-company-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.st-company-meta-item svg {
    width: 16px;
    height: 16px;
}

.st-company-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.st-company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.st-stat-card {
    background: #f8fafc;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.st-stat-card:hover {
    border-color: var(--st-primary);
    background: #fff;
    box-shadow: 0 4px 12px rgba(234, 143, 127, 0.1);
}

.st-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--st-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.st-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Company Jobs Table */
.st-jobs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.st-jobs-table th,
.st-jobs-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.st-jobs-table th {
    background: #f8fafc;
    font-weight: 600;
    color: var(--st-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.st-job-title-link {
    color: var(--st-primary);
    text-decoration: none;
    font-weight: 500;
}

.st-job-title-link:hover {
    text-decoration: underline;
}

.st-job-status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.st-job-status-badge.active {
    background: #dcfce7;
    color: #166534;
}

.st-job-status-badge.expired {
    background: #fee2e2;
    color: #991b1b;
}

.st-job-status-badge.draft {
    background: #fef3c7;
    color: #92400e;
}

/* Sidebar Components */
.st-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.st-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.st-info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.st-info-list li:last-child {
    border-bottom: none;
}

.st-info-list svg {
    width: 18px;
    height: 18px;
    color: var(--st-primary);
    flex-shrink: 0;
}

.st-info-list .label {
    font-weight: 500;
    color: var(--st-secondary);
    min-width: 80px;
}

.st-info-list .value {
    color: #6b7280;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .st-company-detail-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .st-company-header-detail {
        flex-direction: column;
        gap: 1rem;
    }
    
    .st-company-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .st-main-card, .st-section-card {
        padding: 1rem;
    }
    
    .st-company-stats {
        grid-template-columns: 1fr;
    }
    
    .st-company-actions {
        flex-direction: column;
    }
    
    .st-jobs-table {
        font-size: 0.875rem;
    }
    
    .st-jobs-table th,
    .st-jobs-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* =========================================
   🎯 FIN ADMIN COMPANY DETAIL COMPONENTS
   ========================================= */

/* =========================================
   🎯 ADMIN STATS & CLARITY DASHBOARD
   ========================================= */

.st-clarity-page {
    max-width: 1200px;
}

.st-clarity-status-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.st-clarity-status-card.success {
    border-color: var(--st-success);
    background: linear-gradient(135deg, rgba(16,185,129,0.05), rgba(16,185,129,0.02));
}

.st-clarity-status-card.warning {
    border-color: var(--st-warning);
    background: linear-gradient(135deg, rgba(245,158,11,0.05), rgba(245,158,11,0.02));
}

.st-clarity-status-card.error {
    border-color: var(--st-error);
    background: linear-gradient(135deg, rgba(239,68,68,0.05), rgba(239,68,68,0.02));
}

.st-status-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.st-status-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.st-status-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.st-status-info p {
    margin: 0.25rem 0;
    color: var(--st-text-secondary);
}

.st-status-info code {
    background: var(--st-gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', monospace;
}

.st-clarity-dashboard-btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(234,143,127,0.3);
}

.st-btn-external {
    opacity: 0.7;
    font-size: 0.9em;
}

.st-quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.st-quick-action-card {
    background: white;
    border: 1px solid var(--st-border);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.st-quick-action-card:hover {
    border-color: var(--st-primary);
    box-shadow: 0 4px 12px rgba(234,143,127,0.15);
    transform: translateY(-2px);
}

.st-action-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.st-config-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--st-border);
    overflow: hidden;
    margin-bottom: 2rem;
}

.st-config-header {
    background: var(--st-gray-50);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--st-border);
}

.st-config-header h3 {
    margin: 0;
    color: var(--st-secondary);
    font-size: 1.2rem;
    font-weight: 600;
}

.st-config-content {
    padding: 2rem;
}

.st-config-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--st-border-light);
}

.st-config-item:last-child {
    border-bottom: none;
}

.st-config-label {
    font-weight: 500;
    color: var(--st-secondary);
}

.st-config-value {
    color: var(--st-text);
    font-family: 'Monaco', monospace;
    font-size: 0.9rem;
    background: var(--st-gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.st-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.st-stats-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--st-border);
    text-align: center;
    transition: all 0.3s ease;
}

.st-stats-card:hover {
    border-color: var(--st-primary);
    box-shadow: 0 4px 12px rgba(234,143,127,0.1);
}

.st-stats-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--st-primary);
    margin-bottom: 0.5rem;
}

.st-stats-label {
    color: var(--st-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.st-integration-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.st-status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.st-status-indicator.active {
    background: var(--st-success);
}

.st-status-indicator.inactive {
    background: var(--st-gray-300);
}

.st-status-indicator.error {
    background: var(--st-error);
}

/* Responsive Design */
@media (max-width: 768px) {
    .st-quick-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .st-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .st-status-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .st-config-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .st-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .st-clarity-status-card,
    .st-config-card {
        padding: 1rem;
    }
}

/* =========================================
   🎯 FIN ADMIN STATS & CLARITY DASHBOARD
   ========================================= */
/* =========================================
   🍪 SYSTÈME DE COOKIES RGPD - DESIGN SYSTEM V3
   Architecture moderne avec glassmorphism et variables unifiées
   ========================================= */

/* Variables spécifiques cookies */
:root {
  --cookie-backdrop-blur: 8px;
  --cookie-shadow-primary: 0 20px 25px -5px rgba(234, 143, 127, 0.1), 0 10px 10px -5px rgba(234, 143, 127, 0.04);
  --cookie-shadow-elevated: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --cookie-border-radius: 16px;
  --cookie-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base du système de cookies */
.cookie-consent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--cookie-transition);
  padding: 1rem;
}

.cookie-consent.cookie-show {
  opacity: 1;
  visibility: visible;
}

/* Backdrop avec effet de flou */
.cookie-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(var(--cookie-backdrop-blur));
  -webkit-backdrop-filter: blur(var(--cookie-backdrop-blur));
}

/* Popup principal */
.cookie-popup {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--cookie-border-radius);
  box-shadow: var(--cookie-shadow-elevated);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: var(--cookie-transition);
}

.cookie-consent.cookie-show .cookie-popup {
  transform: scale(1) translateY(0);
}

/* Vue détaillée (mode personnalisation) */
.cookie-consent.cookie-detailed .cookie-popup {
  max-width: 700px;
  max-height: 95vh;
}

/* Header du popup */
.cookie-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(234, 143, 127, 0.1);
}

.cookie-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--st-brand-primary), var(--st-brand-primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.cookie-svg {
  width: 1.25rem;
  height: 1.25rem;
}

.cookie-title {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--st-brand-secondary);
  margin: 0;
}

.cookie-close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--st-gray-500);
  cursor: pointer;
  transition: var(--cookie-transition);
}

.cookie-close:hover {
  background: var(--st-gray-100);
  color: var(--st-gray-700);
}

/* Contenu principal */
.cookie-content {
  padding: 1rem 1.5rem;
}

.cookie-intro {
  margin-bottom: 1.5rem;
}

.cookie-description {
  color: var(--st-gray-700);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.cookie-highlight {
  color: var(--st-brand-primary);
  font-weight: 500;
}

.cookie-legal-notice {
  background: var(--st-gray-50);
  border-radius: 8px;
  padding: 0.75rem;
  border-left: 3px solid var(--st-brand-primary);
}

.cookie-legal-notice small {
  color: var(--st-gray-600);
  line-height: 1.4;
}

/* Détails des types de cookies */
.cookie-details {
  display: none;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cookie-consent.cookie-detailed .cookie-details {
  display: flex;
  flex-direction: column;
}

.cookie-type {
  background: white;
  border: 1px solid var(--st-gray-200);
  border-radius: 12px;
  padding: 1rem;
  transition: var(--cookie-transition);
}

.cookie-type:hover {
  border-color: var(--st-brand-primary);
  box-shadow: var(--cookie-shadow-primary);
}

.cookie-type-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cookie-type-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--st-brand-primary);
}

.cookie-type-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-type-info strong {
  color: var(--st-gray-900);
  font-weight: 600;
}

.cookie-required {
  background: var(--st-success);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Toggle switch pour les cookies optionnels */
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
  position: relative;
  width: 2.5rem;
  height: 1.25rem;
  appearance: none;
  background: var(--st-gray-300);
  border-radius: 0.625rem;
  transition: var(--cookie-transition);
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: var(--st-brand-primary);
}

.cookie-toggle input[type="checkbox"]::after {
  content: '';
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 1rem;
  height: 1rem;
  background: white;
  border-radius: 50%;
  transition: var(--cookie-transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-toggle input[type="checkbox"]:checked::after {
  transform: translateX(1.25rem);
}

/* Détails des types de cookies */
.cookie-type-details {
  margin-top: 0.5rem;
}

.cookie-type-desc {
  color: var(--st-gray-600);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 0.5rem;
}

.cookie-type-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.cookie-example {
  background: var(--st-gray-100);
  color: var(--st-gray-700);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
}

.cookie-duration {
  font-size: 0.75rem;
  color: var(--st-gray-600);
}

/* Liens informatifs */
.cookie-links {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--st-gray-200);
}

.cookie-links-intro {
  margin: 0 0 0.75rem;
  color: var(--st-gray-700);
  font-weight: 500;
}

.cookie-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
}

.cookie-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: var(--st-gray-50);
  border-radius: 8px;
  text-decoration: none;
  color: var(--st-gray-700);
  font-size: 0.875rem;
  transition: var(--cookie-transition);
}

.cookie-link:hover {
  background: var(--st-brand-primary);
  color: white;
  transform: translateY(-1px);
}

.cookie-link svg {
  width: 1rem;
  height: 1rem;
}

/* Actions du popup */
.cookie-actions {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(234, 143, 127, 0.1);
}

.cookie-actions-primary {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cookie-actions-secondary {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

/* Boutons du système de cookies */
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--cookie-transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.cookie-btn svg {
  width: 1rem;
  height: 1rem;
}

.cookie-btn-primary {
  background: var(--st-brand-primary);
  color: white;
  flex: 1;
}

.cookie-btn-primary:hover {
  background: var(--st-brand-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--cookie-shadow-primary);
}

.cookie-btn-essential {
  background: var(--st-gray-100);
  color: var(--st-gray-700);
  border: 1px solid var(--st-gray-300);
  flex: 1;
}

.cookie-btn-essential:hover {
  background: var(--st-gray-200);
  color: var(--st-gray-900);
}

.cookie-btn-text {
  background: transparent;
  color: var(--st-gray-600);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.cookie-btn-text:hover {
  color: var(--st-brand-primary);
  background: var(--st-gray-50);
}

/* Bouton de paramètres persistant */
.cookie-settings-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  background: var(--st-brand-primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--cookie-shadow-primary);
  transition: var(--cookie-transition);
  z-index: 1000;
}

.cookie-settings-btn:hover {
  background: var(--st-brand-primary-dark);
  transform: scale(1.05);
}

.cookie-settings-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Toast de notification */
.cookie-toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--st-success);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
  z-index: 10000;
  animation: cookieToastSlideIn 0.3s ease-out;
  max-width: 400px;
}

.cookie-toast-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@keyframes cookieToastSlideIn {
  from { 
    transform: translateX(100%); 
    opacity: 0; 
  }
  to { 
    transform: translateX(0); 
    opacity: 1; 
  }
}

/* Classes utilitaires pour les animations JavaScript */
.cookie-consent.hidden {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 640px) {
  .cookie-popup {
    margin: 0.5rem;
    max-width: none;
    border-radius: 12px;
  }
  
  .cookie-header {
    padding: 1rem 1rem 0.75rem;
  }
  
  .cookie-content {
    padding: 0.75rem 1rem;
  }
  
  .cookie-actions {
    padding: 0.75rem 1rem 1rem;
  }
  
  .cookie-actions-primary {
    flex-direction: column;
  }
  
  .cookie-links-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-type-examples {
    flex-direction: column;
  }
  
  .cookie-settings-btn {
    bottom: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .cookie-toast {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .cookie-popup {
    margin: 0.25rem;
    max-height: 95vh;
  }
  
  .cookie-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .cookie-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
  }
  
  .cookie-type-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Mode sombre (si activé) */
@media (prefers-color-scheme: dark) {
  .cookie-popup {
    background: rgba(31, 41, 55, 0.95);
    border-color: rgba(75, 85, 99, 0.3);
    color: white;
  }
  
  .cookie-title {
    color: white;
  }
  
  .cookie-description {
    color: rgb(209, 213, 219);
  }
  
  .cookie-legal-notice {
    background: rgba(55, 65, 81, 0.5);
  }
  
  .cookie-type {
    background: rgba(55, 65, 81, 0.8);
    border-color: rgba(75, 85, 99, 0.3);
  }
  
  .cookie-link {
    background: rgba(55, 65, 81, 0.5);
    color: rgb(209, 213, 219);
  }
}

/* =========================================
   🎯 FIN SYSTÈME DE COOKIES RGPD
   ========================================= */

/* =========================================
   🎯 CLASSES UTILITAIRES POUR ANIMATIONS COOKIES
   Remplacement des manipulations JavaScript inline
   ========================================= */

/* États d'animation pour le système de cookies */
.cookie-minimized {
  transform: translateY(90%) !important;
  opacity: 0.3 !important;
}

.cookie-slide-in {
  animation: cookieSlideIn 0.3s ease-out forwards;
}

.cookie-slide-out {
  animation: cookieSlideOut 0.3s ease-in forwards;
}

.cookie-fade-in {
  animation: cookieFadeIn 0.3s ease-out forwards;
}

.cookie-fade-out {
  animation: cookieFadeOut 0.3s ease-in forwards;
}

/* Animations keyframes */
@keyframes cookieSlideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes cookieSlideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes cookieFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes cookieFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Classes utilitaires supplémentaires */
.overflow-hidden {
  overflow: hidden !important;
}

.flex {
  display: flex !important;
}

.hidden {
  display: none !important;
}

.opacity-30 {
  opacity: 0.3 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.translate-y-90 {
  transform: translateY(90%) !important;
}

.-translate-y-5 {
  transform: translateY(-1.25rem) !important;
}

/* Classes pour états des toasts */
.toast-success {
  background-color: var(--st-success) !important;
}

.toast-warning {
  background-color: var(--st-warning) !important;
}

.toast-error {
  background-color: var(--st-error) !important;
}

/* =========================================
   🎨 FOOTER SOCIAL ICONS FIX
   Force l'affichage correct des icônes SVG
   ========================================= */
.bg-slate-700 svg {
  fill: currentColor !important;
  color: inherit !important;
  display: block !important;
}

.bg-slate-800 svg {
  fill: currentColor !important;
}

/* Spécifique aux liens sociaux du footer */
footer .bg-slate-700 svg,
.bg-slate-800 .bg-slate-700 svg {
  fill: #d1d5db !important; /* slate-300 pour être visible sur bg-slate-700 */
}

