/* ==========================================================
   Pulp Franchise - Design system (moderne clean & premium)
   ========================================================== */

:root {
  /* Palette identité Pulp */
  --blue-950: #061B41;
  --blue-900: #0A2A5E;
  --blue-800: #143E80;
  --blue-700: #1E4FB8;
  --blue-600: #3669D6;
  --blue-300: #93B4F0;
  --blue-100: #DBE7FB;
  --blue-50:  #EEF3FB;

  --ink:      #0F172A;
  --ink-soft: #1E293B;
  --muted:    #475569;
  --muted-2:  #64748B;
  --line:     #E2E8F0;
  --bg:       #FFFFFF;
  --bg-alt:   #F8FAFC;

  --accent:   #C9A86B;  /* doré subtil */
  --success:  #15803D;
  --danger:   #B91C1C;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
  --shadow:    0 8px 24px rgba(15,23,42,.08);
  --shadow-lg: 0 24px 60px rgba(15,23,42,.14);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-pill: 999px;

  --t-fast: 150ms ease;
  --t:      250ms cubic-bezier(.4,.0,.2,1);
}

/* ----- Reset ----- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px; line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--blue-700); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--blue-900); }

h1, h2, h3, h4 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { margin: 0 0 1em; }
ul, ol { padding-left: 1.25em; }

/* ----- Layout ----- */
.container { width: min(1200px, 92%); margin-inline: auto; }
.section { padding: clamp(56px, 9vw, 112px) 0; }
.section--alt { background: var(--blue-50); }
.section--dark { background: var(--blue-900); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.85); }

/* Grilles utilitaires */
.grid { display: grid; gap: clamp(20px, 3vw, 36px); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.stack { display: flex; flex-direction: column; gap: 16px; }
.row   { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ----- Typo helpers ----- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: .14em;
  font-size: 12px; font-weight: 700;
  color: var(--blue-700);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted); }
.kicker { color: var(--accent); font-weight: 700; }

