/*--------------------------------------------------------------
>>> SYSTEME DE DESIGN PREMIUM SOLVYTHEME v1.1
>>> Corrections : animations progressive enhancement only,
>>> classes utilitaires manquantes, icons fallback
--------------------------------------------------------------*/

/* DECLARATION DES POLICES D'ECRITURE LOCALES (AUTO-HEBERGEES) */

/* Inter (Body Font) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
}

/* Outfit (Headings Font) */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/outfit-v15-latin-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/outfit-v15-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/outfit-v15-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/outfit-v15-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/outfit-v15-latin-800.woff2') format('woff2');
}

/* 1. INITIALISATION & VARIABLES GLOBALES */
:root {
  /* Palette de couleurs originale Breeza (Solvytech.com) — Blanc, Bleu Royal & Or */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafd;
  --bg-panel: #ffffff;
  --border-color: rgba(2, 21, 78, 0.08);
  --border-focus: rgba(10, 92, 255, 0.4);
  
  --primary: #0A5CFF;
  --primary-glow: rgba(10, 92, 255, 0.15);
  --primary-gradient: linear-gradient(135deg, #0A5CFF 0%, #0044cc 100%);
  --text-gradient: linear-gradient(90deg, #242E45 0%, #0A5CFF 100%);
  --accent-color: #F2B827;
  
  --text-main: #242E45;
  --text-muted: #475569;
  --text-white: #242E45;
  
  /* Typographie */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spécifications */
  --border-radius: 16px;
  --border-radius-large: 24px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-height: 80px;
}

/* 2. REINITIALISATIONS & STYLES GENERAUX */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  scroll-behavior: smooth;
  line-height: 1.6;
  font-size: 16px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--bg-primary);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* --- THEME CLAIR (LIGHT MODE) --- */
/* --- THEME SOMBRE (DARK HIGH-TECH MODE) --- */
body.dark-theme {
  --bg-primary: #050814;
  --bg-secondary: #0c1129;
  --bg-panel: rgba(12, 17, 41, 0.7);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(245, 158, 11, 0.4);
  --accent-color: #F59E0B;
  
  --text-main: #E2E8F0;
  --text-muted: #94A3B8;
  --text-white: #FFFFFF;
  
  --text-gradient: linear-gradient(90deg, #FFFFFF 0%, #FCD34D 100%);
}

body:not(.dark-theme) .glass-panel {
  background: var(--bg-panel);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body:not(.dark-theme) .glass-header {
  background: rgba(248, 250, 252, 0.8);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

body:not(.dark-theme) .site-header.scrolled {
  background: rgba(248, 250, 252, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

body:not(.dark-theme) .code-terminal {
  background: #0f1423; /* Garder la console sombre pour le style de code geek */
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9);
}

body:not(.dark-theme) .btn-secondary {
  background: rgba(0, 0, 0, 0.03);
  color: #0f172a;
}

body:not(.dark-theme) .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.06);
}

body:not(.dark-theme) .why-icon {
  background: rgba(10, 92, 255, 0.05);
}

body:not(.dark-theme) .client-avatar {
  background: rgba(0, 0, 0, 0.03);
}

body:not(.dark-theme) .input-field {
  background: rgba(0, 0, 0, 0.02);
  color: #0f172a;
}

body:not(.dark-theme) .input-field::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

body:not(.dark-theme) .input-field:focus {
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  margin-top: 0;
  color: var(--text-white);
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* 3. UTILITIES & TYPOGRAPHY SIZES */
.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hover-gradient:hover {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted { color: var(--text-muted); }
.text-white { color: var(--text-white); }
.italic { font-style: italic; }
.font-semibold { font-weight: 600; }

.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-3 { margin-bottom: 16px !important; }
.mb-4 { margin-bottom: 24px !important; }
.mb-5 { margin-bottom: 40px !important; }
.mt-2 { margin-top: 8px !important; }
.mt-4 { margin-top: 24px !important; }
.mt-5 { margin-top: 40px !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.mx-2 { margin-left: 8px !important; margin-right: 8px !important; }
.ml-auto { margin-left: auto !important; }
.mr-auto { margin-right: auto !important; }

.py-3 { padding-top: 16px !important; padding-bottom: 16px !important; }
.py-4 { padding-top: 24px !important; padding-bottom: 24px !important; }
.py-5 { padding-top: 80px !important; padding-bottom: 80px !important; }
.py-5-extra { padding-top: 120px !important; padding-bottom: 120px !important; }
.px-4 { padding-left: 24px !important; padding-right: 24px !important; }
.p-0 { padding: 0 !important; }
.p-2 { padding: 16px !important; }
.p-4 { padding: 32px !important; }
.p-5 { padding: 48px !important; }
@media (min-width: 768px) {
  .p-md-4 { padding: 32px !important; }
  .p-md-5 { padding: 48px !important; }
}

.w-100 { width: 100% !important; }
.max-w-full { max-width: 100% !important; }
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-end { justify-content: flex-end !important; }
.align-items-center { align-items: center !important; }
.gap-2 { gap: 8px !important; }
.gap-3 { gap: 16px !important; }
.gap-4 { gap: 24px !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }
.overflow-hidden { overflow: hidden !important; }
.position-relative { position: relative !important; }

.small { font-size: 0.875rem; }
.small-extra { font-size: 0.75rem; }
.lead-text { font-size: 1.125rem; font-weight: 400; line-height: 1.6; }

/* 4. GRILLES RESPONSIVES */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* 5. BOUTONS & ELEMENTS DESIGN */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 600;
  border-radius: 100px;
  padding: 14px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(60, 47, 192, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-glow {
  position: relative;
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Badges Premium */
.badge-premium {
  display: inline-flex;
  align-items: center;
  background: rgba(129, 139, 255, 0.08);
  border: 1px solid rgba(129, 139, 255, 0.2);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
  box-shadow: 0 0 8px var(--accent-color);
}

.section-badge {
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* 6. EFFETS DE VERRE (GLASSMORPHISM) */
.glass-panel {
  background: var(--bg-panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* 7. EN-TETE DU SITE (HEADER) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.glass-header {
  background: rgba(9, 10, 15, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.site-header.scrolled {
  background: rgba(9, 10, 15, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.site-logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.logo-accent {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Adaptive Logos Styling */
.site-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.logo-light-theme {
  display: none !important;
}

.logo-dark-theme {
  display: inline-block !important;
}

body:not(.dark-theme) .logo-light-theme {
  display: inline-block !important;
}

body:not(.dark-theme) .logo-dark-theme {
  display: none !important;
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo-link:hover .site-logo {
  opacity: 0.85;
  transform: translateY(-1px) scale(1.02);
}

.nav-menu-list {
  display: none;
}

@media (min-width: 1024px) {
  .nav-menu-list {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu-list > li {
    position: relative;
  }
  
  .nav-menu-list a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
    text-decoration: none;
    display: inline-block;
  }
  
  .nav-menu-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-gradient);
    transition: var(--transition-smooth);
  }
  
  .nav-menu-list a:hover,
  .nav-menu-list a.active {
    color: var(--text-white);
  }
  
  .nav-menu-list > li > a:hover::after,
  .nav-menu-list > li > a.active::after {
    width: 100%;
  }

  /* Submenu Dropdown premium design */
  .nav-menu-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    padding: 12px;
    min-width: 280px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 100;
    backdrop-filter: blur(12px);
  }

  body.dark-theme .nav-menu-list .sub-menu {
    background: rgba(12, 17, 41, 0.92);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  
  .nav-menu-list li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  
  .nav-menu-list .sub-menu li {
    width: 100%;
    margin: 0;
  }
  
  .nav-menu-list .sub-menu li a {
    display: block;
    padding: 10px 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition-smooth);
    white-space: normal;
    text-align: left;
  }
  
  .nav-menu-list .sub-menu li a:hover {
    color: var(--text-white);
    background: rgba(10, 92, 255, 0.08);
  }
  
  body.dark-theme .nav-menu-list .sub-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-menu-list .dropdown-arrow {
    font-size: 0.65rem;
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .nav-menu-list li:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* Sélecteur de Langue */
.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 30px;
  margin-right: 8px;
}

.lang-link {
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.lang-link:hover {
  color: var(--accent-color);
}

.lang-link.active {
  color: var(--text-white);
  pointer-events: none;
}

.lang-separator {
  color: rgba(255, 255, 255, 0.15);
  font-weight: 400;
}

.mobile-drawer-lang {
  border-top: 1px solid var(--border-color);
  margin-top: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Burger Button */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  z-index: 1100;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}

.burger-bar {
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-smooth);
}

.mobile-menu-toggle.active .line-1 {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .line-2 {
  opacity: 0;
}

.mobile-menu-toggle.active .line-3 {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-navigation-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  z-index: 1050;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.mobile-navigation-drawer.active {
  right: 0;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6);
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(4px);
  transition: var(--transition-smooth);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-header {
  margin-bottom: 40px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list a {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  padding: 8px 0;
  text-decoration: none;
}

.mobile-nav-list > li > a:hover {
  color: var(--text-white);
  padding-left: 8px;
}

.mobile-sub-menu {
  list-style: none;
  padding-left: 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-sub-menu a {
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
  padding: 4px 0 !important;
  transition: var(--transition-smooth);
}

.mobile-sub-menu a:hover {
  color: var(--text-white) !important;
  padding-left: 6px !important;
}

@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

/* 8. PAGES STRUCTURALES (MAIN COMPONENT SPACING) */
.site-content {
  padding-top: var(--header-height);
}

/* 9. SECTION HERO (HOMEPAGE COMPONENT) */
.hero-section {
  position: relative;
  background: radial-gradient(circle at center, rgba(60, 47, 192, 0.12) 0%, rgba(9, 10, 15, 0) 70%);
  z-index: 1;
  overflow: hidden;
}

#hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
}

/* Lueur Suiveuse de Curseur (Interactive Hover Glow) */
.glow-card {
  position: relative;
  overflow: hidden;
}

.glow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(10, 92, 255, 0.08),
    transparent 40%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body:not(.dark-theme) .glow-card::before {
  background: radial-gradient(
    600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(10, 92, 255, 0.04),
    transparent 40%
  );
}

.glow-card:hover::before {
  opacity: 1;
}

.glow-card > * {
  position: relative;
  z-index: 2;
}

.h1-large {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

@media (min-width: 768px) {
  .h1-large { font-size: 3.8rem; }
}

@media (min-width: 1024px) {
  .h1-large { font-size: 4.6rem; }
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-subtext { font-size: 1.35rem; }
}

/* Graphic shapes in background */
.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.15;
}

.shape-1 {
  width: 350px;
  height: 350px;
  background-color: var(--primary);
  top: 10%;
  left: 5%;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background-color: var(--accent-color);
  bottom: 10%;
  right: 5%;
}

/* 10. ABOUT SECTION COMPONENT */
.h2-section {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .h2-section { font-size: 2.8rem; }
}

.stats-mini-grid {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat-mini {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-headings);
  font-size: 2.4rem;
  font-weight: 800;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Terminal de Code ESN */
.code-terminal {
  background: #02040a;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 20px;
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
  font-family: 'Courier New', Courier, monospace;
  position: relative;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.terminal-dot.red { background-color: #ef4444; }
.terminal-dot.yellow { background-color: #f59e0b; }
.terminal-dot.green { background-color: #10b981; }

.terminal-title {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-left: 5px;
}

.terminal-body {
  flex-grow: 1;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: left;
}

.t-line {
  color: var(--text-main);
  margin: 4px 0;
}

.t-prompt {
  color: var(--primary);
  font-weight: bold;
}

.t-output {
  margin: 2px 0 2px 15px;
}

.t-output.t-green {
  color: #10b981;
}

.t-output.t-yellow {
  color: #f59e0b;
}

.t-cursor {
  animation: blink-cursor 1s steps(2, start) infinite;
  font-weight: bold;
  color: var(--text-white);
}

@keyframes blink-cursor {
  to { visibility: hidden; }
}

.tech-data {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.data-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--accent-color);
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* 11. SERVICES SECTION COMPONENT */
.section-subtitle {
  max-width: 600px;
  font-size: 1.05rem;
}

/* Fond légèrement différent pour alterner les sections */
.bg-dark-accent {
  background-color: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--text-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  color: var(--primary);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  transform: translateY(-2px);
  background: rgba(10, 92, 255, 0.05);
  border-color: var(--primary);
}

.link-arrow {
  color: var(--accent-color);
  font-family: var(--font-headings);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.link-arrow .arrow {
  transition: var(--transition-smooth);
}

.service-card:hover .link-arrow .arrow {
  transform: translateX(4px);
}

/* 12. WHY CHOOSE US & RADAR */
.tech-radar {
  height: 300px;
  background: 
    radial-gradient(circle, rgba(60, 47, 192, 0.18) 0%, rgba(9, 10, 15, 0) 70%),
    repeating-radial-gradient(circle, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 36px);
  border-radius: 50%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-line {
  position: absolute;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color));
  transform-origin: 0% 50%;
  left: 50%;
  animation: radar-sweep 6s linear infinite;
}

.radar-node {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-color);
}

.node-1 { top: 30%; left: 40%; animation: pulse-node 2s infinite 0.5s; }
.node-2 { top: 60%; left: 70%; animation: pulse-node 2.5s infinite 1s; }
.node-3 { top: 20%; left: 80%; animation: pulse-node 1.8s infinite; }

/* Radar Tooltips & Interactiveness */
.radar-node {
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.radar-node:hover {
  transform: scale(1.6);
  box-shadow: 0 0 20px var(--accent-color), 0 0 40px var(--accent-color);
  animation-play-state: paused;
}

body:not(.dark-theme) .radar-node:hover {
  box-shadow: 0 0 20px #0A5CFF, 0 0 40px #0A5CFF;
}

.radar-tooltip {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(12, 17, 41, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

body:not(.dark-theme) .radar-tooltip {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(10, 92, 255, 0.15);
  color: #0f172a;
  box-shadow: 0 4px 15px rgba(10, 92, 255, 0.15);
}

.radar-node:hover .radar-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@keyframes radar-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse-node {
  0% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
  100% { opacity: 0.2; transform: scale(0.8); }
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-list li {
  display: flex;
  gap: 16px;
}

.why-icon {
  background: rgba(129, 139, 255, 0.1);
  color: var(--accent-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  border: 1px solid rgba(129, 139, 255, 0.2);
}

/* 13. TESTIMONIAL CARD COMPONENT */
.rating {
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  background: rgba(255, 255, 255, 0.05);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid var(--border-color);
}

/* Contact Info Block (Fills empty space in contact section) */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 14px 18px;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

body:not(.dark-theme) .contact-info-item {
  background: rgba(0, 0, 0, 0.015);
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body:not(.dark-theme) .contact-info-item:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info-icon {
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  background: rgba(10, 92, 255, 0.1);
  border: 1px solid rgba(10, 92, 255, 0.2);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

body:not(.dark-theme) .info-icon {
  background: rgba(10, 92, 255, 0.05);
  border-color: rgba(10, 92, 255, 0.15);
}

.contact-info-item:hover .info-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff !important;
  box-shadow: 0 0 10px var(--primary-glow);
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 2px;
}

.info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  transition: var(--transition-smooth);
}

a.info-value:hover {
  color: var(--accent-color) !important;
}

/* 14. CONTACT & FORMS COMPONENT */
.input-field {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  padding: 14px 20px;
  border-radius: 10px;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.input-field::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.input-field:hover {
  border-color: var(--primary); /* Bleu */
  background: rgba(255, 255, 255, 0.05);
}

.input-field:focus {
  outline: none;
  border-color: var(--accent-color); /* Jaune Or */
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.35); /* Glow Or */
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
}

.select-field {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 40px;
}

.select-field option {
  background-color: #0c1129 !important;
  color: #ffffff !important;
}

/* 15. PIED DE PAGE (FOOTER) */
.site-footer {
  background: #06070a;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1.7fr;
    gap: 24px;
  }
}

.footer-desc {
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links-list a:hover {
  color: var(--text-white);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-icon {
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  color: var(--text-muted);
}

.social-icon:hover {
  color: var(--text-white);
  border-color: var(--accent-color);
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* 16. BLOG COMPONENT SPECIFIC DESIGNS */
.blog-post-card {
  position: relative;
  overflow: hidden;
}

.blog-post-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.01);
  pointer-events: none;
}

/* 17. REVEAL ANIMATIONS — DECORATION ONLY (jamais opacity:0 en CSS)
   Le contenu est TOUJOURS visible.
   Les animations GSAP sont purement décoratives via fromTo() explicite.
*/

/* Classe utilitaire opacity */
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

/* 18. SOCIAL ICONS FALLBACK */
.social-icon .fab,
.social-icon .fas {
  font-style: normal;
}

/* 19. INTEGRATION DU COMPOSANT SELECT PERSONNALISE */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  position: relative;
  text-align: left;
}

.custom-select-trigger.select-field {
  background-image: none !important;
  padding-right: 20px;
}

.custom-select-trigger::after {
  content: '';
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='%23ffffff' viewBox='0 0 16 10'%3E%3Cpath d='M7.247 8.86 2.451 3.378C1.885 2.733 2.345 1.72 3.204 1.72h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
  pointer-events: none;
}

body:not(.dark-theme) .custom-select-trigger::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='%230f172a' viewBox='0 0 16 10'%3E%3Cpath d='M7.247 8.86 2.451 3.378C1.885 2.733 2.345 1.72 3.204 1.72h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
}

.custom-select-wrapper.open .custom-select-trigger::after {
  transform: rotate(180deg);
}

.custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

body:not(.dark-theme) .custom-select-wrapper.open .custom-select-trigger {
  background: #ffffff;
}

.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-top: 6px;
  z-index: 100;
  max-height: 250px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.25s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.custom-select-wrapper.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-option {
  padding: 12px 20px;
  cursor: pointer;
  color: var(--text-main);
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-align: left;
}

.custom-option:first-child {
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}

.custom-option:last-child {
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}

.custom-option:hover {
  background-color: var(--primary);
  color: #ffffff !important;
}

.custom-option.selected {
  background-color: rgba(245, 158, 11, 0.12);
  color: var(--accent-color) !important;
  font-weight: 600;
}

/* 20. BOUTON DE CHANGEMENT DE THEME CLAIR/SOMBRE */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  padding: 0;
  outline: none;
}

.theme-toggle:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

body:not(.dark-theme) .theme-toggle:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.theme-toggle .sun-icon {
  display: block;
  width: 20px;
  height: 20px;
}

.theme-toggle .moon-icon {
  display: none;
  width: 20px;
  height: 20px;
}

body:not(.dark-theme) .theme-toggle .sun-icon {
  display: none;
}

body:not(.dark-theme) .theme-toggle .moon-icon {
  display: block;
  color: #0f172a;
}

body:not(.dark-theme) .theme-toggle {
  border-color: rgba(0, 0, 0, 0.08);
  color: #64748b;
}

/* 21. REGLAGES ET AJUSTEMENTS POUR LE THEME CLAIR */
body:not(.dark-theme) .bg-dark-accent {
  background-color: rgba(0, 0, 0, 0.015);
}

body:not(.dark-theme) .hero-section {
  background: radial-gradient(circle at center, rgba(10, 92, 255, 0.06) 0%, rgba(248, 250, 252, 0) 70%);
}

body:not(.dark-theme) .hero-bg-shapes .shape {
  opacity: 0.08;
}

body:not(.dark-theme) .tech-radar {
  background: 
    radial-gradient(circle, rgba(10, 92, 255, 0.15) 0%, rgba(248, 250, 252, 0) 70%),
    repeating-radial-gradient(circle, transparent, transparent 35px, rgba(10, 92, 255, 0.08) 35px, rgba(10, 92, 255, 0.08) 36px);
  border-color: rgba(10, 92, 255, 0.15);
}

body:not(.dark-theme) .radar-line {
  height: 3.5px;
  background: linear-gradient(90deg, transparent, #0A5CFF);
}

body:not(.dark-theme) .radar-node {
  background: #D97706;
  box-shadow: 0 0 15px rgba(217, 119, 6, 0.8);
}

body:not(.dark-theme) .site-footer {
  background: #f1f5f9;
  border-top-color: rgba(0, 0, 0, 0.06);
}

body:not(.dark-theme) .social-icon {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.08);
}


/* Corrections Accessibilité (Contraste) - Thème Clair */
body:not(.dark-theme) .section-badge,
body:not(.dark-theme) .badge-premium {
  color: #92400e; /* Or foncé / Ambre pour contraste 6.2:1 sur fond blanc */
}

body:not(.dark-theme) .badge-dot {
  background-color: #92400e;
  box-shadow: 0 0 8px rgba(146, 64, 14, 0.4);
}

body:not(.dark-theme) .site-footer .text-muted {
  color: #334155; /* Gris ardoise foncé pour contraste 5.4:1 sur fond #f1f5f9 */
}

body:not(.dark-theme) .footer-bottom {
  border-top-color: rgba(0, 0, 0, 0.06);
}

body:not(.dark-theme) .footer-links-list a,
body:not(.dark-theme) .footer-contact-list a {
  color: #334155;
}

body:not(.dark-theme) .footer-links-list a:hover,
body:not(.dark-theme) .footer-contact-list a:hover {
  color: var(--primary);
}

body:not(.dark-theme) .theme-toggle {
  border-color: rgba(0, 0, 0, 0.12);
  color: #334155;
}

body:not(.dark-theme) .lang-separator {
  color: rgba(0, 0, 0, 0.15);
}

body:not(.dark-theme) .service-icon {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
}

body:not(.dark-theme) .service-card:hover .service-icon {
  background: rgba(10, 92, 255, 0.03);
  border-color: var(--primary);
}

/* 22. STYLISATION DES PAGES LEGALES (CGU/CGV) */
.entry-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-size: 1.025rem;
}

.entry-content h2 {
  font-size: 1.6rem;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
  font-family: var(--font-headings);
  font-weight: 800;
}

.entry-content h3 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-headings);
  font-weight: 700;
}

.entry-content h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background-color: var(--primary);
  border-radius: 2px;
}

.entry-content p {
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.entry-content ul {
  margin-bottom: 2rem;
  padding-left: 10px;
}

.entry-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0.8rem;
  color: var(--text-main);
  list-style: none;
}

.entry-content li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1;
  top: 1px;
}

.entry-content a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dashed var(--primary);
  padding-bottom: 1px;
  transition: var(--transition-smooth);
}

.entry-content a:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

/* Ajustement de l entete de page */
.entry-header .entry-title {
  font-size: 2.2rem;
  line-height: 1.3;
}

/* Sections dépliables (details/summary) de la CGU/CGV */
.cgu-section {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition-smooth);
}

body:not(.dark-theme) .cgu-section {
  background: rgba(0, 0, 0, 0.005);
}

.cgu-section[open] {
  border-color: var(--primary);
  background: rgba(10, 92, 255, 0.03);
}

body:not(.dark-theme) .cgu-section[open] {
  background: rgba(10, 92, 255, 0.015);
}

.cgu-section-title {
  padding: 20px 24px;
  font-family: var(--font-headings);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  outline: none;
  transition: var(--transition-smooth);
}

/* Hide default marker in Safari and Chrome */
.cgu-section-title::-webkit-details-marker {
  display: none;
}

/* Add custom + / - sign on the right */
.cgu-section-title::after {
  content: '+';
  font-family: monospace;
  font-size: 1.4rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.cgu-section[open] .cgu-section-title::after {
  content: '−';
  transform: rotate(180deg);
}

.cgu-section-title:hover {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

body:not(.dark-theme) .cgu-section-title:hover {
  background: rgba(0, 0, 0, 0.015);
}

.cgu-section[open] .cgu-section-title:hover {
  background: transparent;
}

.cgu-section-content {
  padding: 0 24px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-main);
}

body:not(.dark-theme) .cgu-section-content {
  border-top-color: rgba(0, 0, 0, 0.04);
}

.cgu-section-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .entry-header .entry-title {
    font-size: 1.7rem;
  }
  .entry-content h2 {
    font-size: 1.3rem;
  }
  .entry-content h3 {
    font-size: 1.15rem;
  }
  .cgu-section-title {
    padding: 16px 20px;
    font-size: 1.05rem;
  }
  .cgu-section-content {
    padding: 0 20px 20px 20px;
  }
}

/* 23. STYLISATION DES PAGES DE SERVICES PREMIUM */
.service-page-entry-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.8;
}

.service-page-entry-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.service-page-entry-content h2,
.service-page-entry-content h3 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-white);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.service-page-entry-content h2 {
  font-size: 2rem;
}

.service-page-entry-content h3 {
  font-size: 1.5rem;
}

.service-page-entry-content ul {
  margin-bottom: 1.5rem;
  padding-left: 20px;
  list-style-type: none;
}

.service-page-entry-content li {
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 1rem;
  position: relative;
  padding-left: 24px;
}

.service-page-entry-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.service-page-entry-content a {
  text-decoration: none;
  transition: var(--transition-smooth);
}

