/* ========================================
   VOUS RANKEZ VOUS ? — Blandine Pujols
   Feuille de style globale
   ======================================== */

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

:root {
  --blue:         oklch(44% 0.19 252);
  --blue-light:   oklch(96% 0.03 252);
  --blue-mid:     oklch(60% 0.15 252);
  --orange:       oklch(66% 0.19 44);
  --orange-light: oklch(97% 0.03 44);
  --dark:         oklch(16% 0.02 252);
  --gray:         oklch(50% 0.01 252);
  --gray-light:   oklch(93% 0.01 252);
  --bg:           oklch(99.2% 0.004 252);
  --white:        #fff;
  --radius:       14px;
  --shadow:       0 2px 16px oklch(44% 0.19 252 / 0.08);
  --shadow-hover: 0 8px 32px oklch(44% 0.19 252 / 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: white;
}
.btn-primary:hover { background: oklch(38% 0.19 252); transform: translateY(-1px); box-shadow: 0 6px 20px oklch(44% 0.19 252 / 0.3); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-light); transform: translateY(-1px); }
.btn-orange {
  background: var(--orange);
  color: white;
}
.btn-orange:hover { background: oklch(60% 0.19 44); transform: translateY(-1px); box-shadow: 0 6px 20px oklch(66% 0.19 44 / 0.3); }

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(93% 0.01 252);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); background: var(--gray-light); }
.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: oklch(60% 0.19 44) !important; color: white !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(44% 0.19 252 / 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(66% 0.19 44 / 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 20px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.6;
}
.hero-desc {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.hero-service-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid oklch(93% 0.01 252);
  transition: all 0.2s;
}
.hero-service-card:hover { box-shadow: var(--shadow-hover); transform: translateX(4px); }
.hero-service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hero-service-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.hero-service-card p {
  font-size: 13px;
  color: var(--gray);
}

/* ─── STATS ─── */
.stats {
  background: var(--dark);
  padding: 40px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid oklch(30% 0.02 252);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: oklch(75% 0.02 252);
  margin-top: 6px;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  border: 1px solid oklch(93% 0.01 252);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.service-card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 24px; }
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.service-features li {
  font-size: 13px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  text-decoration: none;
}
.service-link:hover { gap: 10px; }

/* ─── RUBRIQUES ─── */
.rubriques { background: oklch(98% 0.01 252); }
.rubriques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.rubrique-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid oklch(93% 0.01 252);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.rubrique-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.rubrique-icon { font-size: 28px; margin-bottom: 14px; }
.rubrique-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.rubrique-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 18px; }
.rubrique-link {
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  text-decoration: none;
  color: var(--blue);
}
.rubrique-link:hover { gap: 10px; }
.rubrique-card.highlight { background: var(--orange-light); border-color: oklch(90% 0.04 44); }

/* ─── ARTICLES ─── */
.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid oklch(93% 0.01 252);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.article-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.article-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
}
.article-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.article-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  flex: 1;
}
.article-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
.article-read {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.2s;
  text-decoration: none;
}
.article-read:hover { gap: 10px; }
.reading-time { font-size: 12px; color: var(--gray); }