/* ----- Header / Nav ----- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(226,232,240,.0);
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom-color: rgba(226,232,240,.8);
  box-shadow: 0 6px 24px -16px rgba(15,23,42,.18);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 24px; position: relative; }
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; transition: transform var(--t-fast); }
.brand:hover { transform: translateY(-1px); }
.brand img { height: 50px; width: auto; display: block; }
.brand strong { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 18px; color: var(--blue-900); display:none; }
.nav-links {
  display: flex; gap: 4px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links > li > a {
  position: relative;
  color: var(--ink); font-weight: 600; font-size: 14px;
  padding: 10px 14px; border-radius: var(--r-pill);
  letter-spacing: -0.005em;
  transition: color var(--t-fast);
}
.nav-links > li > a::after {
  content: ""; position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--blue-700);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
  border-radius: 2px;
}
.nav-links > li > a:hover { color: var(--blue-700); }
.nav-links > li > a:hover::after { transform: scaleX(.7); }
.nav-links > li > a.is-active { color: var(--blue-900); }
.nav-links > li > a.is-active::after { transform: scaleX(1); background: var(--accent); }
.nav-links .nav-cta {
  margin-left: 12px;
  padding: 10px 22px !important;
  background: var(--blue-900); color: #fff !important;
  border-radius: var(--r-pill);
  font-weight: 700;
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 4px 16px -4px rgba(10,42,94,.4);
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t);
}
.nav-links .nav-cta:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 8px 22px -6px rgba(30,79,184,.5); color: #fff !important; }
.nav-links .nav-cta::after { display: none; }

.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 12px; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.nav-toggle span + span { margin-top: 5px; }

.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Boutons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px;
  line-height: 1; border: 1.5px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap; cursor: pointer; text-align: center;
}
.btn--primary { background: var(--blue-700); color: #fff; }
.btn--primary:hover { background: var(--blue-900); transform: translateY(-2px); box-shadow: var(--shadow); color:#fff; }
.btn--ghost { background: transparent; color: var(--blue-900); border-color: var(--blue-900); }
.btn--ghost:hover { background: var(--blue-900); color: #fff; }
.btn--light { background: #fff; color: var(--blue-900); }
.btn--light:hover { background: var(--blue-50); }
.btn--gold { background: var(--accent); color: #1A140A; }
.btn--gold:hover { background: #B8975D; transform: translateY(-2px); }
.btn .icon { width: 18px; height: 18px; }

/* ----- Hero ----- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(54,105,214,.45), transparent 55%),
    radial-gradient(900px 500px at 10% 110%, rgba(201,168,107,.35), transparent 55%),
    linear-gradient(160deg, #061B41 0%, #0A2A5E 45%, #143E80 100%);
  color: #fff;
  padding: clamp(28px, 4vw, 56px) 0 clamp(64px, 10vw, 130px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .08;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  mask-image: radial-gradient(700px 400px at 30% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(700px 400px at 30% 30%, #000 0%, transparent 70%);
  pointer-events: none;
}
/* Vidéo de fond du hero (par-dessus le dégradé existant, qui reste visible) */
.hero__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;                      /* couvre toute la zone, sans déformation */
  pointer-events: none;
  opacity: 0; transition: opacity .8s ease;
}
.hero__video.is-ready { opacity: .45; }
.hero__video-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(54,105,214,.45), transparent 55%),
    linear-gradient(160deg, rgba(6,27,65,.62) 0%, rgba(10,42,94,.58) 45%, rgba(20,62,128,.55) 100%);
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 3fr 2fr;
  gap: clamp(40px, 6vw, 88px); align-items: center;
}
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff; font-size: 13px; font-weight: 600;
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
}
.hero__badge .dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); display: grid; place-items: center;
  font-size: 11px; color: #1A140A; font-weight: 800;
}
.hero h1 {
  color: #fff; margin: 0 0 20px;
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  line-height: 1.05; letter-spacing: -0.025em;
}
.hero h1 .hl {
  background: linear-gradient(120deg, #fff 0%, #fff 30%, var(--accent) 65%, #FFD58A 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 560px; margin: 0 0 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero__trust {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(255,255,255,.75);
}
.hero__trust .faces { display: flex; }
.hero__trust .faces img {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid #0A2A5E; object-fit: cover;
  margin-left: -10px;
}
.hero__trust .faces img:first-child { margin-left: 0; }
.hero__trust strong { color: #fff; font-weight: 700; }

/* Hero info card (right column 40%) */
.hero__info {
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
  max-width: 460px; margin-left: auto;
  animation: float 8s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-6px) } }

.hero__info-photo {
  position: relative;
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
}
.hero__info-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__info-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,27,65,.7));
}
.hero__info-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent); color: #1A140A;
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

