@charset "UTF-8";
/* Ares-inspired Corporate Design System */
/* Typography - Corporate & Professional */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap");
/* Component Styles */
/* iOS-style Theme Toggle Switch */
.theme-toggle-navbar {
  display: flex;
  align-items: center;
  margin: 0 10px; }

.theme-toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: var(--bs-body-bg);
  border: 2px solid var(--bs-border-color);
  border-radius: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  padding: 0; }
  .theme-toggle-switch:hover {
    border-color: var(--bs-primary); }
  .theme-toggle-switch:focus {
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.2); }

.theme-toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--bs-body-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px; }
  .theme-toggle-slider::before {
    content: '☀️';
    font-size: 10px; }

/* Dark theme state */
[data-theme="dark"] .theme-toggle-switch {
  background: var(--bs-primary);
  border-color: var(--bs-primary); }
  [data-theme="dark"] .theme-toggle-switch .theme-toggle-slider {
    transform: translateX(24px);
    background: var(--bs-white); }
    [data-theme="dark"] .theme-toggle-switch .theme-toggle-slider::before {
      content: '🌙'; }

/* Light theme state */
[data-theme="light"] .theme-toggle-switch .theme-toggle-slider {
  background: var(--bs-primary); }
  [data-theme="light"] .theme-toggle-switch .theme-toggle-slider::before {
    content: '☀️';
    color: white; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .theme-toggle-switch {
    width: 44px;
    height: 24px;
    border-radius: 12px; }
  .theme-toggle-slider {
    width: 16px;
    height: 16px; }
    .theme-toggle-slider::before {
      font-size: 9px; }
  [data-theme="dark"] .theme-toggle-slider {
    transform: translateX(20px); } }

/* Modern Mobile Menu Design */
/* Hamburger Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  transition: all 0.3s ease; }
  .mobile-menu-toggle:hover {
    transform: scale(1.1); }
  .mobile-menu-toggle .hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--bs-body-color);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center; }

/* Homepage hamburger styling - white when at top, normal when scrolled */
.page-home .header-ares:not(.scrolled) .mobile-menu-toggle .hamburger-line {
  background: white !important; }

/* Dark theme hamburger button */
[data-theme="dark"] .mobile-menu-toggle {
  /* Active state - transform to X */ }
  [data-theme="dark"] .mobile-menu-toggle .hamburger-line {
    background: white; }
  [data-theme="dark"] .mobile-menu-toggle.active .hamburger-line:first-child {
    transform: rotate(45deg) translate(5px, 5px); }
  [data-theme="dark"] .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px); }
  [data-theme="dark"] .mobile-menu-toggle.active .hamburger-line:last-child {
    transform: rotate(-45deg) translate(5px, -5px); }

/* Override for homepage when scrolled - use normal colors */
.page-home .header-ares.scrolled .mobile-menu-toggle .hamburger-line {
  background: var(--bs-body-color) !important; }

[data-theme="dark"] .page-home .header-ares.scrolled .mobile-menu-toggle .hamburger-line {
  background: white !important; }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible; }

/* Dark theme overlay - using site's theme variables */
[data-theme="dark"] .mobile-menu-overlay {
  background: #0f172a;
  /* --theme-bg-primary: #0f172a */ }

.mobile-menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  transform: translateY(50px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0); }

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem; }
  .mobile-menu-header .mobile-logo img {
    filter: brightness(0) invert(0);
    transition: all 0.3s ease; }

/* Dark theme header */
[data-theme="dark"] .mobile-menu-header .mobile-logo img {
  filter: brightness(0) invert(1); }

.mobile-menu-close {
  position: relative;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px; }
  .mobile-menu-close .close-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: var(--bs-body-color);
    border-radius: 2px;
    transition: all 0.3s ease; }
    .mobile-menu-close .close-line:first-child {
      transform: translate(-50%, -50%) rotate(45deg); }
    .mobile-menu-close .close-line:last-child {
      transform: translate(-50%, -50%) rotate(-45deg); }
  .mobile-menu-close:hover {
    transform: scale(1.1); }
    .mobile-menu-close:hover .close-line {
      background: var(--bs-primary); }

