﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STYLE.CSS â€” PhysEdBoard
   Variables â†’ Reset â†’ Base â†’ Layout â†’ Composants â†’ Responsive
   Breakpoints : 1100 Â· 900 Â· 720 Â· 540 Â· 400
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   VARIABLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
  --bg:      #061428;
  --panel:   #0d2040;
  --panel2:  #112548;
  --border:  #1a3a60;
  --border2: #2a5282;
  --accent:  #ffd43b;
  --accent-rgb: 255,212,59;
  --accent-semi: rgba(255,212,59,0.5);
  --red:     #ff3c3c;
  --blue:    #3b82f6;
  --green:   #00ff8c;
  --orange:  #ffa500;
  --purple:  #7c3aed;
  --cyan:    #00e5ff;
  --turquoise:#30d5c8;
  --teal:    #008080;
  --navy:    #22334a;
  --lime:    #bfff00;
  --amber:   #ffbf00;
  --indigo:  #3f51b5;
  --mint:    #aaf0d1;
  --gold:    #f59e0b;
  --text:    #ffffff;
  --muted:   rgba(255,255,255,0.55);
  --nav-h:   64px;
  --text:    rgba(255,255,255,0.88);

}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESET & BASE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Disable double-tap zoom on all touch devices */
html {
  touch-action: manipulation;
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

p, li { text-align: justify; text-justify: inter-word; }

/* Scrollbar */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(var(--accent-rgb),0.3); }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ARRIÃˆRE-PLAN HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.bg-grid, .bg-vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.bg-grid {
  background-image:
    linear-gradient(rgba(var(--accent-rgb),0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb),0.022) 1px, transparent 1px);
  background-size: 56px 56px;
}
.bg-vignette {
  background: radial-gradient(ellipse 100% 80% at 50% 0%,
    transparent 30%, rgba(6,20,40,0.96) 100%);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT COMMUN
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.section-eyebrow::before {
  content: ''; width: 18px; height: 1.5px; background: var(--accent);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 10px;
  padding: 4px 8px;
  border: 1px solid var(--border2);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lang-switch a {
  color: var(--muted);
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 5px;
  transition: color 0.15s, background 0.15s;
}

.lang-switch a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.lang-switch a.active {
  color: var(--accent);
  background: rgba(var(--accent-rgb),0.1);
}

.lang-switch span {
  color: rgba(255,255,255,0.35);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.07); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, width 0.25s;
  transform-origin: center;
}

/* Hamburger â†’ X */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Backdrop mobile */
.nav-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 150;
  background: rgba(6,20,40,0.7);
  backdrop-filter: blur(4px);
}
.nav-backdrop.visible { display: block; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BOUTONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 9px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s,
              transform 0.12s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #000;
  box-shadow: 0 4px 22px rgba(var(--accent-rgb),0.22);
}
.btn-primary:hover  { transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  color: #fff; border-color: var(--accent-semi);
  background: rgba(255,255,255,0.04);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#accueil {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 50px 50px;
  position: relative; z-index: 1;
  background: var(--bg);
}

.hero-eyebrow {
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--accent);
  opacity: 0; animation: fadeUp 0.6s 0.1s forwards;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 13vw, 152px);
  line-height: 0.87; letter-spacing: 0.03em; color: #fff;
  margin-top: 18px;
  opacity: 0; animation: fadeUp 0.8s 0.25s forwards;
}
.hero-title .hero-accent  { color: var(--accent); }
.hero-title .hero-outline {
  -webkit-text-stroke: 0;
  color: #fff;
}

.hero-sub {
  margin-top: 26px;
  font-size: 15px; font-weight: 300;
  letter-spacing: 0.09em; color: var(--text);
  max-width: 440px; line-height: 1.65;
  opacity: 0; animation: fadeUp 0.6s 0.42s forwards;
  text-align: center;
}

.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 40px;
  opacity: 0; animation: fadeUp 0.6s 0.56s forwards;
}

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: center;
  margin-top: 52px;
  opacity: 0; animation: fadeUp 0.6s 0.68s forwards;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px; line-height: 1; color: #fff; letter-spacing: 0.02em;
}
.stat-num em { color: var(--accent); font-style: normal; }
.stat-label {
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text); margin-top: 3px;
}
.stat-divider {
  width: 1px; height: 36px;
  background: var(--border2);
  flex-shrink: 0;
}