.hero__info-card {
  position: relative;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 24px 26px;
  color: rgba(255,255,255,.95);
}
.hero__info-card h3 {
  color: #fff; font-size: 1.05rem; margin: 0 0 14px;
  font-family: 'Manrope', sans-serif; font-weight: 700;
  letter-spacing: -0.01em;
}
.hero__info-card ul {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: grid; gap: 12px;
}
.hero__info-card li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; line-height: 1.45;
  color: rgba(255,255,255,.85);
}
.hero__info-card li svg {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.hero__info-card li strong {
  color: #fff; font-weight: 700; display: block; margin-bottom: 1px;
}
.hero__info-cta {
  display: inline-flex; align-items: center; gap: 8px;
  width: 100%; justify-content: center;
  padding: 12px 18px; border-radius: 999px;
  background: #fff; color: var(--blue-900) !important;
  font-weight: 700; font-size: 14px;
  transition: transform var(--t-fast), background var(--t);
}
.hero__info-cta svg { width: 16px; height: 16px; }
.hero__info-cta:hover { background: var(--accent); color: #1A140A !important; transform: translateY(-1px); }

@media (max-width: 980px) {
  .hero__info { max-width: 520px; margin: 32px auto 0; animation: none; }
}

.hero__stats {
  position: relative; margin-top: clamp(56px, 7vw, 88px);
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
}
.hero__stats .stat { color: #fff; }
.hero__stats .stat strong {
  display: block; font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 800; color: #fff; margin-bottom: 4px;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em;
}
.hero__stats .stat span { color: rgba(255,255,255,.7); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; line-height: 1.3; display: block; }

/* ----- Cards / Pillars ----- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card h3 { margin-bottom: 8px; }
.card .icon-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  display: grid; place-items: center; color: #fff;
  margin-bottom: 18px;
}
.card .icon-circle img { width: 32px; height: 32px; filter: brightness(0) invert(1); }

.pillar {
  position: relative; padding: 32px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line);
  transition: transform var(--t), box-shadow var(--t);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar__num {
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--accent); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px;
}
.pillar h3 { font-size: 1.15rem; margin-bottom: 10px; }
.pillar p { color: var(--muted); font-size: 15px; margin: 0; }

/* ----- Article cards ----- */
.article-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--line);
  transition: transform var(--t), box-shadow var(--t);
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card__img {
  aspect-ratio: 16 / 10; overflow: hidden; background: var(--blue-50);
}
.article-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.article-card:hover .article-card__img img { transform: scale(1.06); }
.article-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.article-card__meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); }
.article-card__meta .badge {
  background: var(--blue-50); color: var(--blue-700);
  padding: 4px 10px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
}
.article-card h3 { font-size: 1.15rem; line-height: 1.35; margin: 0; }
.article-card h3 a { color: var(--ink); }
.article-card h3 a:hover { color: var(--blue-700); }
.article-card p { color: var(--muted); font-size: 14.5px; margin: 0; }
.article-card__more {
  margin-top: auto; padding-top: 12px;
  font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ----- Service block (icon left, content right) ----- */
.service {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 28px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service__icon {
  width: 88px; height: 88px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  border-radius: 18px;
  display: grid; place-items: center;
}
.service__icon img { width: 48px; height: 48px; filter: brightness(0) invert(1); }
.service h3 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; }
.service ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.service li { padding-left: 22px; position: relative; color: var(--muted); font-size: 15px; }
.service li::before {
  content: ""; position: absolute; left: 0; top: .65em;
  width: 12px; height: 2px; background: var(--accent);
}

/* ----- Service row (page services dédiée : photo + illustration + liste) ----- */
.service-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 0; }
.service-row.is-reverse .service-row__media { order: 2; }
.service-row.is-reverse .service-row__body  { order: 1; }
@media (max-width: 880px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row.is-reverse .service-row__media,
  .service-row.is-reverse .service-row__body { order: initial; }
}

.service-row__media {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--r-lg);
  overflow: visible;
}
.service-row__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 60px -22px rgba(15,23,42,.3);
  z-index: 1;
}
.service-row__num {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 800;
  color: var(--accent);
  letter-spacing: .16em;
  margin-bottom: 14px;
}
.service-row__body h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 12px;
  color: var(--blue-900);
}
.service-row__sub { margin-bottom: 22px; max-width: 460px; }
.service-row__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.service-row__list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--ink-soft); font-size: 15.5px; line-height: 1.45;
}
.service-row__list li svg {
  width: 18px; height: 18px;
  color: var(--blue-700);
  flex-shrink: 0; margin-top: 2px;
}