/* Dark theme close button */
[data-theme="dark"] .mobile-menu-close .close-line {
  background: white; }

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center; }

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 300px; }

.mobile-menu-item {
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.6s ease forwards; }
  .mobile-menu-item:nth-child(1) {
    animation-delay: 0.1s; }
  .mobile-menu-item:nth-child(2) {
    animation-delay: 0.2s; }
  .mobile-menu-item:nth-child(3) {
    animation-delay: 0.3s; }
  .mobile-menu-item:nth-child(4) {
    animation-delay: 0.4s; }
  .mobile-menu-item:nth-child(5) {
    animation-delay: 0.5s; }
  .mobile-menu-item:nth-child(6) {
    animation-delay: 0.6s; }
  .mobile-menu-item.active .mobile-menu-link {
    color: var(--bs-primary);
    background: rgba(37, 99, 235, 0.1);
    border-left: 4px solid var(--bs-primary); }

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  color: var(--bs-body-color);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(var(--bs-body-color-rgb, 0, 0, 0), 0.05);
  border: 1px solid rgba(var(--bs-body-color-rgb, 0, 0, 0), 0.1); }
  .mobile-menu-link:hover {
    background: rgba(var(--bs-body-color-rgb, 0, 0, 0), 0.1);
    transform: translateX(10px);
    color: var(--bs-primary); }
    .mobile-menu-link:hover .menu-arrow {
      transform: translateX(5px); }
  .mobile-menu-link .menu-text {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em; }
  .mobile-menu-link .menu-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    opacity: 0.7; }

/* Dark theme menu links */
[data-theme="dark"] .mobile-menu-link {
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1); }
  [data-theme="dark"] .mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bs-primary); }

/* Mobile Menu Footer */
.mobile-menu-footer {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.6s ease 0.8s forwards; }

.mobile-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  background: rgba(var(--bs-body-color-rgb, 0, 0, 0), 0.05);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  /* Mobile-specific controls styling */
  /* Style mobile language switcher */
  /* Style mobile theme toggle */ }
  .mobile-controls .mobile-language-switcher,
  .mobile-controls .mobile-theme-toggle {
    display: flex;
    align-items: center; }
  .mobile-controls .mobile-language-switcher select {
    background: rgba(var(--bs-body-color-rgb, 0, 0, 0), 0.1);
    border: 2px solid rgba(var(--bs-body-color-rgb, 0, 0, 0), 0.2);
    color: var(--bs-body-color);
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    min-width: 100px;
    cursor: pointer;
    transition: all 0.3s ease; }
    .mobile-controls .mobile-language-switcher select:hover {
      border-color: rgba(var(--bs-body-color-rgb, 0, 0, 0), 0.4);
      transform: scale(1.05); }
    .mobile-controls .mobile-language-switcher select option {
      background: var(--bs-body-bg);
      color: var(--bs-body-color);
      font-size: 1.1rem;
      padding: 0.5rem; }
  .mobile-controls .mobile-theme-toggle .theme-toggle-switch {
    scale: 1.2;
    border-color: rgba(var(--bs-body-color-rgb, 0, 0, 0), 0.3); }
    .mobile-controls .mobile-theme-toggle .theme-toggle-switch:hover {
      border-color: rgba(var(--bs-body-color-rgb, 0, 0, 0), 0.5); }

/* Dark theme mobile controls */
[data-theme="dark"] .mobile-controls {
  background: rgba(255, 255, 255, 0.05); }
  [data-theme="dark"] .mobile-controls .mobile-language-switcher select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    min-width: 100px; }
    [data-theme="dark"] .mobile-controls .mobile-language-switcher select:hover {
      border-color: rgba(255, 255, 255, 0.4);
      transform: scale(1.05); }
    [data-theme="dark"] .mobile-controls .mobile-language-switcher select option {
      background: var(--bs-dark);
      color: white;
      font-size: 1.1rem;
      padding: 0.5rem; }
  [data-theme="dark"] .mobile-controls .mobile-theme-toggle .theme-toggle-switch {
    scale: 1.2;
    border-color: rgba(255, 255, 255, 0.3); }
    [data-theme="dark"] .mobile-controls .mobile-theme-toggle .theme-toggle-switch:hover {
      border-color: rgba(255, 255, 255, 0.5); }

