/*
 * TechNancy — Design System v2.0
 * Sobre · Minimaliste · Moderne
 * Couleur principale : #2563eb
 * Breakpoints : 480 | 768 | 900 | 1024 | 1200
 */

/* ═══════════════════════════════════
   VARIABLES
═══════════════════════════════════ */
:root {
  --blue:        #2563eb;
  --blue-dark:   #1d4ed8;
  --blue-deeper: #1e3a8a;
  --blue-light:  #eff6ff;
  --blue-muted:  #dbeafe;

  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50:  #f8fafc;
  --white:    #ffffff;

  --success: #10b981;
  --warning: #f59e0b;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 12px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.1),  0 4px 12px rgba(0,0,0,.05);

  --border: 1px solid #e5e7eb;

  --transition: all .2s ease;

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Alias legacy (inline styles) */
  --primary-blue:    #2563eb;
  --dark-blue:       #1d4ed8;
  --light-blue:      #93c5fd;
  --tech-gray:       #374151;
  --light-gray:      #f8fafc;
  --white:           #ffffff;
  --accent-green:    #10b981;
  --border-radius:   12px;
  --border-radius-lg:16px;
  --border-radius-xl:24px;
  --gradient-primary:linear-gradient(135deg, #2563eb, #1e40af);
  --transition:      all .2s ease;
  --space-4: 1rem; --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem;

  --max-w: 1160px;
  --section-pad: 5rem 5%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--gray-50);
  overflow-x: clip;
  -webkit-overflow-scrolling: touch;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ═══════════════════════════════════
   TYPOGRAPHIE
═══════════════════════════════════ */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  color: var(--gray-900);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4.5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem,  3vw,  2.25rem); }
h3 { font-size: clamp(1.1rem,  2vw,  1.4rem); }

p  { color: var(--gray-500); }

strong { color: var(--gray-900); font-weight: 600; }

/* ═══════════════════════════════════
   UTILITAIRES
═══════════════════════════════════ */
.section {
  padding: var(--section-pad);
}

.section--muted {
  background: var(--white);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5%;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title h2 {
  margin-bottom: .6rem;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════
   BOUTON CTA
═══════════════════════════════════ */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: var(--blue);
  color: var(--white) !important;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,99,235,.3);
}

.cta-button:active {
  transform: translateY(0);
}

.secondary-button {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,.6);
}

.secondary-button:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  box-shadow: none;
}

.white-text { color: var(--white) !important; }

/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  background: var(--white);
  border-bottom: var(--border);
  box-shadow: var(--shadow-xs);
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.logo i {
  font-size: 1.4rem;
  color: var(--blue);
}

.logo h1 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.3px;
}

.logo h1 span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: .25rem;
  align-items: center;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: .4rem .65rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-links .cta-button {
  font-size: .8rem;
  padding: .5rem 1rem;
  margin-left: .25rem;
}

.nav-links .cta-button:hover {
  background: var(--blue-dark);
  color: var(--white) !important;
}

/* NAV LINKS — suppression du pseudo-element ::after parasite */
.nav-links a.cta-button::after { display: none !important; }

/* Hamburger — classe HTML : mobile-menu-btn */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--gray-700);
  padding: .5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu-btn:hover { background: var(--gray-100); }

/* Overlay nav */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 998;
  opacity: 0;
  transition: opacity .3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 5% 4rem;
  background: linear-gradient(150deg, var(--blue-deeper) 0%, var(--blue) 60%, #3b82f6 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 64px;
}

/* Motif géométrique discret */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255,255,255,.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(30,58,138,.3) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -.5px;
}

.hero-kw-sep {
  opacity: .35;
  font-size: .55em;
  vertical-align: middle;
  margin: 0 .4rem;
  font-weight: 400;
}

/* Sous-titre hero */
.hero-appointment {
  display: inline-flex;
  flex-direction: column;
  gap: .25rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: .75rem 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(6px);
}

.hero-appointment__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.hero-appointment__subtitle {
  font-size: .875rem;
  color: rgba(255,255,255,.8);
}

/* Boutons hero */
.hero-buttons {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-primary-cta {
  background: var(--white);
  color: var(--blue) !important;
  font-size: 1rem;
  padding: .875rem 2rem;
}

.hero-primary-cta:hover {
  background: var(--gray-100);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.hero-buttons .secondary-button {
  font-size: 1rem;
  padding: .875rem 2rem;
}

/* Points forts */
.hero-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  list-style: none;
}

.hero-highlights__item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  color: rgba(255,255,255,.85);
}