/* ----- Testimonial ----- */
.testimonial {
  background: var(--blue-900); color: #fff;
  padding: clamp(40px, 6vw, 64px);
  border-radius: var(--r-lg);
  display: grid; grid-template-columns: 200px 1fr; gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.testimonial img { border-radius: 50%; width: 200px; height: 200px; object-fit: cover; }
.testimonial h3 { color: #fff; font-size: 1.5rem; }
.testimonial blockquote { font-size: 1.1rem; line-height: 1.7; margin: 0 0 20px; color: rgba(255,255,255,.92); }
.testimonial .sig { color: var(--accent); font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.testimonial .sig small { display:block; color: rgba(255,255,255,.7); font-weight: 500; text-transform: none; letter-spacing: 0; margin-top: 4px; }
@media (max-width: 760px) {
  .testimonial { grid-template-columns: 1fr; text-align: center; }
  .testimonial img { margin: 0 auto; width: 160px; height: 160px; }
}

/* ----- Form ----- */
.form { display: grid; gap: 18px; }
.form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form .row-2 { grid-template-columns: 1fr; } }
.field { position: relative; }
.field label {
  position: absolute; left: 16px; top: 14px;
  font-size: 14px; color: var(--muted); pointer-events: none;
  transition: transform var(--t-fast), color var(--t-fast), background var(--t-fast), padding var(--t-fast);
  background: transparent;
}
.field input, .field textarea {
  width: 100%; padding: 16px; border: 1.5px solid var(--line);
  border-radius: 12px; font: inherit; color: var(--ink);
  background: #fff; transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(30,79,184,.12);
}
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translate(-4px, -22px) scale(.85);
  background: #fff; padding: 0 6px; color: var(--blue-700);
}
.field--hidden { display: none; }

.alert { padding: 14px 18px; border-radius: 12px; font-weight: 500; }
.alert--success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.alert--error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FCA5A5; }

/* ----- Footer ----- */
.site-footer {
  background: var(--blue-950); color: rgba(255,255,255,.8);
  padding: clamp(56px, 8vw, 88px) 0 24px;
}
.site-footer .grid-foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 900px) { .site-footer .grid-foot { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-footer .grid-foot { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a { color: rgba(255,255,255,.7); font-size: 14.5px; }
.site-footer a:hover { color: #fff; }
.site-footer .brand-foot img { height: 44px; margin-bottom: 16px; }
.site-footer .bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 56px; padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,.5);
}

/* ----- Blog article single ----- */
.article {
  background: #fff;
}
.article__header { padding: clamp(48px, 8vw, 96px) 0 32px; background: linear-gradient(180deg, var(--blue-50) 0%, #fff 100%); }
.article__cover { aspect-ratio: 16/8; border-radius: var(--r-lg); overflow: hidden; margin-bottom: 32px; box-shadow: var(--shadow); }
.article__cover img { width: 100%; height: 100%; object-fit: cover; }
.article__meta { display: flex; gap: 16px; align-items: center; color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.article__body {
  max-width: 760px; margin: 0 auto;
  padding: 0 0 80px;
  font-size: 17px; line-height: 1.8; color: var(--ink-soft);
}
.article__body h2 { margin-top: 1.8em; font-size: 1.5rem; }
.article__body h3 { margin-top: 1.6em; font-size: 1.2rem; }
.article__body p { margin-bottom: 1.2em; }
.article__body img { border-radius: var(--r); margin: 1.6em 0; }
.article__body blockquote {
  border-left: 4px solid var(--accent); padding: 8px 24px; margin: 24px 0;
  color: var(--muted); font-style: italic;
}
.article__body iframe { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: var(--r); margin: 1.6em 0; }

/* ----- Pagination ----- */
.pagination { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 48px; }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill); font-weight: 600;
  border: 1px solid var(--line); color: var(--ink); background: #fff;
}
.pagination .is-current { background: var(--blue-700); color: #fff; border-color: var(--blue-700); }
.pagination a:hover { background: var(--blue-50); color: var(--blue-900); border-color: var(--blue-300); }

/* ----- Page hero (interne, plus discret) ----- */
.page-hero {
  padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 6vw, 80px);
  background: linear-gradient(135deg, var(--blue-950) 0%, var(--blue-800) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 80% 10%, rgba(201,168,107,.16), transparent 60%);
}
.page-hero h1 { color: #fff; position: relative; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: clamp(1.05rem, 1.4vw, 1.2rem); max-width: 720px; position: relative; }

/* ----- Témoignages avatars (devenir franchisé) ----- */
.avatars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px; margin-bottom: 56px;
}
.avatars figure { margin: 0; text-align: center; }
.avatars img {
  width: 160px; height: 160px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 14px; border: 4px solid #fff; box-shadow: var(--shadow);
  transition: transform var(--t);
}
.avatars figure:hover img { transform: scale(1.05); }
.avatars figcaption { font-weight: 700; color: var(--ink); }

/* ----- Reveal animations ----- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ----- Video showcase ----- */
.video-card {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; aspect-ratio: 16/9;
  background: var(--blue-900); cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.4);
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 30px 70px -20px rgba(0,0,0,.5); }
.video-card img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity var(--t); }
.video-card:hover img { opacity: 1; }
.video-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,27,65,.7) 100%);
  z-index: 1;
}
.video-card .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(255,255,255,.95); color: var(--blue-900);
  display: grid; place-items: center;
  z-index: 2;
  transition: transform var(--t), background var(--t);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.video-card:hover .play { transform: translate(-50%,-50%) scale(1.08); background: var(--accent); }