/* Animations */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0); } }

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

/* Responsive Display */
@media (max-width: 992px) {
  /* Force header to use space-between layout on mobile */
  .header-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%; }
  .mobile-menu-toggle {
    display: flex;
    /* Hide hamburger when menu is open */ }
    .mobile-menu-toggle.active {
      opacity: 0;
      pointer-events: none; }
  #main-menu {
    display: none; }
  .navbar-controls {
    /* Keep navbar-controls visible but hide language/theme on mobile */
    /* Ensure controls stay at the right */
    display: flex !important;
    align-items: center;
    flex-shrink: 0; }
    .navbar-controls .language-switcher,
    .navbar-controls .theme-toggle-navbar {
      display: none !important; }
  .logo {
    flex-shrink: 0; } }

/* Prevent scrolling when menu is open */
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%; }

/* Fine-tuning for very small screens */
@media (max-width: 576px) {
  .mobile-menu-content {
    padding: 1.5rem; }
  .mobile-menu-link {
    padding: 1rem 1.25rem;
    font-size: 1rem; }
  .mobile-controls {
    flex-direction: column;
    gap: 1rem; } }

/* Remove underline from all links globally */
a {
  text-decoration: none; }

a:hover {
  text-decoration: none; }

.ares-style {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--theme-text-primary);
  background: var(--theme-bg-primary);
  padding-top: 0;
  /* No space needed since header is integrated */ }

/* Enhanced Typography Styles */
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .cta-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2; }

body, p, .hero-description, .section-description {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.7; }

/* Add space for scrolled header only */
.ares-style.header-scrolled {
  padding-top: 80px; }

/* Header & Navigation - Integrated with Hero */
.header-ares {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease; }

.header-ares.scrolled {
  background: var(--theme-header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--theme-header-border);
  box-shadow: 0 4px 6px var(--theme-shadow-medium);
  position: fixed; }

/* Enhanced transparency for hero integration - only on homepage */
.page-home .header-ares:not(.scrolled) {
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px); }

/* Normal header background for other pages */
body:not(.page-home) .header-ares:not(.scrolled) {
  background: var(--theme-header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--theme-header-border); }

/* Navigation text contrast for video background (transparent header) - only on homepage */
.page-home .header-ares:not(.scrolled) .logo-text {
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); }

.page-home .header-ares:not(.scrolled) .main-menu-ares a {
  color: white !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); }

.page-home .header-ares:not(.scrolled) .main-menu-ares a:hover {
  color: rgba(255, 255, 255, 0.8) !important; }

.page-home .header-ares:not(.scrolled) .main-menu-ares a::after {
  background: white; }

/* Navigation text for scrolled header - uses theme variables */
.header-ares.scrolled .logo-text {
  color: var(--theme-nav-text) !important;
  text-shadow: none; }

.header-ares.scrolled .main-menu-ares a {
  color: var(--theme-nav-text) !important;
  text-shadow: none; }

.header-ares.scrolled .main-menu-ares a:hover {
  color: var(--theme-nav-hover) !important; }

.header-ares.scrolled .main-menu-ares a::after {
  background: var(--theme-nav-hover); }

/* Navigation text for non-homepage headers (always use theme variables) */
body:not(.page-home) .header-ares:not(.scrolled) .logo-text {
  color: var(--theme-nav-text) !important;
  text-shadow: none; }

body:not(.page-home) .header-ares:not(.scrolled) .main-menu-ares a {
  color: var(--theme-nav-text) !important;
  text-shadow: none; }

body:not(.page-home) .header-ares:not(.scrolled) .main-menu-ares a:hover {
  color: var(--theme-nav-hover) !important; }

body:not(.page-home) .header-ares:not(.scrolled) .main-menu-ares a::after {
  background: var(--theme-nav-hover); }

