/* MeknIA v2.0.0 — main.css
   Structure : Base → Layout → Composants → Pages → Responsive
   Une seule source de vérité. Aucun doublon. */

/* ════════════════════════════════════════════════════
   1. RESET + VARIABLES
   ════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #0d1117;
  --white:        #ffffff;
  --dark:         #111820;
  --mid:          #1a2332;
  --accent:       #00c8c8;
  --accent-light: #00e5e5;
  --gray:         #9ca3af;
  --border:       rgba(255,255,255,.06);
  --font-display: 'Barlow', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --ease:         0.3s ease;
  --header-h:     80px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
}

/* Scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--accent); }

/* ════════════════════════════════════════════════════
   2. ACCESSIBILITÉ
   ════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 99999;
  padding: .75rem 1.5rem;
  background: var(--accent);
  color: var(--black);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

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

:focus-visible {
  outline: 2px solid var(--accent) !important;
  outline-offset: 4px !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1 !important; transform: none !important; }
}

@media (prefers-contrast: high) {
  :root { --accent: #00ffff; --gray: #b0b0b0; }
}

/* ════════════════════════════════════════════════════
   3. TYPOGRAPHIE GLOBALE
   ════════════════════════════════════════════════════ */
.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -.03em;
}
.logo-text span { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: -.03em;
}

.label {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--accent);
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════
   4. HEADER + NAVIGATION
   ════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(13,17,23,.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,200,200,.12);
  transition: box-shadow var(--ease);
}
#site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.5); }

.site-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -.03em;
  flex-shrink: 0;
}
.site-logo span, .footer-logo span { color: var(--accent); }

/* Navigation desktop */
#main-nav ul { display: flex; gap: 2.5rem; list-style: none; }
#main-nav a {
  text-decoration: none;
  color: var(--gray);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color var(--ease);
  position: relative;
}
#main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--ease);
}
#main-nav a:hover, #main-nav a[aria-current="page"],
#main-nav .current-menu-item > a { color: var(--white); }
#main-nav a:hover::after,
#main-nav a[aria-current="page"]::after,
#main-nav .current-menu-item > a::after { width: 100%; }

/* Bouton nav CTA */
.btn-nav {
  padding: 10px 24px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--ease);
  flex-shrink: 0;
}
.btn-nav:hover { background: var(--accent); color: var(--black); }

/* ── HAMBURGER ──────────────────────────────────────
   Masqué par défaut — affiché uniquement en mobile/tablette
   via media query ci-dessous.
   ─────────────────────────────────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 200;
  position: relative;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.menu-toggle[aria-expanded="true"] { background: rgba(0,200,200,.12); border-radius: 4px; }
.menu-toggle[aria-expanded="true"] span { background: #ffffff; width: 28px; height: 3px; }.menu-toggle[aria-expanded="true"] { background: rgba(0,200,200,.12); border-radius: 4px; }
.menu-toggle[aria-expanded="true"] span { background: var(--accent); width: 26px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── MENU MOBILE ────────────────────────────────────
   Position fixed plein écran. Masqué par défaut.
   Ouvert via .is-open ajouté par JS.
   ─────────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,17,23,.98);
  z-index: 150;
  padding: calc(var(--header-h) + 2rem) 2rem 2rem;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }

/* Liens générés par wp_nav_menu (ul/li/a) */
.mobile-nav ul { list-style: none; }
.mobile-nav li { display: block; }
.mobile-nav a,
.mobile-nav ul li a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--ease);
}
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"],
.mobile-nav .current-menu-item > a {
  color: var(--accent);
}

/* ════════════════════════════════════════════════════
   5. LAYOUT DE BASE
   ════════════════════════════════════════════════════ */
#page { padding-top: var(--header-h); min-height: 100vh; }

section { padding: 6rem 5%; }

.section-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--accent);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--accent); }

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-subtitle { font-size: .95rem; color: var(--gray); line-height: 1.7; max-width: 560px; }
.section-header { margin-bottom: 4rem; }

