/* ═══════════════════════════════════════════════════
   PARTIFINN — ULTRA PRO DESIGN SYSTEM
   Navy + Gold | DM Sans + Playfair Display
   ═══════════════════════════════════════════════════ */

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

:root {
  --navy:      #0b1b3a;
  --navy2:     #0e2250;
  --navy3:     #071228;
  --blue:      #0a66ff;
  --blue2:     #1a7fff;
  --blue-glow: rgba(10,102,255,.35);
  --gold:      #f5c842;
  --gold2:     #e6b800;
  --gold-glow: rgba(245,200,66,.3);
  --white:     #ffffff;
  --offwhite:  #f4f7fe;
  --gray:      #8c9ab5;
  --text:      #1a2540;
  --border:    #e2e8f7;
  --radius:    14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(10,30,80,.08);
  --shadow:    0 8px 40px rgba(10,30,80,.12);
  --shadow-lg: 0 20px 60px rgba(10,30,80,.18);
  /* Nav height — utilisé partout pour positionner le menu mobile */
  --nav-h: 70px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--offwhite);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════════ */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900; line-height: 1.08;
  color: var(--white);
}
h1 em { color: var(--gold); font-style: normal; }
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 900; line-height: 1.18;
  color: var(--navy);
}
h2 em { color: var(--blue); font-style: normal; }
h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }

/* ══════════════════════════════════════════════════
   NAVIGATION — DESKTOP
══════════════════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: var(--nav-h);
  background: rgba(11,27,58,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245,200,66,.15);
  /* Transition pour l'ombre au scroll — activée via JS */
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.35); }

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--white); text-decoration: none; letter-spacing: -.5px;
  position: relative; z-index: 201; /* Toujours visible au-dessus du menu */
  flex-shrink: 0;
}
.logo span { color: var(--gold); }

/* ── LIENS DESKTOP ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  /* Pas de transition ici — comportement desktop normal */
}
.nav-links a {
  color: rgba(255,255,255,.7); text-decoration: none;
  font-size: .875rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white); background: rgba(255,255,255,.08);
}
.nav-links .nav-cta {
  background: var(--gold); color: var(--navy) !important;
  border-radius: 50px; padding: 9px 22px;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px var(--gold-glow);
  transition: transform .2s, box-shadow .2s, background .2s !important;
  margin-left: 4px;
}
.nav-links .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--gold-glow) !important;
  background: var(--gold2) !important;
}

/* ══════════════════════════════════════════════════
   HAMBURGER BUTTON — caché sur desktop
══════════════════════════════════════════════════ */
.hamburger {
  display: none;           /* Invisible sur desktop */
  position: relative;
  z-index: 201;            /* Au-dessus du menu overlay */
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  /* Taille touch-target Apple HIG minimum 44px */
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,.08); }

/* Les 3 barres — transformées en ✕ quand open */
.hamburger span {
  display: block;
  position: absolute;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  left: 50%; transform: translateX(-50%);
  /* Transition fluide pour l'animation ✕ */
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              opacity   .25s ease,
              top       .35s cubic-bezier(.4,0,.2,1);
}
/* Positions initiales des 3 barres */
.hamburger span:nth-child(1) { top: calc(50% - 7px); }
.hamburger span:nth-child(2) { top: calc(50% - 1px); }
.hamburger span:nth-child(3) { top: calc(50% + 5px); }

/* ── ÉTAT OUVERT : transformation en ✕ ── */
.hamburger.open span:nth-child(1) {
  top: calc(50% - 1px);
  transform: translateX(-50%) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}
.hamburger.open span:nth-child(3) {
  top: calc(50% - 1px);
  transform: translateX(-50%) rotate(-45deg);
}

/* ══════════════════════════════════════════════════
   MENU MOBILE — Animation slide-down + fade
══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Afficher le hamburger */
  .hamburger { display: inline-flex; }

  /* ── ÉTAT FERMÉ (par défaut) ── */
  .nav-links {
    /* Positionnement */
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    z-index: 199;

    /* Layout vertical */
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 16px 24px;

    /* Apparence */
    background: var(--navy3);
    border-bottom: 2px solid rgba(245,200,66,.2);
    box-shadow: 0 16px 48px rgba(0,0,0,.5);

    /* ─── ANIMATION : caché par défaut ─── */
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;           /* Non cliquable quand fermé */
    visibility: hidden;

    /* Transition slide + fade */
    transition:
      opacity    .3s cubic-bezier(.4,0,.2,1),
      transform  .3s cubic-bezier(.4,0,.2,1),
      visibility .3s;
  }

  /* ── ÉTAT OUVERT ── */
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    z-index: 10000;
  }

  /* Liens verticaux */
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: .92rem;
    border: 1px solid transparent;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.06);
  }

  /* Bouton CTA pleine largeur */
  .nav-links .nav-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin: 8px 0 0 0;
    padding: 14px 22px;
    border-radius: 12px !important;
  }

  /* Séparateur visuel avant le CTA */
  .nav-links li:last-child {
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 8px;
    margin-top: 4px;
  }
}