/* Logo adaptation for transparent header - only on homepage with video background */
.page-home .header-ares:not(.scrolled) .logo-adaptive {
  filter: brightness(0) invert(1); }

.page-home .header-ares:not(.scrolled) .logo-light {
  filter: brightness(0) invert(1); }

.page-home .header-ares:not(.scrolled) .logo-dark {
  filter: brightness(0) invert(1); }

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 3rem;
  /* Espacement entre logo et menu */ }

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  /* Empêche le logo de se rétrécir */ }

.logo img {
  transition: all 0.3s ease;
  height: auto;
  max-height: 42px; }

.logo a:hover img {
  transform: scale(1.05); }

.logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--theme-nav-text);
  text-decoration: none;
  letter-spacing: -0.02em; }

.logo a:hover .logo-text {
  color: var(--theme-nav-hover);
  text-decoration: none; }

.main-menu-ares {
  flex: 1;
  /* Prend l'espace disponible */
  display: flex;
  justify-content: flex-end;
  /* Aligne le menu à droite */ }

.main-menu-ares ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
  /* Espacement plus généreux entre les items */
  align-items: center; }

.main-menu-ares li {
  position: relative; }

.main-menu-ares a {
  color: var(--theme-nav-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.01em;
  white-space: nowrap;
  /* Empêche le retour à la ligne */ }

.main-menu-ares a:hover {
  color: var(--theme-nav-hover);
  text-decoration: none; }

.main-menu-ares li.active a {
  color: var(--theme-nav-hover); }

.main-menu-ares a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: var(--theme-nav-hover);
  transition: width 0.3s ease; }

.main-menu-ares a:hover::after,
.main-menu-ares li.active a::after {
  width: 100%; }

/* Mobile Navigation */
@media (max-width: 991px) {
  .header-content {
    gap: 1.5rem;
    /* Espacement réduit sur mobile */
    padding: 1rem 0; }
  .main-menu-ares {
    display: none; } }

@media (max-width: 768px) {
  .header-content {
    gap: 1rem;
    padding: 0.75rem 0; }
  .logo img {
    max-height: 36px;
    /* Logo légèrement plus petit sur mobile */ } }

/* Language Switcher - Simplified */
.language-switcher {
  display: flex;
  align-items: center;
  margin-left: 1rem; }

.language-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: var(--theme-nav-text);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 6px; }

.language-toggle:hover {
  background: var(--theme-bg-secondary);
  transform: scale(1.1);
  text-decoration: none; }

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

.language-flag {
  font-size: 1.25rem;
  transition: all 0.3s ease; }

.language-toggle:hover .language-flag {
  transform: scale(1.1); }

/* Language switcher for transparent header - only on homepage */
.page-home .header-ares:not(.scrolled) .language-toggle:hover {
  background: rgba(255, 255, 255, 0.15); }

/* Language switcher for scrolled header */
.header-ares.scrolled .language-toggle {
  color: var(--theme-nav-text); }

.header-ares.scrolled .language-toggle:hover {
  background: var(--theme-bg-secondary); }

/* Language switcher for non-homepage headers */
body:not(.page-home) .header-ares:not(.scrolled) .language-toggle {
  color: var(--theme-nav-text); }

body:not(.page-home) .header-ares:not(.scrolled) .language-toggle:hover {
  background: var(--theme-bg-secondary); }

/* Large screens - more spacing */
@media (min-width: 1200px) {
  .header-content {
    gap: 4rem;
    /* Espacement encore plus généreux sur grands écrans */ }
  .main-menu-ares ul {
    gap: 3rem; }
  .language-switcher {
    margin-left: 1.5rem; } }

@media (max-width: 991px) {
  .language-switcher {
    margin-left: 0.5rem; } }

@media (max-width: 768px) {
  .language-switcher {
    margin-left: 0; }
  .language-toggle {
    padding: 0.4rem; }
  .language-flag {
    font-size: 1.1rem; } }