.divider { height: 1px; background: var(--border); margin: 0 5%; }

/* ════════════════════════════════════════════════════
   6. BOUTONS
   ════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
}
.btn-primary:hover { background: var(--accent-light); gap: 18px; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: all var(--ease);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ════════════════════════════════════════════════════
   7. PAGE HERO
   ════════════════════════════════════════════════════ */
.page-hero {
  padding: 6rem 5% 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(0,200,200,.04));
  pointer-events: none;
}
.page-hero .eyebrow { font-family: var(--font-mono); font-size: .75rem; color: var(--accent); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.5rem; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 7rem); font-weight: 800; line-height: .95; color: var(--white); }
.page-hero h1 em { font-style: italic; color: var(--accent); }

/* ════════════════════════════════════════════════════
   8. HERO ACCUEIL
   ════════════════════════════════════════════════════ */
.hero-section {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 5%;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-display);
  font-size: 22vw;
  font-weight: 900;
  color: rgba(255,255,255,.015);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: .72rem; color: var(--accent); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 2rem; }
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--accent); }
.hero-title { font-size: clamp(3.5rem, 5.5vw, 7rem); font-weight: 900; line-height: .92; letter-spacing: -.04em; color: var(--white); margin-bottom: 2rem; }
.hero-title em { font-style: normal; color: var(--accent); display: block; }
.hero-desc { font-size: 1rem; color: var(--gray); line-height: 1.75; max-width: 440px; margin-bottom: 3rem; }
.hero-actions { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 4rem; border-top: 1px solid var(--border); padding-top: 3rem; }
.stat { padding-right: 2rem; }
.stat:not(:last-child) { border-right: 1px solid var(--border); margin-right: 2rem; }
.stat-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: .8rem; color: var(--gray); margin-top: .4rem; }
.hero-visual { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
.hero-image-frame { position: relative; width: 100%; max-width: 520px; }
.hero-image-frame::before { content: ''; position: absolute; top: -20px; right: -20px; width: 100%; height: 100%; border: 1px solid rgba(0,200,200,.25); z-index: -1; }
.hero-image-frame img { width: 100%; height: 500px; object-fit: cover; display: block; }
.hero-img-placeholder { width: 100%; height: 500px; background: linear-gradient(135deg,#111820,#1a2332); position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 2rem; }
.hero-badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--accent); padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 4px; z-index: 3; }
.hero-badge-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--black); line-height: 1; }
.hero-badge-text { font-size: .7rem; font-weight: 700; color: var(--black); letter-spacing: .05em; text-transform: uppercase; }

/* ════════════════════════════════════════════════════
   9. CLIENTS
   ════════════════════════════════════════════════════ */
