/* Style principal : site vitrine dynamique orienté prestations */
:root {
  --bg: #081022;
  --surface: #ffffff;
  --surface-soft: #f3f6ff;
  --ink: #172033;
  --muted: #5d6b86;
  --primary: #2563ff;
  --primary-strong: #1242c0;
  --accent: #00c2ff;
  --line: #d8e2ff;
  --shadow: 0 16px 36px rgba(8, 16, 34, 0.16);
  --radius: 16px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #edf2ff 0%, #f7f9ff 35%, #f5f7fb 100%);
  line-height: 1.6;
}

.container { width: min(1200px, 92%); margin-inline: auto; }
.section { padding: 5rem 0; }
.section-alt { background: linear-gradient(180deg, #eff4ff 0%, #f7f9ff 100%); }

.kicker {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  background: rgba(37, 99, 255, 0.08);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 255, 0.2);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 16, 34, 0.84);
  backdrop-filter: blur(10px);
}

.header-container {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.15;
  font-size: 1rem;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span { height: 2px; width: 60%; margin-inline: auto; background: #fff; }

.nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: 0.25s ease;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 0.55rem;
  border-radius: 8px;
  font-weight: 700;
}

.nav a:hover { background: var(--surface-soft); }
.nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.header-cta { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 4.8rem);
  padding-bottom: 4.5rem;
  color: #fff;
  background: radial-gradient(circle at 20% 15%, #2e66ff 0%, #0b1a3d 52%, #081022 100%);
}

.hero-ac {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 4.8rem);
  padding-bottom: 4.5rem;
  color: #fff;
  background: radial-gradient(circle at 20% 15%, #2e66ff 0%, #0b1a3d 52%, #081022 100%);
  min-height: 100vh; /* Ajoute cette ligne pour forcer la hauteur minimale à 100% de la fenêtre */
  display: flex;
  align-items: center; /* Optionnel : pour centrer verticalement le contenu */
}

.deco-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 194, 255, 0.18) 0, transparent 40%),
    radial-gradient(circle at 15% 80%, rgba(37, 99, 255, 0.26) 0, transparent 45%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem !important; /* Espacement entre les colonnes */
  align-items: center;
}

.hero-content, .hero-panel {
  margin: 0; /* Pas de marges supplémentaires */
}

.hero-content h1 {
  margin: 0 0 1rem;
  line-height: 1.14;
  font-size: clamp(2.5rem, 6vw, 4.45rem);
}

.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #5ea3ff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes slowSpin { to { transform: rotate(360deg); } }

.eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  flex-shrink: 0;
}

.eyebrow {
  color: #9dc0ff;
  font-weight: 600;
  font-size: 0.82rem;
  margin: 0;
}

.subtitle { margin: 0 0 1.2rem; color: #d4e2ff; max-width: 67ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1rem; }
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-pills span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #dae8ff;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.hero-panel {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.2rem;
  backdrop-filter: blur(8px);
}

.hero-panel h2 { margin-top: 0; font-size: 1.2rem; }
.hero-panel ul { margin: 0 0 1rem; padding-left: 1rem; color: #d6e4ff; }

.panel-actions {
  display: grid;
  gap: 0.6rem;
}

.ticket-hero {
  padding-bottom: 2.4rem;
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 1.6rem 0;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.trust-number {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.trust-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 0.1rem;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
  flex-shrink: 0;
}

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(145deg, var(--primary) 0%, #2f7dff 100%); color: #fff; box-shadow: 0 10px 22px rgba(37, 99, 255, 0.35); }
.btn-primary:hover { background: linear-gradient(145deg, var(--primary-strong) 0%, #2563ff 100%); }
.btn-secondary { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.5); }
.btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.35); }
.full { width: 100%; }

/* ── SECTION HEADING ────────────────────────────────── */
.section-heading { max-width: 680px; margin-bottom: 2.5rem; }
.section-heading h2 {
  margin: 0.4rem 0 0.6rem;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
}
.section-heading p { margin: 0; color: var(--muted); }

.services-grid { display: grid; gap: 1rem; }

.card, .product-card, .about, .contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card {
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 255, 0.3);
}

.card::after {
  content: '';
  position: absolute;
  inset: auto -40px -60px auto;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,255,0.1), transparent 70%);
  pointer-events: none;
}