/* Color Palette - Professional & Corporate */
:root {
  --primary-navy: #1a2332;
  --primary-blue: #2563eb;
  --secondary-navy: #334155;
  --accent-gold: #d4af37;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --background-light: #f8fafc;
  --background-white: #ffffff;
  --border-light: #e2e8f0;
  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-strong: 0 10px 15px rgba(0, 0, 0, 0.1); }

/* ==========================================================================
   UTILITY CLASSES - Common components used across all pages
   ========================================================================== */
/* Button System - Unified button styles */
.btn-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-medium); }

.btn-base:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong); }

.btn-primary {
  background: var(--primary-blue);
  color: white; }

.btn-primary:hover {
  background: #1d4ed8;
  color: white; }

.btn-secondary {
  background: var(--theme-bg-secondary);
  color: var(--theme-text-primary);
  border: 1px solid var(--theme-border); }

.btn-secondary:hover {
  background: var(--theme-nav-hover);
  color: white;
  border-color: var(--theme-nav-hover); }

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue); }

.btn-outline:hover {
  background: var(--primary-blue);
  color: white; }

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem; }

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem; }

.btn-full {
  width: 100%; }

/* Card System - Unified card styles */
.card-base {
  background: var(--theme-bg-primary);
  border: 1px solid var(--theme-border);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px var(--theme-shadow); }

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px var(--theme-shadow-medium); }

.card-padding-sm {
  padding: 1rem; }

.card-padding-md {
  padding: 1.5rem; }

.card-padding-lg {
  padding: 2rem; }

/* Typography System - Unified text styles */
.text-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--theme-text-primary); }

.text-body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--theme-text-primary); }

.text-small {
  font-size: 0.85rem;
  color: var(--theme-text-secondary); }

.text-large {
  font-size: 1.25rem; }

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

.text-light {
  color: var(--theme-text-light); }

/* Spacing System - Unified spacing utilities */
.spacing-xs {
  margin-bottom: 0.5rem; }

.spacing-sm {
  margin-bottom: 1rem; }

.spacing-md {
  margin-bottom: 1.5rem; }

.spacing-lg {
  margin-bottom: 2rem; }

.spacing-xl {
  margin-bottom: 3rem; }

.padding-sm {
  padding: 1rem; }

.padding-md {
  padding: 1.5rem; }

.padding-lg {
  padding: 2rem; }

/* Layout System - Common layout patterns */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center; }

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.flex-column {
  display: flex;
  flex-direction: column; }

.flex-gap-sm {
  gap: 0.5rem; }

.flex-gap-md {
  gap: 1rem; }

.flex-gap-lg {
  gap: 1.5rem; }

.flex-wrap {
  flex-wrap: wrap; }

/* Form System - Unified form styles */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--theme-border);
  border-radius: 8px;
  background: var(--theme-bg-primary);
  color: var(--theme-text-primary);
  font-size: 1rem;
  transition: all 0.3s ease; }

.form-input:focus {
  outline: none;
  border-color: var(--theme-nav-hover);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }

.form-input::placeholder {
  color: var(--theme-text-light); }

/* Status Messages - Unified message styles */
.message-success {
  color: #15803d;
  background: rgba(21, 128, 61, 0.1);
  border: 1px solid rgba(21, 128, 61, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem; }

.message-error {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem; }

.message-warning {
  color: #d97706;
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem; }

/* Responsive Mixins - Unified breakpoints */
@media (max-width: 991px) {
  .btn-base {
    padding: 0.6rem 1.25rem; }
  .btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 1rem; } }

@media (max-width: 768px) {
  .btn-base {
    padding: 0.5rem 1rem;
    font-size: 0.95rem; }
  .btn-large {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem; }
  .btn-full {
    width: 100%;
    justify-content: center; }
  .card-padding-lg {
    padding: 1.5rem; }
  .card-padding-md {
    padding: 1rem; } }

@media (max-width: 576px) {
  .btn-base {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem; }
  .card-padding-sm {
    padding: 0.75rem; }
  .text-large {
    font-size: 1.125rem; } }