/* ══════════════════════════════════════════════════
   OVERLAY SOMBRE derrière le menu (optionnel mais pro)
══════════════════════════════════════════════════ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 198;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .3s ease;
}
.nav-overlay.visible {
  opacity: 1;
}
@media (max-width: 768px) {
  .nav-overlay { display: block; pointer-events: none; }
  .nav-overlay.visible { pointer-events: auto; }
}

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: var(--white);
  padding: 16px 34px; border-radius: 50px;
  text-decoration: none; font-size: 1rem; font-weight: 600;
  box-shadow: 0 8px 30px var(--blue-glow);
  transition: transform .2s, box-shadow .2s, background .2s;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(10,102,255,.5); background: var(--blue2); }
.btn-primary svg { transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  padding: 16px 34px; border-radius: 50px;
  text-decoration: none; font-size: 1rem; font-weight: 700;
  box-shadow: 0 8px 28px var(--gold-glow);
  transition: transform .2s, box-shadow .2s;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(245,200,66,.5); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  padding: 15px 30px; border-radius: 50px;
  text-decoration: none; font-size: .95rem; font-weight: 600;
  border: 2px solid rgba(255,255,255,.3);
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }

/* ══════════════════════════════════════════════════
   SECTION LABELS
══════════════════════════════════════════════════ */
.section-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue);
  background: rgba(10,102,255,.08);
  border: 1px solid rgba(10,102,255,.15);
  padding: 5px 14px; border-radius: 50px; margin-bottom: 16px;
}
.section-label.gold { color: var(--gold); background: rgba(245,200,66,.12); border-color: rgba(245,200,66,.25); }

/* ══════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; flex-wrap: wrap; justify-content: center;
}
.stat-item {
  flex: 1 1 150px; text-align: center;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2.1rem; font-weight: 900; color: var(--blue); line-height: 1.1;
}
.stat-item span { font-size: .8rem; color: var(--gray); }

/* Alias pour les pages service qui utilisent .stats / .stat */
.stats { background: var(--white); border-bottom: 1px solid var(--border); display: flex; flex-wrap: wrap; justify-content: center; }
.stat  { flex: 1 1 150px; text-align: center; padding: 24px 20px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 900; color: var(--blue); line-height: 1.1; }
.stat span   { font-size: .8rem; color: var(--gray); }