.hero-divider {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 52px auto 0;
  opacity: 0; animation: fadeIn 0.5s 0.85s forwards;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   OUTILS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#outils {
  padding: 80px 0;
  position: relative; z-index: 1;
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tools-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 30px;
}
.tools-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5.5vw, 58px);
  line-height: 1; letter-spacing: 0.03em; color: #fff;
}
.tools-title em { color: var(--accent); font-style: normal; }
.tools-meta {
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); padding-bottom: 2px;
}

.tools-list { display: flex; flex-direction: column; gap: 2px; }

/* 2 colonnes cÃ´te Ã  cÃ´te */
.tools-row-group {
  display: flex; gap: 15px; align-items: flex-start;
}
.tools-row-group--mt { margin-top: 20px; }

.tools-col {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
}

.tools-group-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--text);
  padding: 10px;
}

.tools-group-label--hidden { visibility: hidden; }

/* â”€â”€ RangÃ©e outil â”€â”€ */
.tool-row {
  --tool-tone: var(--accent);
  --tool-tone-soft: rgba(var(--accent-rgb),0.12);
  display: grid;
  grid-template-columns: 48px 1fr 228px 12px;
  align-items: center;
  gap: 0 14px;
  padding: 16px 18px;
  margin: 4px 0;
  min-height: 76px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    var(--panel2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  text-decoration: none;
  position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 8px 22px rgba(0,0,0,0.22);
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.4s, transform 0.4s, border-color 0.2s, background 0.2s, box-shadow 0.25s;
}
.tool-row::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(var(--accent-rgb),0.45), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.tool-row.visible { opacity: 1; transform: translateX(0); }

.tool-row:not(.tool-soon):hover {
  border-color: var(--accent-semi);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012)),
    var(--panel2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 14px 30px rgba(0,0,0,0.28);
  transform: translateY(-1px);
}
.tool-row:not(.tool-soon):hover::after { opacity: 1; }
.tool-row:not(.tool-soon):hover .row-bar   { transform: scaleY(1); }
.tool-row:not(.tool-soon):hover .row-arrow { opacity: 1; transform: translate(2px,-2px); color: var(--tool-tone); }
.tool-row:not(.tool-soon):hover .row-icon  { transform: scale(1.06); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14); }
.tool-row:not(.tool-soon):active           { background: rgba(255,255,255,0.03); }

.tool-row:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb),0.45);
  outline-offset: 2px;
}

/* Barre colorÃ©e gauche */
.row-bar {
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: var(--tool-tone);
  opacity: 0.45;
  transform: scaleY(0.65);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), opacity 0.3s;
  border-radius: 3px;
}

.color-accent  { --tool-tone: var(--accent); --tool-tone-soft: rgba(var(--accent-rgb),0.12); }
.color-red     { --tool-tone: var(--red); --tool-tone-soft: rgba(255,60,60,0.12); }
.color-blue    { --tool-tone: var(--blue); --tool-tone-soft: rgba(59,130,246,0.12); }
.color-green   { --tool-tone: var(--green); --tool-tone-soft: rgba(0,255,140,0.10); }
.color-orange  { --tool-tone: var(--orange); --tool-tone-soft: rgba(255,165,0,0.12); }
.color-purple  { --tool-tone: var(--purple); --tool-tone-soft: rgba(124,58,237,0.12); }
.color-gold    { --tool-tone: var(--gold); --tool-tone-soft: rgba(245,158,11,0.12); }
.color-teal    { --tool-tone: var(--teal); --tool-tone-soft: rgba(0,128,128,0.12); }
.color-navy    { --tool-tone: var(--navy); --tool-tone-soft: rgba(34,51,74,0.12); }
.color-mint    { --tool-tone: var(--mint); --tool-tone-soft: rgba(170,240,209,0.12); }
.color-cyan    { --tool-tone: var(--cyan); --tool-tone-soft: rgba(0,229,255,0.12); }
.color-lime    { --tool-tone: var(--lime); --tool-tone-soft: rgba(191,255,0,0.12); }
.color-indigo  { --tool-tone: var(--indigo); --tool-tone-soft: rgba(63,81,181,0.12); }
.color-amber   { --tool-tone: var(--amber); --tool-tone-soft: rgba(255,191,0,0.12); }
.color-turquoise { --tool-tone: var(--turquoise); --tool-tone-soft: rgba(48,213,200,0.12); }