/* Hero Section - Ares Style */
.hero-section-ares {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--theme-hero-bg);
  overflow: hidden; }

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; }

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/shots/background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1; }

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-hero-overlay);
  z-index: 3; }

.hero-content-wrapper {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 120px 0 80px; }

.hero-content {
  color: white; }

.hero-logo {
  margin-bottom: 2rem;
  text-align: left; }

.hero-logo-main {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  /* Force white logo on dark background */
  transition: all 0.3s ease; }

.hero-slogan {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.4; }
  @media (max-width: 768px) {
    .hero-slogan {
      font-size: 1.25rem;
      margin-bottom: 1.25rem; } }
  @media (max-width: 480px) {
    .hero-slogan {
      font-size: 1.125rem;
      margin-bottom: 1rem; } }
.hero-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.hero-subtitle {
  font-size: 1.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em; }

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; }

/* Buttons - Ares Style */
.btn-primary-ares {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--primary-blue);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-medium); }

.btn-primary-ares:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong);
  color: white;
  text-decoration: none; }

.btn-secondary-ares {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.01em; }

.btn-secondary-ares:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  text-decoration: none; }

.btn-outline-ares {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary-blue);
  border-radius: 6px;
  transition: all 0.3s ease;
  letter-spacing: 0.01em; }

.btn-outline-ares:hover {
  background: var(--primary-blue);
  color: white;
  text-decoration: none; }

.btn-large {
  padding: 20px 40px;
  font-size: 1.125rem; }

/* Section Styling */
.metrics-section,
.solutions-section,
.approach-section,
.cta-section {
  padding: 100px 0; }

.metrics-section {
  background: var(--theme-bg-primary);
  border-bottom: 1px solid var(--theme-border); }

.solutions-section {
  background: var(--theme-bg-primary); }

.approach-section {
  background: var(--theme-bg-secondary); }

.cta-section {
  background: var(--theme-cta-bg);
  color: var(--theme-cta-text); }

/* Typography */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--theme-text-primary); }

.cta-section .section-title,
.cta-title {
  color: var(--theme-cta-text);
  font-size: 2.25rem; }

.section-subtitle,
.section-description {
  font-size: 1.125rem;
  color: var(--theme-text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem; }

.cta-section .section-description,
.cta-description {
  color: var(--theme-text-light); }

/* Metrics */
.metric-item {
  padding: 2rem 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  background: var(--theme-card-bg);
  border-radius: 12px;
  border: 1px solid var(--theme-card-border);
  box-shadow: 0 4px 6px var(--theme-shadow-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; }

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

.metric-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--theme-shadow-strong); }

.metric-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1;
  opacity: 0.9; }

.metric-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--theme-text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.3; }

.metric-description {
  font-size: 0.95rem;
  color: var(--theme-text-secondary);
  line-height: 1.5;
  margin: 0;
  font-weight: 400; }

/* Legacy metric styles for backward compatibility */
.metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em; }

.metric-label {
  font-size: 0.95rem;
  color: var(--theme-text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em; }

/* Solutions Content */
.solutions-content {
  padding: 2rem 0; }

.solution-items {
  margin: 3rem 0; }

.solution-item {
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease; }

.solution-item.animate-in {
  opacity: 1;
  transform: translateX(0); }

.solution-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--theme-text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em; }

.solution-item p {
  color: var(--theme-text-secondary);
  line-height: 1.6; }

/* Solutions Visual */
.solutions-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem; }

.chart-placeholder {
  width: 300px;
  height: 200px;
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px var(--theme-shadow-medium);
  display: flex;
  align-items: end;
  justify-content: center; }

.chart-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 120px; }

.bar {
  width: 20px;
  background: linear-gradient(to top, var(--primary-blue), var(--primary-navy));
  border-radius: 2px 2px 0 0;
  animation: growUp 1s ease-out forwards;
  transform: scaleY(0);
  transform-origin: bottom; }

.bar:nth-child(2) {
  animation-delay: 0.1s; }

.bar:nth-child(3) {
  animation-delay: 0.2s; }

.bar:nth-child(4) {
  animation-delay: 0.3s; }