.card-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, #dce8ff, #eef3ff);
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.card-badge {
  display: none; /* On garde seulement les icônes */
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.card p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

.card-highlight {
  border-color: rgba(37, 99, 255, 0.35);
  background: linear-gradient(165deg, #f0f5ff 0%, #fff 100%);
}

.card-cta-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.88rem;
  transition: gap 0.2s;
}
.card-cta-link:hover { text-decoration: underline; }

.product-card { overflow: hidden; }
.product-image {
  min-height: 160px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1rem;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #1d4fd8 0%, #00a7ff 100%);
}
.product-content { padding: 1.1rem; }
.product-content h3 { margin-top: 0; }
.product-content ul { margin: 0 0 1rem; padding-left: 1rem; color: var(--muted); }
.price { margin: 0 0 .9rem; font-weight: 900; font-size: 1.3rem; }

.about-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about { 
  padding: 1.5rem;
  text-align: justify;
 }
.about h2 { margin-top: 0; }

/* ── TICKET LAYOUT ──────────────────────────────────── */
.ticket-layout {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.ticket-info,
.ticket-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.ticket-info h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.ticket-info p {
  margin: 0; /* Suppression des marges */
}

.ticket-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0; /* Suppression des marges */
  padding: 0; /* Suppression des paddings */
}

.ticket-info ul li::before {
  content: "→ ";
  color: var(--primary);
  font-weight: 700;
}

.ticket-form {
  display: grid;
  gap: .75rem;
}

.ticket-grid {
  display: grid;
  gap: .75rem;
}

.ticket-form label { font-weight: 700; font-size: 0.88rem; }

.ticket-form input,
.ticket-form select,
.ticket-form textarea {
  width: 100%;
  font: inherit;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 0.75rem 1rem;
  background: #f8faff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ticket-form input:focus,
.ticket-form select:focus,
.ticket-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.12);
  background: #fff;
}

.ticket-feedback {
  margin: .2rem 0 0;
  font-weight: 600;
  color: var(--primary-strong);
  font-size: 0.88rem;
}

.contact-grid { display: grid; gap: 1.5rem; }

.contact-info { padding: 0; }
.contact-info h2 {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
}
.contact-info > p { color: var(--muted); margin-bottom: 1.2rem; }

.contact-details { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.2rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(37, 99, 255, 0.08);
  color: var(--primary);
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin: 0 0 0.1rem;
}

.contact-val {
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
.contact-form label { font-weight: 700; font-size: 0.88rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 0.75rem 1rem;
  background: #f8faff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.12);
  background: #fff;
}

.hero .container { position: relative; }


/* ── ABOUT (M-PC page) ──────────────────────────────── */
.about {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.about h2 {
  font-family: 'Syne', sans-serif;
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
}

.about p { color: var(--muted); margin-bottom: 0.7rem; }
.about p:last-child { margin-bottom: 0; }

.simple-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--muted);
  padding: 0;
}

.simple-list li {
  padding-left: 1.2rem;
  position: relative;
}

.simple-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

ol.simple-list { counter-reset: steps; }
ol.simple-list li { counter-increment: steps; }
ol.simple-list li::before {
  content: counter(steps) '.';
  color: var(--primary);
  font-weight: 800;
  font-family: 'Syne', sans-serif;
}

.note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  padding: 0.5rem 0.7rem;
  background: rgba(37, 99, 255, 0.05);
  border-left: 2px solid rgba(37, 99, 255, 0.3);
  border-radius: 0 6px 6px 0;
}

.components-svg {
  width: 100%;
  max-width: 260px; /* Largeur maximale du SVG */
  height: auto; /* Hauteur ajustée automatiquement */
}

/* Ajoute cette classe pour le conteneur des SVG */
.mpc-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.mpc-intro-layout {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
   align-items: center;
}

/* Le conteneur devient totalement invisible */
.illustration-container {
    width: 340px;  /* Augmenté (était à 260px) pour donner plus de largeur */
    height: 340px;;
    margin-left: auto;
    background: transparent !important; /* Force la transparence totale */
    box-shadow: none !important; /* Supprime l'ombre pour éviter un effet de cadre noir */
    overflow: visible; /* Évite que le bras du micro ne soit coupé */
}

/* L'image s'ajuste proprement au milieu */
.img-service {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ajuste le setup sans l'écraser ni le couper */
    background: transparent !important;
}

/* ── PROCESS ────────────────────────────────────────── */
.process-section { background: #fff; }

.process-steps {
  display: grid;
  gap: 1rem;
}


.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), #3f7fff);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(37, 99, 255, 0.3);
}

.step-connector {
  display: none;
}

.step-body {
  padding: 0.2rem 0;
  border-left: 2px solid var(--line);
  padding-left: 1.2rem;
  flex: 1;
  padding-bottom: 1.5rem;
}

.step-body.last { padding-bottom: 0; }

.step-body h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 0.3rem;
}