.video-card .play svg { width: 32px; height: 32px; margin-left: 4px; }
.video-card .label {
  position: absolute; bottom: 20px; left: 24px; right: 24px; z-index: 2;
  color: #fff; font-weight: 700; font-size: 18px;
}
.video-card .label small { display: block; opacity: .8; font-weight: 500; font-size: 12px; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .1em; }

.video-embed {
  position: relative; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(15,23,42,.4); background: #000;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed--vert { aspect-ratio: 9/16; max-width: 320px; margin: 0 auto; }

/* Témoignage vidéo : card avec titre + sous-titre sous l'embed */
.vtest {
  display: flex; flex-direction: column; gap: 14px;
}
.vtest__embed {
  position: relative; aspect-ratio: 16/9;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(15,23,42,.5);
  background: #000;
}
.vtest__embed--vert { aspect-ratio: 9/16; max-width: 320px; margin-inline: auto; }
.vtest__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vtest__body { padding: 4px 4px 0; }
.vtest__body .meta {
  display: flex; align-items: center; gap: 10px;
  color: var(--blue-700); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px;
}
.vtest__body .meta::before {
  content: ""; width: 22px; height: 2px; background: var(--accent);
}
.vtest__body h3 { font-size: 1.1rem; margin: 0 0 4px; line-height: 1.3; }
.vtest__body p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* Grid spécifique aux témoignages : 2 horiz puis 2 vert */
.vtest-grid-h {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.vtest-grid-v {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px; max-width: 760px; margin-inline: auto;
}
@media (max-width: 800px) {
  .vtest-grid-h, .vtest-grid-v { grid-template-columns: 1fr; }
}

/* ----- Timeline (grille des managers, sans scroll) ----- */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  row-gap: 48px;
  column-gap: 12px;
}
@media (max-width: 1100px) { .timeline { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 820px)  { .timeline { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 520px)  { .timeline { grid-template-columns: repeat(2, 1fr); } }

.timeline__item {
  position: relative;
  text-align: center;
}

.timeline__date {
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 800;
  color: var(--blue-700);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 2px;
  line-height: 1.2;
}
.timeline__city {
  font-size: 12px; color: var(--muted-2);
  margin-bottom: 12px;
  font-style: italic;
  line-height: 1.2;
}

.timeline__node {
  position: relative;
  width: 90px; height: 90px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--blue-50);
  border: 3px solid #fff;
  box-shadow: 0 12px 28px -10px rgba(15,23,42,.25),
              0 0 0 2px var(--accent);
  transition: transform var(--t), box-shadow var(--t);
}
.timeline__node img { width: 100%; height: 100%; object-fit: cover; display: block; }
.timeline__item:hover .timeline__node { transform: translateY(-3px); box-shadow: 0 18px 36px -10px rgba(15,23,42,.35), 0 0 0 3px var(--blue-700); }

.timeline__placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  color: var(--blue-700);
}
.timeline__placeholder svg { width: 38px; height: 38px; }

.timeline__dot {
  position: absolute;
  bottom: -10px; left: 50%;
  width: 12px; height: 12px;
  background: #fff;
  border: 2.5px solid var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: border-color var(--t);
}
.timeline__item:hover .timeline__dot { border-color: var(--blue-700); }

.timeline__label strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px; font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 2px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.timeline__label span {
  display: block;
  font-size: 11.5px; color: var(--muted);
  line-height: 1.3;
}

/* Cases "à venir" */
.timeline__item.is-upcoming .timeline__node {
  box-shadow: 0 0 0 2px var(--accent), 0 12px 28px -10px rgba(201,168,107,.4);
  border-style: dashed;
  border-color: var(--accent);
  background: transparent;
}
.timeline__item.is-upcoming .timeline__date { color: var(--accent); }
.timeline__item.is-upcoming .timeline__label strong { color: var(--accent); }
.timeline__item.is-upcoming .timeline__dot { border-color: var(--accent); animation: pulse 2.4s ease-in-out infinite; }

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,107,.4); }
  50%     { box-shadow: 0 0 0 8px rgba(201,168,107,0); }
}

