/* ============================================
   BG Corporation — style.css
   Palette : encre #0F1E2E · cobalt #2451E6 · ardoise #5B6B7A · fond #F7F9FB
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Figtree:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --ink: #0F1E2E;
  --ink-soft: #21374C;
  --slate: #5B6B7A;
  --cobalt: #2451E6;
  --cobalt-deep: #1B3EB8;
  --cobalt-tint: #E9EEFC;
  --bg: #F7F9FB;
  --surface: #FFFFFF;
  --line: #E2E8EF;
  --radius: 14px;
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--cobalt); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Typographie ---------- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--cobalt);
  display: inline-block;
}

.lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 46rem; }
.muted { color: var(--slate); }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand img { width: 40px; height: 40px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em;
}
.brand-name span { color: var(--cobalt); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > a, .drop > button {
  font: 600 0.95rem var(--font-body);
  color: var(--ink-soft);
  padding: 9px 14px;
  border-radius: 9px;
  background: none; border: 0; cursor: pointer;
}
.main-nav > a:hover, .drop > button:hover { background: var(--cobalt-tint); color: var(--cobalt-deep); text-decoration: none; }
.main-nav > a[aria-current="page"] { color: var(--cobalt); }

.drop { position: relative; }
.drop > button::after { content: " ▾"; font-size: 0.75em; }
.drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 320px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(15,30,46,0.12);
  padding: 8px;
  display: none;
}
.drop:hover .drop-menu, .drop:focus-within .drop-menu { display: block; }
.drop-menu a {
  display: block; padding: 10px 14px;
  border-radius: 9px;
  color: var(--ink-soft); font-size: 0.95rem; font-weight: 500;
}
.drop-menu a:hover { background: var(--cobalt-tint); color: var(--cobalt-deep); text-decoration: none; }

.btn {
  display: inline-block;
  font: 600 0.98rem var(--font-body);
  padding: 12px 22px;
  border-radius: 10px;
  background: var(--cobalt);
  color: #fff;
  border: 1px solid var(--cobalt);
  transition: background 0.18s ease;
}
.btn:hover { background: var(--cobalt-deep); text-decoration: none; }
.btn-ghost {
  background: transparent; color: var(--cobalt);
}
.btn-ghost:hover { background: var(--cobalt-tint); color: var(--cobalt-deep); }

/* Menu mobile */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--ink); }

/* ---------- Héros ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 96px 0 110px;
}
.hero .eyebrow { color: #9FB4FF; }
.hero .eyebrow::before { background: #9FB4FF; }
.hero h1 { max-width: 15ch; }
.hero .lead { color: #C4D0DC; margin-top: 20px; }
.hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-ghost { color: #C9D6FF; border-color: rgba(159,180,255,0.4); }
.hero-actions .btn-ghost:hover { background: rgba(36,81,230,0.25); color: #fff; }

/* Arcs de signal — signature du site */
.signal {
  position: absolute; right: -140px; top: 50%;
  transform: translateY(-50%);
  width: 640px; height: 640px;
  pointer-events: none;
  opacity: 0.9;
}

/* Héros de page intérieure */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { color: #9FB4FF; }
.page-hero .eyebrow::before { background: #9FB4FF; }
.page-hero .lead { color: #C4D0DC; margin-top: 16px; }
.page-hero .signal { width: 460px; height: 460px; right: -160px; opacity: 0.6; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-head { margin-bottom: 44px; max-width: 46rem; }
.section-head p { margin-top: 12px; color: var(--slate); }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Grille de cartes */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
a.card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: var(--cobalt);
  box-shadow: 0 14px 34px rgba(36,81,230,0.10);
}
.card .icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--cobalt-tint);
  color: var(--cobalt);
  display: grid; place-items: center;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-weight: 500;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 0.98rem; }
.card .more {
  display: inline-block; margin-top: 16px;
  font-weight: 600; font-size: 0.92rem; color: var(--cobalt);
}

/* Listes de prestations détaillées */
.check-list { list-style: none; display: grid; gap: 14px; }
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--cobalt-tint);
  border: 2px solid var(--cobalt);
}
.check-list li::after {
  content: "";
  position: absolute; left: 5px; top: 10px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--cobalt);
  border-bottom: 2px solid var(--cobalt);
  transform: rotate(-45deg);
}
.check-list strong { color: var(--ink); }