.hero-highlights__item i {
  color: #4ade80;
  font-size: .9rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 6rem 5% 3rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-primary-cta,
  .hero-buttons .secondary-button {
    width: 100%;
  }
}

/* ═══════════════════════════════════
   TRUST BAR
═══════════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-bottom: var(--border);
}

.trust-bar__inner {
  display: flex;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5%;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.25rem;
  flex: 1;
  border-right: var(--border);
  font-size: .85rem;
  color: var(--gray-700);
}

.trust-bar__item:last-child { border-right: none; }

.trust-bar__item i {
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
}

.trust-bar__item strong { color: var(--blue); }

@media (max-width: 900px) {
  .trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar__item {
    border-right: none;
    border-bottom: var(--border);
    justify-content: center;
  }

  .trust-bar__item:nth-child(odd)  { border-right: var(--border); }
  .trust-bar__item:nth-child(3),
  .trust-bar__item:nth-child(4)    { border-bottom: none; }
}

@media (max-width: 480px) {
  .trust-bar__inner { grid-template-columns: 1fr; }
  .trust-bar__item  { border-right: none !important; justify-content: flex-start; }
  .trust-bar__item:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
#about { background: var(--white); }

.about-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Photo carte moderne */
.about-image-container {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.profile-image {
  width: 220px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: var(--border);
}

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

.social-links {
  display: flex;
  gap: .6rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  font-size: .95rem;
  transition: var(--transition);
  border: var(--border);
}

.social-link:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* Texte about */
.about-text-container { flex: 1; }

.about-intro h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--gray-900);
}

.wave { display: inline-block; }

.description-card {
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.description-card p {
  margin-bottom: .85rem;
  line-height: 1.75;
}

.description-card p:last-child { margin-bottom: 0; }

.about-cta { margin-top: 1.5rem; }

@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .profile-image {
    width: 180px;
    height: 230px;
  }

  .about-text-container { text-align: left; }
  .about-intro h3 { text-align: center; }
}

@media (max-width: 480px) {
  .profile-image { width: 150px; height: 190px; }
  .description-card { padding: 1rem; }
}

/* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
#services { background: var(--gray-50); }

.notice-card {
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
  padding: 1rem 1.5rem;
  background: var(--blue-light);
  border: 1px solid var(--blue-muted);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  align-items: center;
}

.notice-card__title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}

.notice-card__title i { margin-right: .35rem; }

.notice-card__lead {
  font-size: .9rem;
  color: var(--gray-700);
}

.notice-card__text {
  font-size: .85rem;
  color: var(--gray-500);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--blue-muted);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon i {
  font-size: 1.2rem;
  color: var(--blue);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .6rem;
}

.service-card p {
  font-size: .875rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-card .cta-button {
  align-self: flex-start;
  font-size: .8rem;
  padding: .5rem 1.1rem;
  background: transparent;
  color: var(--blue) !important;
  border: 1.5px solid var(--blue);
}

.service-card .cta-button:hover {
  background: var(--blue);
  color: var(--white) !important;
  box-shadow: none;
  transform: none;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card  { padding: 1.5rem; }
}

/* ═══════════════════════════════════
   CONFIGS PC / CAROUSEL
═══════════════════════════════════ */
.pc-configs { background: var(--white); }