.row-bar--gradient {
  background: linear-gradient(to bottom, var(--accent), var(--blue));
  opacity: 1;
}

/* IcÃ´nes */
.row-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
  background: var(--tool-tone-soft);
  color: var(--tool-tone);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.tool-row:hover .row-bar {
  opacity: 1;
}

.tool-row .row-icon i {
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.35));
}
.row-body {
  min-width: 0;
  display: flex; flex-direction: column; justify-content: center;
}
.row-cat {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.58); line-height: 1; margin-bottom: 3px;
}
.row-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 21px; letter-spacing: 0.03em;
  color: #fff; line-height: 1;
  white-space: nowrap;
}

.row-desc {
  font-size: 15px; font-weight: 300;
  color: rgba(255, 255, 255, 0.72); line-height: 1.45;
  width: 220px;
  justify-self: end;
  text-align: left;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.row-arrow {
  font-size: 12px; color: var(--muted);
  opacity: 0.52; transition: opacity 0.2s, transform 0.2s, color 0.2s;
  flex-shrink: 0; justify-self: end;
}

.tool-soon { opacity: 0.35 !important; cursor: default; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Ã€ PROPOS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#apropos {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
#apropos .wrap { padding-top: 88px; padding-bottom: 80px; }

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px; align-items: start;
  margin-top: 44px;
}

.about-left { display: flex; flex-direction: column; gap: 0; }

/* Carte profil */
.profile-card {
  background: var(--panel2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px; padding: 28px 28px 24px;
  position: relative; overflow: hidden;
}
.profile-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.profile-top {
  display: flex; align-items: center; gap: 18px; margin-bottom: 18px;
}
.profile-avatar {
  }
  .profile-photo {

  width: 58px; height: 58px;
  background: rgba(var(--accent-rgb),0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--accent); flex-shrink: 0;
}
.profile-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.04em; color: #fff; line-height: 1;
}
.profile-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-top: 5px; line-height: 1.4;
}

.profile-facts { display: flex; flex-direction: column; gap: 8px; }
.profile-fact {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; font-weight: 300;
  color: var(--text); line-height: 1.4;
  text-align: justify; text-justify: inter-word;
}
.profile-fact i {
  font-size: 15px; color: var(--accent);
  margin-top: 2px; flex-shrink: 0; width: 14px; text-align: center;
}

/* AccordÃ©on */
.about-accordion { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.acc-item {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.006)),
    var(--panel2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.18s;
}
.acc-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 3px;
  background: var(--accent);
  opacity: 0.5;
  transform: scaleY(0.7);
  transform-origin: bottom;
  transition: transform 0.24s, opacity 0.24s;
}
.acc-item:hover {
  border-color: var(--accent-semi);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}
.acc-item.open {
  border-color: var(--accent-semi);
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}
.acc-item:hover::before,
.acc-item.open::before {
  opacity: 1;
  transform: scaleY(1);
}
.acc-header {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; cursor: pointer; user-select: none;
  background: none; border: none; color: inherit; font: inherit; text-align: left;
}
.acc-header:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb),0.45);
  outline-offset: -2px;
}
.acc-header-left { display: flex; align-items: center; gap: 12px; }
.acc-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
  flex-shrink: 0;
  background: rgba(var(--accent-rgb),0.12);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb),0.2);
}
.acc-icon--accent { background: rgba(var(--accent-rgb),0.1); color: var(--accent); }
.acc-icon--blue,
.acc-icon--orange,
.acc-icon--red {
  background: rgba(var(--accent-rgb),0.12);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb),0.2);
}
.acc-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.acc-chevron {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, color 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.acc-item:hover .acc-chevron,
.acc-item.open .acc-chevron {
  color: var(--accent);
  border-color: var(--accent-semi);
  background: rgba(var(--accent-rgb),0.1);
}
.acc-item.open .acc-chevron { transform: rotate(180deg); }

.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.23,1,0.32,1);
}
.acc-body-inner {
  padding: 0 18px 18px;
  font-size: 15px; font-weight: 300;
  color: var(--text); line-height: 1.7;
}
.acc-body-inner p { margin-bottom: 12px; text-align: justify; }
.acc-body-inner p:last-child { margin-bottom: 0; }
.acc-body-inner strong { color: rgba(255,255,255,0.82); font-weight: 600; }