.clients-strip { padding: 4rem 5%; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.clients-label { font-family: var(--font-mono); font-size: .7rem; color: var(--gray); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 2.5rem; text-align: center; }
.clients-grid { display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.client-logo-img img { max-height: 50px; width: auto; object-fit: contain; filter: grayscale(100%) brightness(1.5); transition: filter var(--ease); }
.client-logo-img img:hover { filter: grayscale(0%) brightness(1); }

/* ════════════════════════════════════════════════════
   10. SERVICES
   ════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,.04); }
.service-card {
  background: var(--black);
  padding: 3rem 2.5rem;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background var(--ease);
}
.service-card:hover { background: var(--dark); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width .5s ease; }
.service-card:hover::after { width: 100%; }
.service-num { font-family: var(--font-mono); font-size: .65rem; color: var(--accent); letter-spacing: .2em; margin-bottom: 2rem; display: block; }
.service-icon { width: 40px; height: 40px; margin-bottom: 1.5rem; display: block; color: var(--accent); }
.service-icon svg { width: 100%; height: 100%; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.service-title { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.service-desc { font-size: .88rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }
.service-arrow { font-family: var(--font-mono); font-size: .72rem; color: var(--accent); letter-spacing: .1em; transition: letter-spacing var(--ease); }
.service-card:hover .service-arrow { letter-spacing: .2em; }

/* ════════════════════════════════════════════════════
   11. PORTFOLIO
   ════════════════════════════════════════════════════ */
.portfolio-filter { display: flex; padding: 0 5%; border-bottom: 1px solid var(--border); }
.filter-btn { padding: 1rem 2rem; background: none; border: none; color: var(--gray); font-family: var(--font-mono); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; cursor: pointer; transition: all var(--ease); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.filter-btn.active, .filter-btn:hover { color: var(--accent); border-bottom-color: var(--accent); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,.04); }
.portfolio-item { background: var(--black); overflow: hidden; }
.portfolio-item a { text-decoration: none; display: block; }
.portfolio-thumb { height: 280px; background: linear-gradient(135deg,#111820,#1a2332); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 6rem; color: rgba(0,200,200,.06); overflow: hidden; position: relative; transition: transform .5s ease; }
.portfolio-item:hover .portfolio-thumb { transform: scale(1.03); }
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-info { padding: 1.5rem 2rem; }
.portfolio-cat { font-family: var(--font-mono); font-size: .65rem; color: var(--accent); letter-spacing: .15em; text-transform: uppercase; margin-bottom: .5rem; display: block; }
.portfolio-title { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.portfolio-client { font-size: .8rem; color: var(--gray); }

/* ════════════════════════════════════════════════════
   12. BLOG
   ════════════════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,.04); }
.blog-card { background: var(--black); overflow: hidden; }
.blog-thumb { height: 220px; background: linear-gradient(135deg,#111820,#1a2332); overflow: hidden; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 5rem; color: rgba(0,200,200,.08); transition: transform .5s ease; }
.blog-card:hover .blog-thumb { transform: scale(1.03); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 2rem; }
.blog-meta { display: flex; gap: 1.5rem; margin-bottom: 1rem; }
.blog-date, .blog-cat { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; }
.blog-date { color: var(--gray); }
.blog-cat { color: var(--accent); text-transform: uppercase; }
.blog-title { font-size: 1.3rem; font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: .8rem; }
.blog-title a { color: inherit; text-decoration: none; transition: color var(--ease); }
.blog-title a:hover { color: var(--accent); }
.blog-excerpt { font-size: .82rem; color: var(--gray); line-height: 1.6; margin-bottom: 1.5rem; }
.blog-link { font-family: var(--font-mono); font-size: .7rem; color: var(--accent); text-decoration: none; letter-spacing: .1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--ease); }
.blog-link:hover { gap: 12px; }

/* ════════════════════════════════════════════════════
   13. SINGLE POST
   ════════════════════════════════════════════════════ */
.single-post-content { max-width: 780px; margin: 0 auto; padding: 5rem 5%; }
.post-featured-img { width: 100%; height: 400px; object-fit: cover; display: block; margin-bottom: 4rem; }
.entry-content h2, .entry-content h3 { color: var(--white); margin-bottom: 1.5rem; margin-top: 3rem; }
.entry-content h2 { font-size: 1.8rem; }
.entry-content h3 { font-size: 1.4rem; }
.entry-content p { font-size: .95rem; color: var(--gray); line-height: 1.85; margin-bottom: 2rem; }
.entry-content a { color: var(--accent); }
.entry-content img { width: 100%; height: auto; display: block; margin: 2rem 0; }
.post-tags { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); align-items: center; }
.post-tag { font-size: .8rem; color: var(--gray); border: 1px solid var(--border); padding: 4px 12px; text-decoration: none; transition: all var(--ease); }
.post-tag:hover { border-color: var(--accent); color: var(--accent); }

/* ════════════════════════════════════════════════════
   14. CTA BANNER
   ════════════════════════════════════════════════════ */
.cta-banner {
  padding: 8rem 5%;
  background: linear-gradient(135deg, rgba(0,200,200,.07), rgba(0,200,200,.02));
  border-top: 1px solid rgba(0,200,200,.12);
  border-bottom: 1px solid rgba(0,200,200,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}
.cta-text .label { display: block; margin-bottom: 1rem; }
.cta-text h2 { font-size: clamp(2.5rem, 4vw, 4.5rem); font-weight: 800; line-height: 1; color: var(--white); }
.cta-text h2 em { font-style: italic; color: var(--accent); }

/* ════════════════════════════════════════════════════
   15. FOOTER
   ════════════════════════════════════════════════════ */
#site-footer {
  background: var(--dark);
  padding: 5rem 5% 2.5rem;
  border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--white); text-decoration: none; letter-spacing: -.03em; display: inline-block; margin-bottom: 1rem; }
.footer-brand p { font-size: .85rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-heading { font-family: var(--font-mono); font-size: .7rem; color: var(--accent); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 400; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-col ul li a { font-size: .88rem; color: var(--gray); text-decoration: none; transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { margin-bottom: 1.2rem; font-size: .85rem; color: var(--gray); }
.footer-contact-item strong { display: block; font-family: var(--font-mono); font-size: .68rem; color: var(--white); letter-spacing: .05em; text-transform: uppercase; margin-bottom: .25rem; }
.footer-contact-item a { color: var(--gray); text-decoration: none; transition: color var(--ease); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 1rem; }
.social-link { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gray); text-decoration: none; transition: all var(--ease); }
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.social-link.is-disabled { opacity: .4; pointer-events: none; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: var(--gray); flex-wrap: wrap; gap: 1rem; }

/* ════════════════════════════════════════════════════
   16. À PROPOS
   ════════════════════════════════════════════════════ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; padding: 6rem 5%; }
.about-intro-text .big-quote { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.3; color: var(--white); margin-bottom: 2rem; }
.about-intro-text .big-quote em { color: var(--accent); font-style: normal; }
.about-intro-text p { font-size: .95rem; color: var(--gray); line-height: 1.75; }
.about-img-side { position: relative; }
.about-img-main { width: 100%; height: 480px; background: linear-gradient(135deg,#111820,#1a2332); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-box { position: absolute; bottom: -2rem; right: -2rem; background: var(--accent); padding: 2rem; width: 160px; }
.about-accent-box .num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--black); line-height: 1; }
.about-accent-box .txt { font-size: .75rem; font-weight: 700; color: var(--black); margin-top: .3rem; line-height: 1.3; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-row .stat-box { padding: 4rem 5%; border-right: 1px solid var(--border); text-align: center; }
.stats-row .stat-box:last-child { border-right: none; }
.stat-big { font-family: var(--font-display); font-size: 4.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-big span { color: var(--accent); }
.stat-small { font-size: .82rem; color: var(--gray); margin-top: .5rem; line-height: 1.4; }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: rgba(255,255,255,.04); }
.value-card { background: var(--black); padding: 3.5rem; transition: background var(--ease); }
.value-card:hover { background: var(--dark); }
.value-num { font-family: var(--font-mono); font-size: .7rem; color: var(--accent); margin-bottom: 1.5rem; display: block; }
.value-title { font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.value-desc { font-size: .88rem; color: var(--gray); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,.04); }
.team-card { background: var(--black); overflow: hidden; }
.team-photo { height: 300px; background: linear-gradient(135deg,#111820,#1a2332); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 6rem; color: rgba(0,200,200,.1); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 1.5rem 2rem 2rem; }
.team-name { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.team-role { font-size: .8rem; color: var(--accent); font-family: var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }

/* ════════════════════════════════════════════════════
   17. SERVICES PAGE
   ════════════════════════════════════════════════════ */
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--border); }
.process-step { padding: 4rem 3rem; border-right: 1px solid var(--border); }
.process-step:last-child { border-right: none; }
.step-num { font-family: var(--font-display); font-size: 6rem; font-weight: 900; color: rgba(255,255,255,.03); line-height: 1; margin-bottom: 1rem; }
.step-title { font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.step-desc { font-size: .88rem; color: var(--gray); line-height: 1.7; }
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 1.8rem 0; color: var(--white); font-family: var(--font-body); font-size: 1rem; font-weight: 500; text-align: left; }
.faq-question .icon { font-size: 1.5rem; color: var(--accent); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding-bottom: 1.5rem; font-size: .9rem; color: var(--gray); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ════════════════════════════════════════════════════
   18. PRICING
   ════════════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,.04); }
.pricing-card { background: var(--black); padding: 3.5rem; position: relative; }
.pricing-card.featured { background: rgba(0,200,200,.07); border: 1px solid rgba(0,200,200,.25); }
.pricing-card.featured::before { content: 'POPULAIRE'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--black); font-family: var(--font-mono); font-size: .65rem; letter-spacing: .15em; padding: 5px 14px; font-weight: 700; }
.pricing-plan { font-family: var(--font-mono); font-size: .7rem; color: var(--accent); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1rem; }
.pricing-name { font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.pricing-tagline { font-size: .85rem; color: var(--gray); margin-bottom: 2rem; }
.pricing-price { font-size: 4rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: .5rem; }
.pricing-price sup { font-size: 1.5rem; color: var(--accent); vertical-align: top; margin-top: .8rem; }
.pricing-period { font-size: .8rem; color: var(--gray); margin-bottom: 2.5rem; }
.pricing-features { list-style: none; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: .75rem; }
.pricing-features li { font-size: .88rem; color: var(--gray); display: flex; gap: 10px; align-items: flex-start; }
.pricing-features li::before { content: '—'; color: var(--accent); flex-shrink: 0; }

/* ════════════════════════════════════════════════════
   19. CONTACT
   ════════════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; padding: 6rem 5%; align-items: start; }
.contact-info h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 800; line-height: 1; color: var(--white); margin-bottom: 1.5rem; }
.contact-info h2 em { font-style: italic; color: var(--accent); }
.contact-info > p { font-size: .95rem; color: var(--gray); line-height: 1.75; margin-bottom: 3rem; }
.contact-item { margin-bottom: 2.5rem; }
.contact-item-label { font-family: var(--font-mono); font-size: .68rem; color: var(--accent); letter-spacing: .2em; text-transform: uppercase; margin-bottom: .5rem; }
.contact-item-value { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--white); }
.contact-item-value a { color: var(--white); text-decoration: none; transition: color var(--ease); }
.contact-item-value a:hover { color: var(--accent); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-family: var(--font-mono); font-size: .68rem; color: var(--accent); letter-spacing: .15em; text-transform: uppercase; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--white);
  padding: 1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  transition: border-color var(--ease);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.18); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--dark); color: var(--white); }
#meknia-form-success { padding: 2rem; border: 1px solid var(--accent); text-align: center; margin-top: 1rem; }
.success-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--accent); margin-bottom: .5rem; }

/* ════════════════════════════════════════════════════
   20. AUTRES PAGES
   ════════════════════════════════════════════════════ */
/* Single projet */
.single-hero-content { padding: 5rem 5%; display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; }
.single-meta { background: rgba(255,255,255,.02); border: 1px solid var(--border); padding: 2.5rem; display: flex; flex-direction: column; gap: 2rem; align-self: start; }
.single-meta-item { border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
.single-meta-item:last-child { border: none; padding-bottom: 0; }

/* 404 */
.error-404 { min-height: calc(100vh - var(--header-h)); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 5%; position: relative; }
.error-num { font-family: var(--font-display); font-size: 15rem; font-weight: 900; color: rgba(255,255,255,.03); line-height: 1; position: absolute; }

/* Pagination */
.pagination { display: flex; gap: .5rem; justify-content: center; padding: 4rem 5%; }
.pagination a, .pagination span { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); color: var(--gray); text-decoration: none; font-family: var(--font-mono); font-size: .8rem; transition: all var(--ease); }
.pagination a:hover, .pagination .current { border-color: var(--accent); color: var(--accent); }

/* Breadcrumb */
.breadcrumb { padding: 1rem 5%; border-bottom: 1px solid rgba(255,255,255,.04); }
.breadcrumb ol { list-style: none; display: flex; gap: .5rem; align-items: center; font-size: .78rem; color: var(--gray); }
.breadcrumb li + li::before { content: '›'; color: var(--accent); margin-right: .5rem; }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current] { color: var(--white); }

/* ════════════════════════════════════════════════════
   21. ANIMATIONS
   ════════════════════════════════════════════════════ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .15s; }
.fade-in-delay-2 { transition-delay: .3s; }

/* ════════════════════════════════════════════════════
   22. RESPONSIVE
   ════════════════════════════════════════════════════ */

/* Tablette + Mobile : hamburger visible, nav desktop masquée */
@media (max-width: 1024px) {
  #main-nav,
  .btn-nav     { display: none !important; }
  .menu-toggle { display: flex !important; }

  .hero-section         { grid-template-columns: 1fr; }
  .hero-visual          { display: none; }
  .about-intro          { grid-template-columns: 1fr; }
  .contact-layout       { grid-template-columns: 1fr; }
  .single-hero-content  { grid-template-columns: 1fr; }
  .services-grid        { grid-template-columns: repeat(2,1fr); }
  .blog-grid            { grid-template-columns: repeat(2,1fr); }
  .portfolio-grid       { grid-template-columns: repeat(2,1fr); }
  .stats-row            { grid-template-columns: repeat(2,1fr); }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pricing-grid         { grid-template-columns: 1fr; gap: 1rem; background: none; }
  .process-steps        { grid-template-columns: 1fr; }
  .process-step         { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
}

/* Mobile uniquement */
@media (max-width: 640px) {
  :root { --header-h: 64px; }

  #site-header { padding: 0 1.25rem; }
  .site-logo   { font-size: 1.4rem; }

  section, .about-intro, .contact-layout { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero-section { padding: 2rem 1.25rem 4rem; min-height: auto; }

  .services-grid, .blog-grid, .portfolio-grid,
  .team-grid, .values-grid, .pricing-grid,
  .footer-grid  { grid-template-columns: 1fr; }

  .stats-row    { grid-template-columns: repeat(2,1fr); }
  .form-row     { grid-template-columns: 1fr; }
  .hero-stats   { grid-template-columns: 1fr; }
  .stat:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); margin-right: 0; padding-bottom: 2rem; margin-bottom: 2rem; }

  .cta-banner   { padding: 3rem 1.25rem; flex-direction: column; align-items: flex-start; gap: 2rem; }
}

/* Desktop : nav visible, hamburger masqué */
@media (min-width: 1025px) {
  #main-nav,
  .btn-nav     { display: flex !important; }
  .menu-toggle { display: none !important; }

  .hero-visual          { display: flex; }
  .about-intro          { grid-template-columns: 1fr 1fr; gap: 6rem; }
  .contact-layout       { grid-template-columns: 1fr 1.2fr; gap: 6rem; }
  .single-hero-content  { grid-template-columns: 2fr 1fr; gap: 4rem; }
  .services-grid        { grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,.04); }
  .blog-grid            { grid-template-columns: repeat(3,1fr); }
  .portfolio-grid       { grid-template-columns: repeat(3,1fr); }
  .stats-row            { grid-template-columns: repeat(4,1fr); }
  .footer-grid          { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; }
  .pricing-grid         { grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,.04); }
  .process-steps        { grid-template-columns: repeat(3,1fr); }
  .process-step         { border-bottom: none; border-right: 1px solid var(--border); }
  .process-step:last-child { border-right: none; }
}

/* Print */
@media print {
  #site-header, .menu-toggle, .mobile-nav, .cta-banner, #site-footer { display: none !important; }
  body { background: #fff; color: #000; }
  a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
}