.carousel-wrapper {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel {
  display: flex;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.config-card {
  min-width: calc((100% - 40px) / 3);  /* 3 per view, 2 gaps of 20px */
  flex-shrink: 0;
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

@media (max-width: 1024px) {
  .config-card { min-width: calc((100% - 20px) / 2); }  /* 2 per view */
}

@media (max-width: 768px) {
  .config-card { min-width: 100%; }  /* 1 per view */
}

.config-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.config-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
}

.config-card-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

.config-description {
  background: var(--white);
  border-left: 3px solid var(--blue);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.config-description strong { color: var(--blue); }

.config-components-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.config-components-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: var(--border);
  background: var(--gray-50);
  transition: var(--transition);
}

.config-components-gallery img:hover {
  border-color: var(--blue-muted);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.config-card .cta-button {
  align-self: flex-start;
}

/* Alias classes HTML réelles du carousel */
.config-carousel-container { position: relative; overflow: hidden; border-radius: var(--radius-lg); }

.config-carousel {
  display: flex;
  gap: 20px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

@media (max-width: 768px) {
  /* Section pleine largeur sur mobile pour que les cartes remplissent l'écran */
  .pc-configs {
    padding-left: 0;
    padding-right: 0;
  }
  .pc-configs .section-title {
    padding: 0 5%;
  }
  /* Carrousel : pas de gap, cartes pleine largeur */
  .config-carousel-container {
    border-radius: 0;
  }
  .config-carousel {
    gap: 0;
  }
  .config-card {
    min-width: 100%;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 1.5rem 1.25rem;
  }
}

.config-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue);
  margin: .5rem 0 1rem;
}

.config-specs ul {
  list-style: none;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.config-specs ul li {
  padding: .45rem 0;
  font-size: .875rem;
  color: var(--gray-700);
  border-bottom: var(--border);
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.config-specs ul li:last-child { border-bottom: none; }

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transition: var(--transition);
  color: var(--gray-700);
  font-size: .9rem;
}

.carousel-button:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.carousel-button.prev { left: 12px; }
.carousel-button.next { right: 12px; }

@media (max-width: 768px) {
  .carousel-button { display: none; }
}

/* Nav carousel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transition: var(--transition);
  color: var(--gray-700);
  font-size: .9rem;
}

.carousel-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.25rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--blue);
  width: 20px;
  border-radius: 4px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
  display: inline-block;
}

.carousel-dots .dot.active {
  background: var(--blue);
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .config-card { padding: 1.5rem; }
  .config-components-gallery { grid-template-columns: repeat(2, 1fr); }
  .carousel-btn { display: none; }
}

/* ═══════════════════════════════════
   MINI CONFIG CARDS
═══════════════════════════════════ */
.mini-config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: var(--max-w);
  margin: 2rem auto 0;
}

.mini-config-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.mini-config-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.mini-config-card.active {
  border-color: var(--blue);
  background: var(--blue-light);
}

.mini-config-card h4 {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: .25rem;
}

.mini-config-card .mini-price {
  font-size: .8rem;
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 600px) {
  .mini-config-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════
   GAMING PACKAGES
═══════════════════════════════════ */
.gaming-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 2.5rem auto;
}

.gaming-package {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.gaming-package:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.gaming-package.elite {
  border-color: var(--blue);
  border-width: 2px;
  z-index: 2;
}

.gaming-package.elite::before {
  content: "RECOMMANDÉ";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  padding: .25rem 1rem;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.gaming-package.starter { border-color: var(--success); }
.gaming-package.ultime  { border-color: var(--blue-dark); }

.package-header { margin-bottom: 1.5rem; }

.package-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-bottom: .75rem;
}

.gaming-package.starter .package-header h3,
.gaming-package.starter .package-price { color: var(--success); }

.gaming-package.elite .package-header h3,
.gaming-package.elite .package-price   { color: var(--blue); }

.gaming-package.ultime .package-header h3,
.gaming-package.ultime .package-price  { color: var(--blue-dark); }

.package-price {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.package-features {
  margin-bottom: 1.5rem;
  text-align: left;
}

.package-features ul { list-style: none; }

.package-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 0;
  font-size: .875rem;
  color: var(--gray-700);
  border-bottom: var(--border);
}

.package-features li:last-child { border-bottom: none; }

.package-features li i { color: var(--success); font-size: .85rem; flex-shrink: 0; }

.gaming-package .cta-button {
  width: 100%;
  justify-content: center;
  font-size: .875rem;
}

@media (max-width: 900px) {
  .gaming-packages {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

/* ═══════════════════════════════════
   DEVIS GRATUIT SECTION (dans configs)
═══════════════════════════════════ */
.devis-gratuit-section {
  background: var(--blue-light);
  border: 1px solid var(--blue-muted);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  margin: 2rem 0;
}

.devis-title { text-align: center; margin-bottom: 2rem; }

.devis-title h2 {
  color: var(--blue);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: .75rem;
}

.devis-title p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--blue-dark);
}

.devis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.devis-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.devis-card:hover { box-shadow: var(--shadow-sm); }

.devis-card h3 {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .75rem;
}

.devis-card p, .devis-card li {
  font-size: .875rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.devis-card ul { list-style: none; }

.devis-card li {
  padding: .2rem 0;
}

.devis-cta-button {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  padding: .6rem 1.25rem;
  background: var(--blue);
  color: var(--white) !important;
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.devis-cta-button:hover { background: var(--blue-dark); transform: translateY(-1px); }

@media (max-width: 768px) {
  .devis-gratuit-section { padding: 2rem 1.25rem; }
}

/* ═══════════════════════════════════
   RÉALISATIONS
═══════════════════════════════════ */
#realisations { background: var(--white); }

/* Carousel images (réalisations) */
.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--gray-900);
}

.carousel-container .carousel {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}

.carousel-container .carousel img {
  min-width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carousel-container .carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.9);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: var(--transition);
  color: var(--gray-700);
  font-size: .95rem;
}

.carousel-container .carousel-button:hover {
  background: var(--white);
  color: var(--blue);
}

.carousel-container .carousel-button.prev { left: 16px; }
.carousel-container .carousel-button.next { right: 16px; }

.carousel-container .carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .4rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--white);
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .carousel-container .carousel img { height: 260px; }
  .carousel-container .carousel-button { width: 36px; height: 36px; font-size: .8rem; }
}

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
#faq { background: var(--white); padding: 5rem 5%; }