.step-body p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ── FOOTER ─────────────────────────────────────────── */
.site-footer {
  padding: 2rem 0;
  color: #a0b4cc;
  background: #070f20;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}

.footer-link {
  color: #7a90ae;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-link:hover { color: #fff; }

.footer-copy {
  font-size: 0.8rem;
  color: #4a5e74;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

.pc-svg {
  display: block;
  margin: 1rem auto; /* Centre l'image avec une marge */
  max-width: 220px;
}

/* Style pour la section d'upload de fichier */
.file-upload-container {
  margin-bottom: 0.75rem;
}

.file-upload-label {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: rgba(37, 99, 255, 0.03);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.file-upload-label:hover {
  background: rgba(37, 99, 255, 0.08);
  border-color: var(--primary);
}

.file-upload-label span {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.file-upload-input {
  display: none; /* Masque le champ natif */
}

.file-upload-hint {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}


@media (min-width: 850px) {
  .menu-toggle { display: none; }
  .nav {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
  }
  .nav a { color: #dbe6ff; }
  .nav a:hover { background: rgba(255,255,255,.12); }
  .header-cta { display: inline-flex; }

  .hero-grid { grid-template-columns: 1.4fr 1fr; align-items: center; gap: 1.5rem; }
  .services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .products-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .ticket-layout { grid-template-columns: 0.95fr 1.25fr; }
  .ticket-grid { grid-template-columns: 1fr 1fr; }
  .faq-ticket-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-content { flex-direction: row; align-items: center; justify-content: space-between; }
}

.faq-ticket-grid {
  display: grid;
  gap: 0.8rem;
}

.faq-ticket-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  border: 1px solid rgba(0, 106, 255, 0.78);
  border-radius: 14px;
  background: linear-gradient(165deg, #10151f 0%, #0d131b 58%, #0a0f17 100%);
  box-shadow: 0 10px 24px rgba(6, 12, 22, 0.35);
  padding: 0.9rem 1rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-ticket-card::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  right: -55px;
  bottom: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 106, 255, 0.35), rgba(0, 106, 255, 0));
}

.faq-ticket-card:hover {
  transform: translateY(-3px);
  border-color: rgba(63, 147, 255, 0.95);
  box-shadow: 0 16px 30px rgba(4, 10, 20, 0.48);
}

.faq-ticket-badge {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 28px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  color: #5ca0ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.faq-ticket-card h3 {
  margin: 0.8rem 0 0.55rem;
  color: #f5f8ff;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.35;
}

.faq-ticket-card p {
  margin: 0;
  color: #d4deee;
  font-size: 0.98rem;
  line-height: 1.55;
}

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1A2E;
  color: #FAF6F1;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie__texte {
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie__texte a {
  color: #185FA5;
  text-decoration: underline;
}

.cookie__btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-accepter, .btn-refuser {
  padding: 10px 24px;
  border-radius: 4px;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-accepter {
  background: #185FA5;
  color: white;
}

.btn-refuser {
  background: transparent;
  color: #FAF6F1;
  border: 1px solid rgba(250,246,241,0.4);
}

.btn-accepter:hover, .btn-refuser:hover {
  opacity: 0.85;
}

@media (max-width: 600px) {
  .cookie__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie__btns {
    width: 100%;
  }
  .btn-accepter, .btn-refuser {
    flex: 1;
  }
}

/* ── MEDIA QUERIES ──────────────────────────────────────────────────────────────────────────────────────────────────────────────── */

@media (max-width: 639px) {
  /* Mobile */
  .container {
    width: min(100%, 92%);
  }

  .hero-grid,
  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .hero-actions,
  .hero-pills {
    flex-direction: column;
    align-items: stretch;
  }

  .ticket-layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 640px) and (max-width: 849px) {
  /* Tablette */
  .faq-ticket-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 640px) {
  /* Desktop */
  .process-steps {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    justify-content: center;
    padding-bottom: 1rem;
    width: 100%;
  }

  .process-step {
    flex: 0 0 auto;
    width: 270px;
  }

  .hero-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 1.5rem;
  }

  .services-grid,
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ticket-layout {
    grid-template-columns: 0.95fr 1.25fr;
  }

  .ticket-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-ticket-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
  }

  .nav a {
    color: #dbe6ff;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .header-cta {
    display: inline-flex;
  }
}

/* Masquer les SVG sur mobile */
@media (max-width: 639px) {
  .mpc-intro-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .mpc-illustration {
    display: none; /* Masquer les SVG sur mobile */
  }
}

@media (min-width: 640px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .step-body {
    border-left: 0;
    border-top: 2px solid var(--line);
    padding-left: 0;
    padding-top: 1rem;
    padding-bottom: 0;
  }
}