/* Étapes (démarche) */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: 0; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--cobalt);
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--slate); }

/* Bandeau devise */
.motto {
  background: var(--cobalt);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.motto blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-weight: 700;
  max-width: 24ch;
  margin: 0 auto;
}
.motto figcaption {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9D6FF;
}

/* Appel à l'action */
.cta {
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta h2 { max-width: 22ch; }
.cta p { color: #C4D0DC; margin-top: 10px; max-width: 40rem; }

/* ---------- Formulaire de contact ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: 0.92rem; display: block; margin-bottom: 6px; }
input, textarea, select {
  width: 100%;
  font: 400 1rem var(--font-body);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
}
input:focus, textarea:focus, select:focus { border-color: var(--cobalt); outline: none; box-shadow: 0 0 0 3px var(--cobalt-tint); }

.contact-aside { display: grid; gap: 18px; align-content: start; }
.contact-aside .card p { margin-top: 4px; }

/* ---------- Pied de page ---------- */
.site-footer {
  background: var(--ink);
  color: #A9B8C6;
  padding: 64px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer a { color: #C4D0DC; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; display: grid; gap: 10px; font-size: 0.95rem; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 36px; height: 36px; }
.footer-brand .brand-name { color: #fff; }
.footer-bottom {
  padding-top: 26px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.85rem;
}

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .js .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .grid-3, .grid-2, .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .signal { display: none; }
  .cta { padding: 40px 28px; }

  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 20px;
    box-shadow: 0 20px 40px rgba(15,30,46,0.12);
  }
  .main-nav.open { display: flex; }
  .drop-menu { position: static; display: block; box-shadow: none; border: 0; padding-left: 12px; }
  .drop > button { width: 100%; text-align: left; }
  .main-nav .btn { margin-top: 10px; text-align: center; }
}

/* ============================================
   Sélecteur de langue
   ============================================ */
.lang-switch { display: inline-flex; gap: 2px; margin-left: 8px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.lang-switch a { padding: 6px 10px; font-size: 0.82rem; font-weight: 600; color: var(--slate); }
.lang-switch a:hover { background: var(--cobalt-tint); text-decoration: none; }
.lang-switch a.active { background: var(--cobalt); color: #fff; }

/* ============================================
   ARTIZR — projet phare (navy #132D47 · orange #F57C00)
   ============================================ */
.artizr-feature {
  background: linear-gradient(135deg, #132D47 0%, #1c3d5f 100%);
  color: #fff; border-radius: 22px; padding: 56px 48px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px;
  align-items: center; position: relative; overflow: hidden;
}
.artizr-feature::after {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(245,124,0,0.28) 0%, rgba(245,124,0,0) 70%);
  pointer-events: none;
}
.artizr-feature .eyebrow { color: #F7A94E; }
.artizr-feature .eyebrow::before { background: #F57C00; }
.artizr-feature h2 { color: #fff; margin-bottom: 14px; max-width: 20ch; }
.artizr-feature p { color: #C4D0DC; margin-bottom: 22px; max-width: 44ch; }
.artizr-logo-badge { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; letter-spacing: -0.02em; margin-bottom: 16px; }
.artizr-logo-badge span { color: #F57C00; }
.artizr-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-orange { display: inline-block; font: 600 0.98rem var(--font-body); padding: 13px 24px; border-radius: 10px; background: #F57C00; color: #fff; border: 1px solid #F57C00; transition: background 0.18s ease; }
.btn-orange:hover { background: #d96d00; text-decoration: none; color: #fff; }
.btn-outline-light { display: inline-block; font: 600 0.98rem var(--font-body); padding: 13px 24px; border-radius: 10px; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); transition: all 0.18s ease; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); text-decoration: none; color: #fff; }
.artizr-visual { position: relative; display: grid; place-items: center; min-height: 220px; }
.artizr-rings { width: 260px; height: 260px; }
.artizr-points { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.artizr-points li { font-family: var(--font-mono); font-size: 0.76rem; padding: 6px 12px; border-radius: 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); color: #E6EDF4; }

.artizr-hero { background: linear-gradient(135deg, #132D47 0%, #1c3d5f 100%); color: #fff; padding: 80px 0 90px; position: relative; overflow: hidden; }
.artizr-hero::after { content: ""; position: absolute; right: -120px; top: 50%; transform: translateY(-50%); width: 560px; height: 560px; background: radial-gradient(circle, rgba(245,124,0,0.22) 0%, rgba(245,124,0,0) 68%); pointer-events: none; }
.artizr-hero .eyebrow { color: #F7A94E; }
.artizr-hero .eyebrow::before { background: #F57C00; }
.artizr-hero h1 { max-width: 18ch; }
.artizr-hero .lead { color: #C4D0DC; margin-top: 20px; }
.artizr-hero .artizr-actions { margin-top: 32px; }
.badge-live { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(46,204,113,0.16); color: #7CE0A3; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; }
.badge-live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #2ECC71; display: inline-block; }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.feat-card .feat-icon { width: 46px; height: 46px; border-radius: 12px; background: #FDEBD7; color: #F57C00; display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 16px; }
.feat-card h3 { margin-bottom: 8px; }
.feat-card p { color: var(--slate); font-size: 0.96rem; }

.mobile-teaser { background: #FDEBD7; border-radius: 20px; padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.mobile-teaser .eyebrow { color: #F57C00; }
.mobile-teaser .eyebrow::before { background: #F57C00; }
.mobile-teaser h2 { color: var(--ink); max-width: 16ch; }
.mobile-teaser p { color: var(--ink-soft); margin-top: 12px; }
.store-badges { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.store-badge { display: inline-flex; align-items: center; gap: 10px; background: #132D47; color: #fff; padding: 12px 20px; border-radius: 12px; font-size: 0.9rem; opacity: 0.7; cursor: default; }
.store-badge small { display: block; font-size: 0.68rem; opacity: 0.85; }
.store-badge strong { font-size: 1rem; }
.mobile-phones { display: grid; place-items: center; font-size: 6rem; }

.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-step { text-align: center; }
.how-step .num { width: 54px; height: 54px; border-radius: 50%; background: #132D47; color: #F7A94E; display: grid; place-items: center; margin: 0 auto 16px; font-family: var(--font-mono); font-size: 1.3rem; }
.how-step h3 { margin-bottom: 8px; }
.how-step p { color: var(--slate); font-size: 0.95rem; }

@media (max-width: 860px) {
  .artizr-feature { grid-template-columns: 1fr; padding: 40px 28px; }
  .artizr-visual { min-height: 160px; }
  .feat-grid, .how-steps { grid-template-columns: 1fr; }
  .mobile-teaser { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
  .mobile-teaser .store-badges, .store-badges { justify-content: center; }
}

/* ---------- Prestations : mise en page équilibrée ---------- */
.offer-grid { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.offer-grid li {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 22px 54px;
  color: var(--slate);
  font-size: 0.98rem;
}
.offer-grid li::before {
  content: "";
  position: absolute; left: 20px; top: 24px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #FDEBD7; border: 2px solid #F57C00;
}
.offer-grid li::after {
  content: "";
  position: absolute; left: 26px; top: 29px;
  width: 8px; height: 5px;
  border-left: 2px solid #F57C00; border-bottom: 2px solid #F57C00;
  transform: rotate(-45deg);
}
.offer-grid li strong { display: block; color: var(--ink); margin-bottom: 4px; font-size: 1.02rem; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: pstep; }
.pstep {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}
.pstep::before {
  counter-increment: pstep;
  content: counter(pstep, decimal-leading-zero);
  font-family: var(--font-mono); font-size: 1.5rem; color: #F57C00;
  display: block; margin-bottom: 14px;
}
.pstep h3 { margin-bottom: 8px; font-size: 1.08rem; }
.pstep p { color: var(--slate); font-size: 0.94rem; }

@media (max-width: 900px) {
  .offer-grid, .process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .offer-grid, .process { grid-template-columns: 1fr; }
}

/* ---------- Image des artisans (illustration) ---------- */
/* Dans l'accroche d'accueil : remplace les cercles par l'image */
.artizr-feature .artizr-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.1);
}
.artizr-feature .artizr-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Hero de la page Artizr : image à droite */
.artizr-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.artizr-hero-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border: 4px solid rgba(255,255,255,0.12);
}
.artizr-hero-photo img { width: 100%; display: block; }

/* Section "Nos artisans" pleine largeur */
.artisans-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}
.artisans-band .artisans-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(15,30,46,0.16);
}
.artisans-band .artisans-photo img { width: 100%; display: block; }
.artisans-band h2 { margin-bottom: 16px; }
.artisans-band p { color: var(--slate); margin-bottom: 14px; }
.artisans-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.artisans-tags li {
  font-family: var(--font-mono); font-size: 0.8rem;
  padding: 7px 14px; border-radius: 20px;
  background: #FDEBD7; color: #b35a00; border: 1px solid #F7A94E;
}

@media (max-width: 860px) {
  .artizr-hero-grid, .artisans-band { grid-template-columns: 1fr; }
  .artizr-hero-photo, .artisans-band .artisans-photo { max-width: 480px; margin: 0 auto; }
}

/* ============================================
   PAGE PARTENARIATS
   ============================================ */
.partners-hero {
  background: linear-gradient(135deg, #0F1E2E 0%, #21374C 100%);
  color: #fff; padding: 72px 0 80px; position: relative; overflow: hidden;
}
.partners-hero::after {
  content: ""; position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(36,81,230,0.28) 0%, rgba(36,81,230,0) 68%);
  pointer-events: none;
}
.partners-hero .eyebrow { color: #9FB4FF; }
.partners-hero .eyebrow::before { background: var(--cobalt); }
.partners-hero h1 { max-width: 20ch; }
.partners-hero .lead { color: #C4D0DC; margin-top: 18px; max-width: 60ch; }

.partner-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 32px;
}
.partner-head {
  display: flex; align-items: center; gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
  background: #F7F9FB;
}
.partner-logo {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 14px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  color: #fff; letter-spacing: -0.02em;
}
.partner-logo.edtech { background: linear-gradient(135deg, #7C3AED, #4F46E5); }
.partner-logo.intouch { background: linear-gradient(135deg, #059669, #10B981); }
.partner-head h2 { margin: 0; font-size: 1.5rem; }
.partner-head .partner-type {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--slate); margin-top: 2px;
}
.partner-body { padding: 30px 32px 34px; }
.partner-body h3 { font-size: 1.08rem; margin: 22px 0 10px; color: var(--ink); }
.partner-body h3:first-child { margin-top: 0; }
.partner-body p { color: var(--slate); margin-bottom: 12px; }
.partner-benefits { list-style: none; display: grid; gap: 12px; margin-top: 8px; }
.partner-benefits li {
  position: relative; padding-left: 30px; color: var(--ink-soft); font-size: 0.98rem;
}
.partner-benefits li::before {
  content: ""; position: absolute; left: 4px; top: 6px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--cobalt); border-bottom: 2px solid var(--cobalt);
  transform: rotate(-45deg);
}
.partner-tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.partner-tag-row .tag {
  font-family: var(--font-mono); font-size: 0.76rem;
  padding: 6px 12px; border-radius: 20px;
  background: var(--cobalt-tint); color: var(--cobalt-deep);
}

/* Logos partenaires : cartes nominatives soignées (en attendant les fichiers officiels) */
.partner-logo {
  width: auto; min-width: 120px; height: 64px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(15,30,46,0.14);
  text-align: center;
  line-height: 1.1;
}
.partner-logo small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  opacity: 0.85;
  margin-top: 3px;
}