.faq-section {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--blue-muted);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.1rem 1.25rem;
  background: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover { background: var(--gray-50); }

.faq-item.active .faq-question { background: var(--blue-light); }

.faq-question h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
}

.faq-question i {
  color: var(--blue);
  font-size: .85rem;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  background: var(--white);
}

.faq-answer.active {
  max-height: 1000px;
  padding: 1.25rem;
}

.faq-answer p  { font-size: .9rem; line-height: 1.7; color: var(--gray-700); margin-bottom: .5rem; }
.faq-answer ul { padding-left: 1.25rem; margin: .5rem 0; }
.faq-answer li { font-size: .875rem; color: var(--gray-700); margin-bottom: .3rem; line-height: 1.5; }

.faq-cta-link {
  color: var(--blue);
  font-weight: 500;
  font-size: .875rem;
  display: inline-block;
  margin-top: .5rem;
  transition: var(--transition);
}

.faq-cta-link:hover { color: var(--blue-dark); text-decoration: underline; }

@media (max-width: 768px) {
  .faq-question h3 { font-size: .875rem; }
}

/* ═══════════════════════════════════
   RÉCUPÉRATION MATÉRIEL
═══════════════════════════════════ */
#recuperation-materiel { background: var(--gray-50); }

.section-subtitle {
  max-width: 680px;
  margin: .5rem auto 0;
  text-align: center;
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.form-toggle-container {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.form-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: .75rem;
}

.form-toggle-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }

.form-toggle-text { font-size: .85rem; color: var(--gray-500); }

.form-container {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: var(--border);
}

.form-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.form-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-500);
  font-size: 1rem;
  padding: .25rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.form-close-btn:hover { background: var(--gray-100); color: var(--gray-900); }

.form-section {
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-section h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.form-section h4 i { color: var(--blue); }

.recuperation-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  border: var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ═══════════════════════════════════
   COORDONNÉES
═══════════════════════════════════ */
#coordonnees { background: var(--white); }

.contact-info-standalone {
  max-width: 680px;
  margin: 0 auto;
}

.contact-details { margin-bottom: 1.5rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius);
  margin-bottom: .6rem;
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--blue-muted);
  background: var(--blue-light);
  transform: translateX(3px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i { color: var(--blue); font-size: 1rem; }

.contact-item p {
  margin: 0;
  color: var(--gray-700);
  font-size: .875rem;
}

.contact-item p:first-child {
  font-weight: 600;
  font-size: .8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .1rem;
}

#map {
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border);
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════
   FORMULAIRE CONTACT
═══════════════════════════════════ */
#contact { background: var(--gray-50); }

.contact-form-standalone {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--gray-900);
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-standalone { padding: 1.5rem 1rem; }
}

.form-group input[type="file"] {
  background: var(--white);
  cursor: pointer;
  font-size: .85rem;
  padding: .5rem .75rem;
}

.file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}

.form-section-materiel {
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

/* Bouton submit */
#contactForm button[type="submit"] {
  width: 100%;
  padding: .875rem;
  font-size: 1rem;
  margin-top: .5rem;
}

/* Messages */
#formMessage .alert {
  padding: .875rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  text-align: center;
  margin-top: 1rem;
}

.alert-success {
  background: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #ef4444;
  color: #991b1b;
}

/* ═══════════════════════════════════
   SERVICE / CONFIG DETAIL
═══════════════════════════════════ */
.service-detail-section,
.config-detail-section {
  background: var(--white);
  max-width: 900px;
  margin: 2rem auto;
  border-radius: var(--radius-xl);
  border: var(--border);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  display: none;
}

.service-header,
.config-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: var(--border);
}

.service-icon-large,
.config-icon-large {
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: .75rem;
}

.service-header h2,
.config-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: .5rem;
}