/* ══════════════════════════════════════════════════
   PAGE HERO (sous-pages)
══════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy2) 55%, #0d2e6e 100%);
  padding: 64px 5vw 54px; position: relative; overflow: hidden;
}
.page-hero::before {
  content:''; position:absolute; border-radius:50%;
  width:500px; height:500px;
  background: radial-gradient(circle,rgba(10,102,255,.14) 0%,transparent 70%);
  top:-150px; right:-100px; pointer-events:none;
}
.breadcrumb { font-size:.8rem; color:rgba(255,255,255,.4); margin-bottom:12px; }
.breadcrumb a { color:rgba(255,255,255,.4); text-decoration:none; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb span { color:var(--gold); }
.page-hero h1 { font-size:clamp(1.8rem,4vw,2.8rem); margin-bottom:14px; position:relative; z-index:1; }
.page-hero p { color:rgba(255,255,255,.68); font-size:1rem; font-weight:300; max-width:560px; line-height:1.7; position:relative; z-index:1; }

/* ══════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0a2060 100%);
  padding: 80px 5vw; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content:''; position:absolute; width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle,rgba(10,102,255,.18) 0%,transparent 70%);
  top:-200px; left:50%; transform:translateX(-50%); pointer-events:none;
}
.cta-band h2 { color:var(--white); margin-bottom:16px; }
.cta-band p { color:rgba(255,255,255,.65); max-width:520px; margin:0 auto 36px; font-weight:300; font-size:1rem; }

/* ══════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════ */
@keyframes float    { 0%,100%{transform:translateY(0)  rotate(0deg)} 33%{transform:translateY(-16px) rotate(1deg)} 66%{transform:translateY(-8px) rotate(-1deg)} }
@keyframes float2   { 0%,100%{transform:translateY(0)  rotate(0deg)} 50% {transform:translateY(-20px) rotate(-2deg)} }
@keyframes float3   { 0%,100%{transform:translateY(-5px)} 50%{transform:translateY(10px)} }
@keyframes floatOrb { 0%,100%{transform:scale(1) translate(0,0);opacity:.6} 50%{transform:scale(1.1) translate(10px,-10px);opacity:.8} }
@keyframes spin-slow    { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes fadeUp       { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse        { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
@keyframes shimmer      { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
@keyframes slideRight   { from{width:0} to{width:100%} }
@keyframes pingOnce     { 0%{transform:scale(1);opacity:1} 100%{transform:scale(2.5);opacity:0} }

.float-1  { animation: float    6s ease-in-out infinite; }
.float-2  { animation: float2   8s ease-in-out infinite; }
.float-3  { animation: float3   4s ease-in-out infinite; }
.float-orb{ animation: floatOrb 7s ease-in-out infinite; }

/* ── REVEAL ANIMATIONS ── */
.reveal       { opacity:0; transform:translateY(24px);  transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left  { opacity:0; transform:translateX(-30px); transition:opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(30px);  transition:opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer {
  background: var(--navy3);
  padding: 64px 5vw 32px;
  color: rgba(255,255,255,.45);
  border-top: 1px solid rgba(245,200,66,.1);
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:44px; margin-bottom:48px; }
.footer-brand .logo { display:block; margin-bottom:14px; font-size:1.4rem; }
.footer-brand p { font-size:.84rem; line-height:1.75; color:rgba(255,255,255,.38); max-width:270px; }
.footer-col h4 {
  font-family:'Playfair Display',serif; font-size:.92rem;
  color:var(--white); font-weight:700; margin-bottom:18px;
  padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,.07);
}
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:9px; }
.footer-col ul li a { color:rgba(255,255,255,.42); text-decoration:none; font-size:.84rem; transition:color .2s; }
.footer-col ul li a:hover { color:var(--gold); }
.footer-ci { display:flex; align-items:flex-start; gap:10px; margin-bottom:13px; font-size:.83rem; color:rgba(255,255,255,.42); }
.footer-ci svg { color:var(--gold); flex-shrink:0; margin-top:2px; }
.footer-ci a { color:rgba(255,255,255,.42); text-decoration:none; }
.footer-ci a:hover { color:var(--gold); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.06);
  padding-top:22px; display:flex; align-items:center;
  justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:.78rem;
}
.footer-links-b, .footer-links-bottom { display:flex; gap:18px; flex-wrap:wrap; }
.footer-links-b a, .footer-links-bottom a { color:rgba(255,255,255,.32); text-decoration:none; font-size:.78rem; transition:color .2s; }
.footer-links-b a:hover, .footer-links-bottom a:hover { color:var(--white); }
.footer-legal { font-size:.69rem; color:rgba(255,255,255,.2); margin-top:14px; max-width:720px; line-height:1.65; }

/* ══════════════════════════════════════════════════
   SEO BLOCKS
══════════════════════════════════════════════════ */
.seo-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 44px; position: relative;
}
.seo-block::before {
  content:''; position:absolute; left:0; top:0; bottom:0;
  width:4px; border-radius:4px 0 0 4px;
  background: linear-gradient(to bottom, var(--blue), var(--gold));
}
.seo-block h2 { font-size:1.5rem; margin-bottom:14px; }
.seo-block p  { font-size:.93rem; line-height:1.82; color:#475370; margin-bottom:12px; }
.seo-kw-list  { display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }
.seo-kw { background:rgba(10,102,255,.07); color:var(--blue); border:1px solid rgba(10,102,255,.15); padding:5px 14px; border-radius:20px; font-size:.78rem; font-weight:600; }

/* ══════════════════════════════════════════════════
   TRUST BADGES
══════════════════════════════════════════════════ */
.trust-badges { display:flex; gap:12px; flex-wrap:wrap; margin-top:20px; }
.badge { display:flex; align-items:center; gap:7px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); padding:8px 14px; border-radius:50px; font-size:.78rem; color:rgba(255,255,255,.7); }
.badge svg { color:var(--gold); }

/* ══════════════════════════════════════════════════
   ADS STRIP
══════════════════════════════════════════════════ */
.ads-strip {
  background: linear-gradient(90deg, #0b1b3a 0%, #0e2250 50%, #0b1b3a 100%);
  border: 1px solid rgba(245,200,66,.25); border-radius: var(--radius-lg);
  padding: 28px 36px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.ads-strip::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(10,102,255,.06) 0%,transparent 60%); }
.ads-strip-text strong { font-family:'Playfair Display',serif; font-size:1.15rem; color:var(--white); display:block; margin-bottom:4px; }
.ads-strip-text span   { font-size:.84rem; color:rgba(255,255,255,.55); }
.ads-tag { background:var(--gold); color:var(--navy); font-size:.7rem; font-weight:700; padding:3px 10px; border-radius:20px; margin-left:8px; vertical-align:middle; }

/* ══════════════════════════════════════════════════
   RESPONSIVE COMPLET
   Breakpoints : 1024px · 768px · 640px · 480px · 360px
══════════════════════════════════════════════════ */

/* ── ≤ 1024px  Tablette paysage ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── ≤ 768px  Tablette portrait / grand mobile ── */
@media (max-width: 768px) {

  /* Stats : 2 par ligne */
  .stats-bar, .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stat-item, .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 18px 12px;
  }
  .stat-item:nth-child(odd), .stat:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .stat-item:last-child, .stat:last-child { border-bottom: none; }
  .stat-item:nth-last-child(2):nth-child(odd),
  .stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* Page hero */
  .page-hero { padding: 44px 5vw 36px; }
  .page-hero h1 { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* CTA band */
  .cta-band { padding: 56px 5vw; }
  .cta-band p { max-width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links-b, .footer-links-bottom { justify-content: center; }

  /* Seo block */
  .seo-block { padding: 28px 22px; }

  /* Ads strip */
  .ads-strip { flex-direction: column; text-align: center; }
  .ads-strip .btn-gold { width: 100%; max-width: 300px; margin: 0 auto; justify-content: center; }

  /* Trust badges centré */
  .trust-badges { justify-content: center; }
}

/* ── ≤ 640px  Mobile standard ── */
@media (max-width: 640px) {

  /* Stats : 1 par ligne */
  .stats-bar, .stats { grid-template-columns: 1fr; }
  .stat-item, .stat {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
  .stat-item:last-child, .stat:last-child { border-bottom: none; }

  /* Boutons pleine largeur dans les sections CTA */
  .cta-band .btn-gold,
  .cta-band .btn-primary,
  .cta-band .btn-outline { width: 100%; max-width: 340px; justify-content: center; }

  /* Section padding */
  .page-hero { padding: 36px 4vw 28px; }
  .cta-band  { padding: 48px 4vw; }
  footer     { padding: 44px 4vw 24px; }
}

/* ── ≤ 480px  Petit mobile ── */
@media (max-width: 480px) {
  h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
  h2 { font-size: clamp(1.25rem, 5.5vw, 1.6rem); }

  .logo { font-size: 1.3rem; }
  nav   { padding: 0 4vw; }

  .btn-primary, .btn-gold, .btn-outline {
    font-size: .88rem;
    padding: 13px 22px;
  }

  .section-label { font-size: .65rem; padding: 4px 11px; }

  .page-hero h1 { font-size: clamp(1.3rem, 6.5vw, 1.7rem); }
  .page-hero p  { font-size: .9rem; }

  .seo-block { padding: 22px 16px; }
  .seo-block::before { width: 3px; }

  footer { padding: 36px 4vw 20px; }
  .footer-grid { gap: 20px; }
}

/* ── ≤ 360px  Très petit mobile ── */
@media (max-width: 360px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.15rem; }
  nav { height: 60px; --nav-h: 60px; }
  .logo { font-size: 1.15rem; }
  .btn-primary, .btn-gold { font-size: .82rem; padding: 11px 18px; }
}

/* ── ÉCRANS TACTILES — désactive les hover effects ── */
@media (hover: none) and (pointer: coarse) {
  .btn-primary:hover,
  .btn-gold:hover      { transform: none; }
  .nav-links .nav-cta:hover { transform: none; }
}

/* ── RESET LISTES ── */
ul, ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: left;
}