.bar:nth-child(5) {
  animation-delay: 0.4s; }

.bar:nth-child(6) {
  animation-delay: 0.5s; }

@keyframes growUp {
  to {
    transform: scaleY(1); } }

/* Approach Items */
.approach-item {
  padding: 2rem 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease; }

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

.approach-icon {
  margin-bottom: 1.5rem; }

.icon-placeholder {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto;
  box-shadow: var(--shadow-medium); }

.approach-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--theme-text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em; }

.approach-item p {
  color: var(--theme-text-secondary);
  line-height: 1.6; }

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem; }
  .hero-subtitle {
    font-size: 1.5rem; }
  .solutions-visual {
    margin-top: 3rem; } }

@media (max-width: 768px) {
  .hero-content-wrapper {
    padding: 80px 0 60px; }
  .hero-logo-main {
    height: 60px;
    max-width: 90%; }
  .hero-title {
    font-size: 2.75rem; }
  .hero-subtitle {
    font-size: 1.25rem; }
  .hero-actions {
    flex-direction: column; }
  .btn-primary-ares,
  .btn-secondary-ares {
    text-align: center;
    justify-content: center; }
  .section-title {
    font-size: 2rem; }
  .metric-number {
    font-size: 2.5rem; }
  .metric-item {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem; }
  .metric-icon {
    font-size: 2rem;
    margin-bottom: 1rem; }
  .metric-title {
    font-size: 1.125rem; }
  .metric-description {
    font-size: 0.9rem; }
  .metrics-section,
  .solutions-section,
  .approach-section,
  .cta-section {
    padding: 60px 0; } }

@media (max-width: 576px) {
  .hero-logo-main {
    height: 50px;
    max-width: 95%; }
  .hero-title {
    font-size: 2.25rem; }
  .hero-description {
    font-size: 1rem; }
  .btn-primary-ares,
  .btn-secondary-ares {
    padding: 14px 24px;
    font-size: 0.95rem; }
  .metric-item {
    padding: 1.25rem 0.75rem; }
  .metric-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem; }
  .metric-title {
    font-size: 1rem;
    margin-bottom: 0.75rem; }
  .metric-description {
    font-size: 0.85rem; } }

/* Founder Section - Style cohérent avec les autres sections */
.founder-section {
  padding: 100px 0;
  background: var(--theme-bg-secondary); }

.founder-item {
  padding: 2rem 1rem;
  text-align: center; }
  @media (max-width: 768px) {
    .founder-item {
      margin-bottom: 2rem; } }
.founder-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2); }
  .founder-icon .icon-placeholder {
    font-size: 2rem;
    color: white; }

.founder-photo {
  width: 180px;
  height: 180px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(37, 99, 235, 0.25);
  border: 4px solid var(--theme-background);
  transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .founder-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 64px rgba(37, 99, 235, 0.35); }

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block; }

.founder-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--theme-text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em; }

.founder-role {
  font-size: 1rem;
  color: var(--theme-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em; }

.founder-credentials {
  font-size: 0.95rem;
  color: var(--theme-text-secondary);
  font-style: italic;
  margin-bottom: 0;
  opacity: 0.8; }

.founder-message {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--theme-text-primary);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 500; }

.founder-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--theme-text-secondary);
  margin: 0; }

/* Dark theme adjustments */
[data-theme="dark"] .founder-icon {
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3); }

[data-theme="dark"] .founder-photo {
  box-shadow: 0 12px 48px rgba(59, 130, 246, 0.35);
  border-color: var(--theme-background); }
  [data-theme="dark"] .founder-photo:hover {
    box-shadow: 0 16px 64px rgba(59, 130, 246, 0.45); }

/* Mobile adjustments */
@media (max-width: 768px) {
  .founder-section {
    padding: 80px 0; }
  .founder-item {
    text-align: center; }
  .founder-icon {
    width: 70px;
    height: 70px; }
    .founder-icon .icon-placeholder {
      font-size: 1.75rem; }
  .founder-photo {
    width: 150px;
    height: 150px; }
  .founder-item h3 {
    font-size: 1.25rem; }
  .founder-message {
    font-size: 1rem; } }