/* ─── GLOSSAIRE ─── */
.glossaire-section { background: var(--dark); }
.glossaire-section .section-title { color: white; }
.glossaire-section .section-subtitle { color: oklch(75% 0.02 252); }
.glossaire-section .section-label { color: var(--orange); }
.glossaire-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: oklch(22% 0.02 252);
  border-radius: 10px;
  padding: 14px 20px;
  margin: 40px 0 32px;
  max-width: 500px;
}
.glossaire-search input {
  background: none;
  border: none;
  outline: none;
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  flex: 1;
}
.glossaire-search input::placeholder { color: oklch(60% 0.02 252); }
.glossaire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.glossaire-card {
  background: oklch(22% 0.02 252);
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid oklch(28% 0.02 252);
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.glossaire-card:hover { border-color: var(--blue); background: oklch(24% 0.03 252); }
.glossaire-card h4 { font-size: 15px; font-weight: 700; color: var(--orange); margin-bottom: 8px; }
.glossaire-card p { font-size: 13px; color: oklch(72% 0.02 252); line-height: 1.6; }
.glossaire-cta { margin-top: 32px; text-align: center; }

/* ─── PORTFOLIO ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid oklch(93% 0.01 252);
  transition: all 0.2s;
}
.portfolio-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.portfolio-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 48px;
  background: var(--gray-light);
}
.portfolio-body { padding: 20px 22px; }
.portfolio-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.portfolio-body p { font-size: 13px; color: var(--gray); }

/* ─── À PROPOS ─── */
.about { background: oklch(98% 0.01 252); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  aspect-ratio: 4/5;
  max-height: 480px;
  border-radius: 20px;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  font-size: 80px;
  overflow: hidden;
  position: relative;
}
.about-content h2 { margin-bottom: 16px; }
.about-content p { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}
.skill-tag {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  background: var(--blue-light);
  color: var(--blue);
}

/* ─── CONTACT ─── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; font-weight: 600;
}
.contact-method-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid oklch(93% 0.01 252);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid oklch(88% 0.01 252);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid oklch(28% 0.02 252);
}
.footer-brand p { font-size: 13px; color: oklch(65% 0.02 252); line-height: 1.7; margin-top: 12px; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px; color: white; text-decoration: none; display: block; }
.footer-logo span { color: var(--orange); }
.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(60% 0.02 252);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: oklch(72% 0.02 252); transition: color 0.15s; text-decoration: none; }
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: oklch(55% 0.02 252); }

/* ─── DIVIDER ─── */
.divider { height: 1px; background: var(--gray-light); }

/* ─── HELPERS ─── */
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 60px 0 48px;
  background: oklch(98% 0.01 252);
  border-bottom: 1px solid var(--gray-light);
}
.page-hero .breadcrumb {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.page-hero .breadcrumb a { color: var(--blue); text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: var(--gray); max-width: 600px; line-height: 1.7; }

/* ─── ARTICLE FULL PAGE ─── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
  padding: 64px 0;
}
.article-content h2 { font-size: 26px; margin: 40px 0 16px; }
.article-content h3 { font-size: 20px; margin: 32px 0 12px; }
.article-content p { font-size: 16px; line-height: 1.8; color: oklch(25% 0.02 252); margin-bottom: 20px; }
.article-content ul, .article-content ol { margin: 16px 0 20px 24px; }
.article-content li { font-size: 16px; line-height: 1.8; color: oklch(25% 0.02 252); margin-bottom: 8px; }
.article-content strong { font-weight: 700; color: var(--dark); }
.article-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 16px 24px;
  background: var(--orange-light);
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-style: italic;
  font-size: 16px;
  color: var(--dark);
}
.article-sidebar { position: sticky; top: 88px; }
.sidebar-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  margin-bottom: 20px;
}
.sidebar-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: var(--dark); }
.sidebar-card ul { display: flex; flex-direction: column; gap: 8px; }
.sidebar-card li a { font-size: 13px; color: var(--blue); text-decoration: none; }
.sidebar-card li a:hover { text-decoration: underline; }
.toc-list { counter-reset: toc; }
.toc-list li { font-size: 13px; color: var(--gray); padding: 6px 0; border-bottom: 1px solid var(--gray-light); }
.toc-list li:last-child { border-bottom: none; }
.toc-list a { color: var(--blue); text-decoration: none; font-size: 13px; }
.toc-list a:hover { text-decoration: underline; }

/* ─── GLOSSAIRE PAGE ─── */
.glossaire-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.glossaire-page-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow);
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.glossaire-page-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); border-color: var(--blue); }
.glossaire-page-card .term-letter {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.glossaire-page-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.glossaire-page-card p { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ─── ALPHA INDEX ─── */
.alpha-index {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 24px 0 40px;
}
.alpha-index a {
  width: 36px; height: 36px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  background: white;
  border: 1px solid var(--gray-light);
  color: var(--gray);
  text-decoration: none;
  transition: all 0.15s;
}
.alpha-index a:hover, .alpha-index a.has-terms { color: var(--blue); border-color: var(--blue); background: var(--blue-light); }

/* ─── GLOSSAIRE TERM PAGE ─── */
.term-definition-box {
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
  border-left: 4px solid var(--blue);
}
.term-definition-box p { font-size: 18px; color: var(--dark); line-height: 1.7; font-weight: 500; margin: 0; }
.related-terms { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.related-term-tag {
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.related-term-tag:hover { background: var(--blue); color: white; }

/* ─── CATEGORY PAGE ─── */
.category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 48px 0 40px;
}
.category-icon-big {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
}

/* ─── PAGINATION ─── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  background: white;
  border: 1px solid var(--gray-light);
  color: var(--gray);
  text-decoration: none;
  transition: all 0.15s;
}
.pagination a:hover, .pagination a.active { background: var(--blue); color: white; border-color: var(--blue); }

/* ─── SKIP LINK (a11y) ─── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--blue);
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 8px 0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .glossaire-page-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--gray-light); padding: 16px; gap: 4px; box-shadow: 0 8px 24px oklch(44% 0.19 252 / 0.1); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 60px 0 48px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .rubriques-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: 1fr; }
  .glossaire-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .glossaire-page-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .rubriques-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .glossaire-page-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 30px; }
  .contact-form { padding: 24px; }
}