.config-detail-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-pricing,
.service-description {
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.service-pricing h3,
.service-description h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.config-spec-list {
  list-style: none;
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.config-spec-list li {
  padding: .6rem .75rem;
  font-size: .9rem;
  color: var(--gray-700);
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  gap: .6rem;
}

.config-spec-list li:last-child { border-bottom: none; }

.config-back-button {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.25rem;
  font-size: .875rem;
  font-weight: 500;
  border: var(--border);
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.config-back-button:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}

@media (max-width: 768px) {
  .service-detail-section,
  .config-detail-section {
    padding: 1.75rem 1.25rem;
    margin: 1rem;
    border-radius: var(--radius-lg);
  }

  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer-new {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
  padding: 4rem 5% 2rem;
  width: 100%;
}

.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.footer-logo i { font-size: 1.4rem; color: var(--blue); }

.footer-logo h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.footer-description {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
}

.footer-social {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-section h4 {
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.footer-section ul { list-style: none; }

.footer-section li {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .5rem;
}

.footer-section a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}

.footer-section a:hover { color: var(--white); }

.footer-section i {
  font-size: .75rem;
  color: var(--blue);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  align-items: center;
}

.footer-legal span,
.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

.footer-legal a:hover { color: rgba(255,255,255,.7); }

.footer-legal span { display: flex; align-items: center; gap: .4rem; }

.footer-hero {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: rgba(255,255,255,.25);
}

@media (max-width: 1024px) {
  .footer-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .footer-links { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-new { padding: 3rem 5% 2rem; }
}

/* ═══════════════════════════════════
   MOBILE CTA BAR (fixe bas)
═══════════════════════════════════ */
.mobile-cta-bar { display: none; }

@media (max-width: 900px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9000;
    height: 56px;
    box-shadow: 0 -2px 12px rgba(0,0,0,.1);
  }

  .mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .875rem;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
    transition: var(--transition);
  }

  .mobile-cta-bar__call  { background: #16a34a; }
  .mobile-cta-bar__devis { background: var(--blue); }

  .mobile-cta-bar__call:hover  { background: #15803d; }
  .mobile-cta-bar__devis:hover { background: var(--blue-dark); }

  body { padding-bottom: 56px; }
}

/* ═══════════════════════════════════
   RESPONSIVE NAV MOBILE
═══════════════════════════════════ */
@media (max-width: 900px) {
  .mobile-menu-btn { display: block; }

  /* Le ul#navLinks devient un drawer latéral */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; right: 0;
    width: 78vw;
    max-width: 300px;
    height: calc(100vh - 64px);
    background: var(--white);
    padding: 1.25rem 1rem;
    box-shadow: -4px 0 24px rgba(0,0,0,.1);
    overflow-y: auto;
    z-index: 999;
    transform: translateX(100%);
    transition: transform .3s ease, visibility .3s ease;
    gap: .25rem;
    border-left: var(--border);
    pointer-events: none;
    visibility: hidden;
  }

  .nav-links.active {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: .75rem 1rem;
    font-size: .95rem;
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .nav-links .cta-button {
    margin-top: .5rem;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ═══════════════════════════════════
   ANIMATIONS
═══════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════
   MODALES
═══════════════════════════════════ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay { display: none; }

.modal-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal-body { max-height: 60vh; overflow-y: auto; }

.modal-actions {
  display: flex;
  gap: .75rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  padding: .6rem 1.25rem;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover { background: var(--blue-dark); }

.btn-secondary {
  padding: .6rem 1.25rem;
  background: var(--white);
  color: var(--gray-700);
  border: var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover { background: var(--gray-100); }

/* ═══════════════════════════════════
   PAGE PADDING (navbar fixe)
═══════════════════════════════════ */
header + * { margin-top: 64px; }

/* Toutes les sections ont un scroll-margin pour la navbar fixe */
section[id] { scroll-margin-top: 80px; }

/* Wrapper principal */
.main-content { width: 100%; overflow-x: hidden; }

/* Stock notice */
.stock-notice {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: var(--radius);
  padding: .875rem 1.25rem;
  font-size: .875rem;
  color: #92400e;
  margin-bottom: 1.5rem;
}

.stock-notice i { color: #f59e0b; flex-shrink: 0; }

/* ═══════════════════════════════════
   MISC
═══════════════════════════════════ */
.highlight-text { color: var(--gray-300) !important; }

.scroll-margin { scroll-margin-top: 80px; }

/* Stats / chiffres clés */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.stat-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.stat-card strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue);
}

.stat-card span {
  font-size: .8rem;
  color: var(--gray-500);
}

/* Suivi form */
.suivi-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .suivi-form { grid-template-columns: 1fr; }
  .recuperation-tabs { flex-direction: column; }
  .tab-btn { justify-content: center; }
}

/* ═══════════════════════════════════
   PRINT
═══════════════════════════════════ */
@media print {
  .navbar, .mobile-cta-bar, .hamburger, .mobile-menu, .nav-overlay { display: none !important; }
  body { padding: 0 !important; }
  .hero { min-height: auto; }
}