.contact-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); text-decoration: none;
  font-weight: 600; font-size: 15px;
  border-bottom: 1px solid rgba(var(--accent-rgb),0.3);
  transition: border-color 0.2s;
}
.contact-link:hover { border-color: var(--accent); }

/* Colonne droite */
.about-right h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 4.5vw, 48px);
  letter-spacing: 0.03em; color: #fff; line-height: 1.05;
  margin-bottom: 24px;
}
.about-right h2 em { color: var(--accent); font-style: normal; }
.about-p {
  font-size: 17px; font-weight: 300;
  color: var(--text);
  line-height: 1.78; margin-bottom: 18px;
  text-align: justify; text-justify: inter-word;
}
.about-p strong { color: rgba(255,255,255,0.9); font-weight: 600; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTRIBUER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-dons {
  background: var(--panel);
  border-top: 1px solid var(--border);
}
.section-dons .wrap { padding-top: 70px; padding-bottom: 70px; }
.section-dons .tools-title { margin-bottom: 12px; }

.contrib-wrap {
  width: min(100%, 900px);
  margin: 0 auto;
}
.contrib-intro {
  font-size: 16px; font-weight: 300;
  color: var(--text);
  line-height: 1.8; margin-bottom: 40px;
  text-align: center;
}
.contrib-intro strong { color: rgba(255,255,255,0.95); font-weight: 600; }

/* Donation + others side by side */
.contrib-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 28px;
}

/* Donation card */
.contrib-donate-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.006)), var(--panel2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.contrib-donate-card::before {
  content: '';
  position: absolute;
  left: 0; top: 10px; bottom: 10px;
  width: 3px; border-radius: 3px;
  background: var(--accent);
  opacity: 0.55;
  transform: scaleY(0.72);
  transform-origin: bottom;
  transition: transform 0.24s, opacity 0.24s;
}
.contrib-donate-card:hover {
  border-color: var(--accent-semi);
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}
.contrib-donate-card:hover::before {
  opacity: 1;
  transform: scaleY(1);
}
.contrib-donate-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(var(--accent-rgb),0.08);
  border: 1px solid rgba(var(--accent-rgb),0.15);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 6px;
}
.contrib-donate-badge i { font-size: 10px; }
.contrib-donate-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
}
.contrib-donate-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
  margin: 0 0 14px;
  max-width: 440px;
}
.contrib-paypal-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.contrib-paypal-btn {
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 14px 48px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(var(--accent-rgb),0.15);
}
.contrib-paypal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(var(--accent-rgb),0.25);
}
.contrib-paypal-powered {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.4);
}
.contrib-paypal-logo {
  height: 14px; vertical-align: middle; opacity: 0.7;
}
.contrib-paypal-cards {
  height: 18px; opacity: 0.55;
}