/* ----- Agencies grid ----- */
.agency-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t);
}
.agency-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.agency-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.agency-card:hover img { transform: scale(1.08); }
.agency-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(10,42,94,.95) 100%);
}
.agency-card__label {
  position: absolute; bottom: 18px; left: 18px; right: 18px; z-index: 2;
  color: #fff;
}
.agency-card__label .badge {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: var(--accent); color: #1A140A; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px;
}
.agency-card__label strong { display: block; font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 800; line-height: 1.1; }
.agency-card__label span { font-size: 13px; opacity: .82; }

/* ----- Valeurs section ----- */
.values {
  padding: clamp(64px, 9vw, 112px) 0;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(30,79,184,.06), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.values__motto { text-align: center; margin-bottom: clamp(48px, 7vw, 80px); }
.values__quote {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 14px auto 20px;
  color: var(--blue-900);
}
.values__quote em {
  font-style: normal;
  background: linear-gradient(120deg, var(--blue-700) 0%, var(--blue-900) 50%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.values__quote .q {
  color: var(--accent);
  font-family: 'Manrope', sans-serif;
  font-size: .9em;
  font-weight: 600;
  vertical-align: -0.05em;
  margin: 0 .12em;
  opacity: .8;
}

.values__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1100px; margin-inline: auto;
}
@media (max-width: 900px) { .values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .values__grid { grid-template-columns: 1fr; } }

.value {
  position: relative; padding: 28px 24px 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.value::before {
  content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, var(--blue-700), var(--accent));
  border-radius: 0 0 3px 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 400ms cubic-bezier(.4,0,.2,1);
}
.value:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 20px 50px -16px rgba(15,23,42,.18);
}
.value:hover::before { transform: scaleX(1); }
.value__num {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 800;
  color: var(--accent);
  letter-spacing: .14em;
  margin-bottom: 12px;
}
.value h3 {
  font-size: 1.35rem; margin: 0 0 8px;
  font-family: 'Manrope', sans-serif; font-weight: 800;
  color: var(--blue-900); letter-spacing: -0.02em;
}
.value p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* ----- Responsive nav ----- */
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 86vw);
    background: #fff;
    flex-direction: column; align-items: stretch;
    padding: 84px 24px 24px;
    gap: 4px;
    transform: translateX(100%);
    box-shadow: -20px 0 60px -20px rgba(15,23,42,.2);
    transition: transform 300ms cubic-bezier(.4,0,.2,1);
    z-index: 60;
  }
  .nav.is-open .nav-links { transform: translateX(0); }
  .nav.is-open::after {
    content: ""; position: fixed; inset: 0;
    background: rgba(15,23,42,.4); backdrop-filter: blur(2px);
    z-index: 55;
  }
  .nav-toggle { z-index: 70; position: relative; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { display: block; padding: 14px 16px; border-radius: 12px; font-size: 16px; }
  .nav-links > li > a::after { display: none; }
  .nav-links > li > a.is-active { background: var(--blue-50); color: var(--blue-900); }
  .nav-links .nav-cta { margin: 16px 0 0 !important; text-align: center; }
}

/* ----- Utilities ----- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 32px; }