/* Background Utility Classes */
.bg-white {
  background: var(--theme-bg-primary) !important;
  /* Ensure text colors are appropriate */ }
  .bg-white .section-title {
    color: var(--theme-text-primary); }
  .bg-white .section-description {
    color: var(--theme-text-secondary); }
  .bg-white .approach-item h3 {
    color: var(--theme-text-primary); }
  .bg-white .approach-item p {
    color: var(--theme-text-secondary); }

/* Dark theme adjustments for bg-white */
[data-theme="dark"] .bg-white {
  background: var(--theme-bg-primary) !important; }

/* Social Media Section - Prominent and Engaging */
.social-media-section {
  padding: 100px 0;
  background: var(--theme-bg-primary);
  position: relative;
  overflow: hidden; }
  .social-media-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none; }
  .social-media-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none; }
  .social-media-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em; }
  .social-media-section .section-subtitle {
    font-size: 1.25rem;
    color: var(--theme-text-secondary);
    max-width: 600px;
    margin: 0 auto; }

/* Social Cards - Interactive and Modern */
.social-card {
  display: block;
  background: var(--theme-bg-primary);
  border: 2px solid var(--theme-card-border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--theme-text-primary);
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 280px; }
  .social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(37, 99, 235, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none; }
  .social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--theme-shadow-heavy);
    text-decoration: none;
    border-color: var(--theme-primary); }
    .social-card:hover::before {
      opacity: 1; }
    .social-card:hover .social-card-cta {
      transform: translateX(5px);
      color: var(--theme-primary); }
    .social-card:hover .social-icon-large {
      transform: scale(1.05) rotate(5deg); }
  .social-card:active {
    transform: translateY(-4px); }

.social-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem; }

.social-icon-large {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; }

/* X (Twitter) specific styling */
.social-card-x .social-icon-large {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }

.social-card-x .social-icon-x {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 600;
  font-family: 'Segoe UI', Arial, sans-serif; }

.social-card-x:hover {
  border-color: #000000; }
  .social-card-x:hover .social-icon-large {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5); }

/* LinkedIn specific styling */
.social-card-linkedin .social-icon-large {
  background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
  box-shadow: 0 4px 20px rgba(0, 119, 181, 0.3); }

.social-card-linkedin .social-icon-img-large {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0) invert(1); }

.social-card-linkedin:hover {
  border-color: #0077b5; }
  .social-card-linkedin:hover .social-icon-large {
    box-shadow: 0 8px 30px rgba(0, 119, 181, 0.5); }

.social-card-info {
  flex: 1; }

.social-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--theme-text-primary);
  margin: 0 0 0.25rem 0;
  letter-spacing: -0.02em; }

.social-card-handle {
  font-size: 1rem;
  color: var(--theme-text-tertiary);
  margin: 0;
  font-weight: 500; }

.social-card-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--theme-text-secondary);
  margin: 0 0 1.5rem 0;
  flex: 1; }

.social-card-cta {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--theme-primary);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem; }

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .social-media-section {
    padding: 60px 0; }
    .social-media-section .section-title {
      font-size: 1.75rem; }
    .social-media-section .section-subtitle {
      font-size: 1rem; }
  .social-card {
    padding: 2rem;
    min-height: 240px; }
  .social-icon-large {
    width: 60px;
    height: 60px; }
  .social-card-x .social-icon-x {
    font-size: 2rem; }
  .social-card-linkedin .social-icon-img-large {
    width: 38px;
    height: 38px; }
  .social-card-title {
    font-size: 1.25rem; }
  .social-card-handle {
    font-size: 0.9rem; }
  .social-card-description {
    font-size: 0.95rem; } }

/* Dark theme specific adjustments */
[data-theme="dark"] .social-card-x .social-icon-large {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); }

[data-theme="dark"] .social-card-linkedin .social-icon-large {
  background: linear-gradient(135deg, #0a66c2 0%, #004182 100%); }