/* Other ways â€” vertical stack, acc-header style */
.contrib-others {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contrib-other-item {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.006)), var(--panel2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 18px;
  flex: 1;
  position: relative; overflow: hidden;
  transition: border-color 0.22s, transform 0.18s, box-shadow 0.22s;
  text-decoration: none; color: inherit;
  cursor: default;
}
a.contrib-other-item { cursor: pointer; }
.contrib-other-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10px; bottom: 10px;
  width: 3px; border-radius: 3px;
  background: var(--accent);
  opacity: 0.55;
  transform: scaleY(0.72);
  transform-origin: bottom;
  transition: transform 0.24s, opacity 0.24s;
}
.contrib-other-item:hover {
  border-color: var(--accent-semi);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
a.contrib-other-item:hover { transform: translateY(-2px); }
.contrib-other-item:hover::before { opacity: 1; transform: scaleY(1); }
.contrib-other-icon {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px;
  font-size: 12px; flex-shrink: 0;
  background: rgba(var(--accent-rgb),0.12);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb),0.2);
}
.contrib-other-text {
  display: flex; flex-direction: column; gap: 1px; flex: 1;
}
.contrib-other-text strong {
  font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.9);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.contrib-other-text span {
  font-size: 15px; font-weight: 300; color: var(--text);
  line-height: 1.4;
}
.contrib-other-chevron {
  display: none;
}
.contrib-footer {
  font-size: 15px; font-weight: 300;
  color: var(--text);
  text-align: center;
  line-height: 1.7;
  margin: 0;
}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-faq {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-faq .wrap { padding-top: 80px; padding-bottom: 80px; }
.section-faq .tools-title { margin-bottom: 40px; }

.faq-wrap {
  width: min(100%, 780px);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Item FAQ */
.faq-item {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.006)),
    var(--panel2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.18s;
}
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 3px;
  background: var(--accent);
  opacity: 0.5;
  transform: scaleY(0.72);
  transform-origin: bottom;
  transition: transform 0.24s, opacity 0.24s;
}
.faq-item:hover {
  border-color: var(--accent-semi);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}
.faq-item.open {
  border-color: var(--accent-semi);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb),0.06), 0 12px 30px rgba(0,0,0,0.26);
}
.faq-item:hover::before,
.faq-item.open::before {
  opacity: 1;
  transform: scaleY(1);
}

/* Header FAQ */
.faq-header {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  cursor: pointer; user-select: none;
  background: none; border: none; color: inherit; font: inherit; text-align: left;
}
.faq-header:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb),0.45);
  outline-offset: -2px;
  border-radius: 14px;
}

.faq-header-left {
  display: flex; align-items: center; gap: 18px; flex: 1; min-width: 0;
  max-width: calc(100% - 44px);
}

/* NumÃ©ro */
.faq-num {
  font-family: 'Bebas Neue', sans-serif;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(var(--accent-rgb),0.12);
  border: 1px solid rgba(var(--accent-rgb),0.2);
  border-radius: 8px;
  padding: 0;
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.22s, border-color 0.22s, background 0.22s;
}
.faq-item.open .faq-num {
  color: var(--accent);
  border-color: rgba(var(--accent-rgb),0.35);
  background: rgba(var(--accent-rgb),0.14);
}

/* Question */
.faq-question {
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.78);
  line-height: 1.35;
  max-width: 58ch;
  transition: color 0.22s;
}
.faq-item.open .faq-question,
.faq-item:hover .faq-question { color: #fff; }

/* Bouton +/Ã— */
.faq-toggle {
  width: 30px; height: 30px; border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s, border-color 0.22s, transform 0.3s, color 0.22s;
  font-size: 11px;
  color: rgba(255,255,255,0.72);
}
.faq-item.open .faq-toggle {
  background: rgba(var(--accent-rgb),0.12);
  border-color: var(--accent-semi);
  color: var(--accent);
  transform: rotate(45deg);
}

/* Corps FAQ */
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23,1,0.32,1);
}
.faq-body-inner {
  padding: 0 22px 22px 20px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.76);
  line-height: 1.75;
  max-width: 90%;
}
.faq-body-inner p { text-align: justify; }
.faq-body-inner .contact-link { font-size: 15px; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
footer {
  background: var(--panel2);
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.footer-inner {
  margin: 0 auto;
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: 0.06em; color: var(--muted);
}
.footer-brand em { color: var(--accent); font-style: normal; }
.footer-copy {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” 1100px (tablette large)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1100px) {
  .row-desc { display: none; }
  .tool-row {
    grid-template-columns: 44px 1fr 20px;
  }
  .about-grid {
    grid-template-columns: 340px 1fr;
    gap: 44px;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” 900px (tablette)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 900px) {
  /* Nav : bascule hamburger */
  .nav { padding: 0 20px; }
  .nav-hamburger { display: flex; }

  .lang-switch {
    margin-right: 8px;
    padding: 4px 6px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .nav-links {
    /* Panneau latÃ©ral sur mobile */
    position: fixed;
    top: var(--nav-h); right: 0;
    width: 260px; height: calc(100vh - var(--nav-h));
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--panel2);
    border-left: 1px solid var(--border);
    padding: 20px 16px;
    z-index: 190;
    transform: translateX(110%);
    transition: transform 0.3s cubic-bezier(0.23,1,0.32,1);
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 10px;
  }
  .nav-links a.active {
    background: rgba(var(--accent-rgb),0.09);
  }

  /* Outils : 1 colonne */
  .tools-row-group {
    flex-direction: column;
    gap: 0;
  }
  .tools-row-group--mt { margin-top: 0; }
  .tools-group-label--hidden { display: none; }
  .tools-col { min-width: 0; }

  /* About : 1 colonne */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-right { order: -1; } /* Texte avant la carte profil sur tablette */

  /* FAQ */
  .faq-body-inner { padding-left: 20px; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” 720px (petite tablette)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }

  #accueil {
    padding: 50px 24px;
  }

  .hero-eyebrow { font-size: 11px; letter-spacing: 0.3em; }
  .hero-sub     { font-size: 15px; max-width: 360px; }

  .hero-ctas {
    flex-direction: column; align-items: center; gap: 10px;
    width: 100%;
  }
  .btn-primary, .btn-secondary {
    width: 100%; max-width: 300px; justify-content: center;
  }

  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .stat-num   { font-size: 32px; }
  .stat-label { font-size: 12px; letter-spacing: 0.2em; }

  #outils { padding: 60px 0; }
  .tools-header { flex-direction: column; align-items: flex-start; gap: 8px; }

  .tool-row {
    grid-template-columns: 40px 1fr 16px;
    gap: 0 12px;
    padding: 14px 14px;
    min-height: 68px;
  }
  .row-icon { width: 38px; height: 38px; font-size: 15px; border-radius: 9px; }
  .row-name { font-size: 19px; }
  .row-cat  { font-size: 8px; letter-spacing: 0.25em; }

  #apropos .wrap { padding-top: 60px; padding-bottom: 60px; }
  .profile-card { padding: 22px 20px; }
  .profile-top  { gap: 14px; }
  .profile-name { font-size: 20px; }

  .section-dons .wrap { padding-top: 56px; padding-bottom: 56px; }
  .contrib-body { grid-template-columns: 1fr; }
  .contrib-donate-card { padding: 32px 20px 28px; }
  .contrib-donate-title { font-size: 26px; }
  .contrib-other-item { padding: 16px 16px; }

  /* FAQ */
  .section-faq .wrap { padding-top: 60px; padding-bottom: 60px; }
  .faq-header { padding: 18px 18px; gap: 14px; }
  .faq-header-left { gap: 14px; }
  .faq-question { font-size: 15px; }
  .faq-body-inner { padding: 0 18px 18px 18px; font-size: 15px; }
  .faq-num { display: none; }

  .footer-inner { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 6px; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” 540px (mobile)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 540px) {
  #accueil { padding: 40px 20px; }

  .hero-title { margin-top: 14px; }
  .hero-title .hero-outline {
    -webkit-text-stroke-width: 0;
  }

  .tools-group-label { font-size: 10px; padding: 16px 0 6px 2px; }

  .tool-row {
    grid-template-columns: 38px 1fr;
    padding: 13px 14px;
    min-height: 62px;
  }

  .tools-col { width: 100%; }
  /* Cacher la flèche sur mobile — remplacée par le tap */
  .row-arrow { display: none; }

  .about-p { font-size: 15px; }
  .contrib-text { font-size: 15px; }

  /* FAQ */
  .faq-toggle { width: 26px; height: 26px; font-size: 10px; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” 400px (trÃ¨s petit mobile)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 400px) {
  .nav { padding: 0 14px; }
  .nav-brand { margin-right: 0; }
  .lang-switch { gap: 6px; margin-right: 6px; }
  .wrap { padding: 0 14px; }

  #accueil { padding: 32px 14px; }

  .hero-eyebrow { font-size: 10px; letter-spacing: 0.2em; }

  .profile-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .profile-card { padding: 18px 16px; }

  .footer-inner { padding: 16px 14px; }
  .footer-copy  { font-size: 10px; letter-spacing: 0.12em; }
}
