/* =====================================================
   ARC Partners Solutions, design v4
   Clair mais feutré : le fond de page est un gris-bleu
   doux, le blanc est réservé aux cartes. Aucune fausse
   interface : les visuels sont illustratifs.
   Typo : Outfit (la police du CRM), accent #0B4491.
   ===================================================== */

:root {
  --bg: #EDF0F6;          /* fond de page, feutré */
  --bg-2: #F4F6FA;        /* sections légèrement plus claires */
  --sunken: #E2E7F0;      /* pied de page, zones en creux */
  --card: #FFFFFF;
  --line: #D9DFEA;
  --line-soft: #E5EAF2;
  --txt-1: #111C30;
  --txt-2: #47546C;
  --txt-3: #66738A; /* contraste AA sur les fonds clairs */

  --blue: #0B4491;
  --blue-dark: #082F63;
  --blue-2: #2E6FE8;
  --sky: #E7EEFA;
  --accent-line: #C6D6F0;

  --ok: #0E8A5F;
  --warn: #B45309;

  --font: "Outfit", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  --mono: "Cascadia Code", ui-monospace, "SF Mono", Consolas, monospace;

  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(17, 28, 48, .05);
  --shadow-md: 0 10px 34px rgba(17, 28, 48, .09);
  --shadow-lg: 0 26px 70px rgba(9, 32, 77, .14);
  --maxw: 1180px;

  /* alias hérités */
  --stone-500: #66738A;
  --stone-600: #47546C;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--txt-1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }
a { color: var(--blue); }

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

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--blue); color: #fff; padding: 8px 16px; z-index: 100; }
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(237, 240, 246, .85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.brand { display: flex; align-items: center; }
.brand img { width: 164px; height: auto; }

.mainnav { display: flex; align-items: center; gap: 30px; }
.mainnav a {
  color: var(--txt-2); text-decoration: none;
  font-size: 15px; font-weight: 500; letter-spacing: .005em;
  transition: color .15s;
}
.mainnav a:hover { color: var(--blue); }
.mainnav a[aria-current="page"] { color: var(--blue); font-weight: 600; }

.navtoggle { display: none; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 12px;
  font-family: var(--font); font-size: 15px; font-weight: 600; line-height: 1.2; letter-spacing: .002em;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s, box-shadow .2s, transform .1s;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(160deg, var(--blue-2) -40%, var(--blue) 55%);
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(11, 68, 145, .26), inset 0 1px 0 rgba(255, 255, 255, .16);
}
.btn-primary:hover { box-shadow: 0 8px 26px rgba(11, 68, 145, .36), inset 0 1px 0 rgba(255, 255, 255, .16); filter: brightness(1.06); }

.btn-outline { background: var(--card); color: var(--txt-1) !important; border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue) !important; }

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 14px; }
.btn-nav { padding: 10px 20px; font-size: 14px; border-radius: 10px; }

/* ---------- Héros ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(760px 480px at 82% 6%, rgba(46, 111, 232, .10), transparent 62%),
    radial-gradient(620px 420px at 8% 88%, rgba(11, 68, 145, .07), transparent 60%),
    linear-gradient(180deg, #E8ECF4, var(--bg));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(17, 40, 80, .09) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(900px 560px at 72% 30%, rgba(0, 0, 0, .5), transparent 72%);
  -webkit-mask-image: radial-gradient(900px 560px at 72% 30%, rgba(0, 0, 0, .5), transparent 72%);
}
.hero-in {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.04fr .96fr;
  gap: 48px; align-items: center;
  padding: 88px 0 92px;
}

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--card);
  border: 1px solid var(--accent-line);
  color: var(--blue);
  border-radius: 999px; padding: 7px 16px;
  font-size: 13px; font-weight: 600; letter-spacing: .01em;
  box-shadow: var(--shadow-sm);
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-2); }

.hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.06; letter-spacing: -.03em; font-weight: 700;
  color: var(--txt-1);
}
.hero h1 .accent {
  background: linear-gradient(94deg, var(--blue) 25%, var(--blue-2) 85%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
  font-size: 18.5px; line-height: 1.6; color: var(--txt-2);
  max-width: 50ch; margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Visuel orbital du héros ---------- */
.hero-visual { display: flex; justify-content: center; }
.orbit-wrap { position: relative; width: min(480px, 100%); aspect-ratio: 1; }

.orbit-rings { position: absolute; inset: 0; width: 100%; height: 100%; }

.orbit-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 108px; height: 108px; border-radius: 28px;
  background: linear-gradient(150deg, var(--blue-2) -25%, var(--blue) 60%, var(--blue-dark));
  box-shadow: 0 22px 50px rgba(11, 68, 145, .38), inset 0 1px 0 rgba(255, 255, 255, .25);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 27px; letter-spacing: .04em;
}

.orbit-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: 999px; padding: 9px 17px 9px 10px;
  font-size: 13.5px; font-weight: 600; color: var(--txt-1); white-space: nowrap;
  box-shadow: var(--shadow-md);
  animation: floaty 7s ease-in-out infinite;
}
.orbit-chip .ic {
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.orbit-chip .ic svg { width: 14px; height: 14px; stroke-width: 2; fill: none; }
.orbit-chip .ic.c1 { background: var(--sky); } .orbit-chip .ic.c1 svg { stroke: var(--blue); }
.orbit-chip .ic.c2 { background: #E6F6EF; } .orbit-chip .ic.c2 svg { stroke: var(--ok); }
.orbit-chip .ic.c3 { background: #F3EDFC; } .orbit-chip .ic.c3 svg { stroke: #7C3AED; }
.orbit-chip .ic.c4 { background: #FDF1E7; } .orbit-chip .ic.c4 svg { stroke: #C2680C; }
.orbit-chip .ic.c5 { background: #E7F4FA; } .orbit-chip .ic.c5 svg { stroke: #0E7490; }

.orbit-dot {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent-line);
}
.orbit-dot.small { width: 6px; height: 6px; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-2 { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.section-head { max-width: 700px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  font-family: var(--mono); font-size: 12.5px; font-weight: 600; color: var(--blue);
  text-transform: uppercase; letter-spacing: .14em;
}
.section-head h2 {
  margin: 12px 0 14px; font-size: clamp(28px, 3.3vw, 38px);
  letter-spacing: -.025em; line-height: 1.12; color: var(--txt-1); font-weight: 700;
}
.section-head p { color: var(--txt-2); font-size: 17px; margin: 0; }

/* ---------- Piliers ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 32px 32px 34px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar::after {
  content: ""; position: absolute; top: 0; left: 32px; right: 32px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2)); border-radius: 0 0 3px 3px;
  opacity: 0; transition: opacity .2s;
}
.pillar:hover::after { opacity: 1; }
.pillar .n { font-family: var(--mono); font-size: 12px; color: var(--txt-3); }
.pillar h3 { margin: 12px 0 8px; font-size: 20px; letter-spacing: -.015em; color: var(--txt-1); }
.pillar p { margin: 0; color: var(--txt-2); font-size: 14.5px; line-height: 1.65; }

/* ---------- Bento fonctionnalités ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.tile {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-xl);
  padding: 34px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 240px;
  transition: transform .2s, box-shadow .2s;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile-7 { grid-column: span 7; }
.tile-5 { grid-column: span 5; }
.tile-4 { grid-column: span 4; }

.tile .t-ic {
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--sky); border: 1px solid var(--accent-line);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.tile .t-ic svg { width: 20px; height: 20px; stroke: var(--blue); stroke-width: 2; fill: none; }
.tile h3 { margin: 0 0 7px; font-size: 19px; letter-spacing: -.015em; color: var(--txt-1); position: relative; z-index: 1; }
.tile p { margin: 0; color: var(--txt-2); font-size: 14.5px; line-height: 1.6; max-width: 46ch; position: relative; z-index: 1; }
.tile .t-ic { position: relative; z-index: 1; }

/* Décors abstraits des tuiles (illustratifs, volontairement hors cadre) */
.tile .deco { position: absolute; pointer-events: none; }
.deco-gauge { top: -92px; right: -92px; width: 260px; height: 260px; opacity: .45; }
.deco-checks { top: 26px; right: 30px; display: grid; gap: 10px; }
.deco-checks span {
  display: flex; align-items: center; gap: 10px;
  width: 150px; height: 34px; border-radius: 999px;
  background: linear-gradient(90deg, var(--sky), rgba(231, 238, 250, .25));
  padding-left: 8px;
}
.deco-checks span i {
  width: 20px; height: 20px; border-radius: 50%; flex: none;
  background: var(--blue); color: #fff; font-style: normal;
  display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700;
}
.deco-checks span.off { opacity: .55; }
.deco-checks span.off i { background: var(--accent-line); color: var(--blue); }
.deco-bars { bottom: -14px; right: 22px; display: flex; align-items: flex-end; gap: 9px; height: 120px; opacity: .85; }
.deco-bars i {
  width: 22px; border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  opacity: .18;
}
.deco-bars i:nth-child(4) { opacity: .5; }
.deco-bars i:nth-child(5) { opacity: .85; }
.deco-wave { bottom: -6px; right: -10px; width: 240px; height: 110px; opacity: .9; }
.deco-orb {
  top: -70px; right: -70px; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(46, 111, 232, .16), rgba(46, 111, 232, 0) 65%);
}

/* ---------- Bande « Notre ADN » ---------- */
.band { background: linear-gradient(180deg, var(--sky), var(--bg-2)); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.band-in { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; padding: 88px 0; }
.band h2 { font-size: clamp(26px, 3.1vw, 36px); letter-spacing: -.025em; margin: 12px 0 20px; color: var(--txt-1); font-weight: 700; }
.band-quote { border-left: 3px solid var(--blue); padding-left: 24px; font-size: 18px; line-height: 1.6; color: var(--txt-2); }
.band-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.band-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--txt-2); font-size: 15.5px; }
.band-list li::before {
  content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 8px;
  background: var(--card); border: 1px solid var(--accent-line); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 1px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Offre ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1060px; margin: 0 auto; align-items: stretch; }
.plan {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-xl);
  padding: 34px 32px 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; position: relative;
  transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan.featured { border-color: var(--accent-line); box-shadow: var(--shadow-md); }
.plan.featured::before {
  content: ""; position: absolute; inset: -1px; border-radius: var(--r-xl); padding: 1.5px;
  background: linear-gradient(140deg, var(--blue-2), var(--accent-line) 55%, var(--blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.plan .tagtop {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(140deg, var(--blue-2), var(--blue));
  color: #fff; font-size: 12px; font-weight: 600;
  border-radius: 999px; padding: 4px 16px; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(11, 68, 145, .3);
}
.plan h3 { margin: 0 0 4px; font-size: 20px; letter-spacing: -.01em; color: var(--txt-1); }
.plan .sub { color: var(--txt-3); font-size: 13.5px; margin: 0 0 22px; min-height: 2.6em; }
.plan .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 2px; }
.plan .price-row .amount { font-family: var(--mono); font-size: 42px; font-weight: 700; letter-spacing: -.04em; color: var(--txt-1); }
.plan .price-row .per { font-size: 13.5px; color: var(--txt-3); }
.plan .price-note { font-size: 12.5px; color: var(--txt-3); margin: 0 0 22px; }

/* Codes : visuel avatars */
.codes { border-top: 1px solid var(--line-soft); padding-top: 20px; margin-top: auto; display: grid; gap: 14px; }
.code-item { display: flex; align-items: center; gap: 13px; }
.code-item .av {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.code-item .av svg { width: 17px; height: 17px; stroke-width: 2; fill: none; }
.code-item .av.solid { background: linear-gradient(150deg, var(--blue-2), var(--blue)); box-shadow: 0 5px 14px rgba(11, 68, 145, .3); }
.code-item .av.solid svg { stroke: #fff; }
.code-item .av.dashed { background: var(--bg-2); border: 1.5px dashed var(--accent-line); }
.code-item .av.dashed svg { stroke: var(--blue); }
.code-item b { display: block; font-size: 13.5px; color: var(--txt-1); font-weight: 600; line-height: 1.3; }
.code-item small { font-size: 12.5px; color: var(--txt-3); }
.code-item small .amt { font-family: var(--mono); font-weight: 700; color: var(--txt-2); }

.pricing-notes {
  max-width: 1060px; margin: 30px auto 0;
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.pricing-notes .note {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: 999px;
  padding: 9px 19px; font-size: 13.5px; color: var(--txt-2); box-shadow: var(--shadow-sm);
}
.pricing-notes .note svg { width: 15px; height: 15px; stroke: var(--blue); stroke-width: 2; fill: none; flex: none; }
.pricing-cta { text-align: center; margin-top: 38px; }

/* ---------- Cartes articles ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s, border-color .2s; text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--accent-line); }
.card-cover { aspect-ratio: 16 / 9; background: linear-gradient(140deg, var(--sky), var(--sunken)); position: relative; }
.card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-cover .ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-weight: 700; font-size: 22px; color: var(--accent-line); }
.card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.card-date { font-family: var(--mono); font-size: 12px; color: var(--txt-3); }
.card h3 { margin: 0; font-size: 17.5px; line-height: 1.35; color: var(--txt-1); letter-spacing: -.012em; }
.card p { margin: 0; font-size: 14px; color: var(--txt-2); flex: 1; }
.card .more { color: var(--blue); font-size: 14px; font-weight: 600; }

/* ---------- CTA final ---------- */
.cta-final { padding: 96px 0; }
.cta-final .cta-card {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--blue-dark) 0%, var(--blue) 55%, #1857b5 100%);
  border-radius: 26px;
  text-align: center; padding: 76px 40px;
  box-shadow: var(--shadow-lg);
}
.cta-final .cta-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(560px 300px at 50% 0%, rgba(0, 0, 0, .6), transparent 75%);
  -webkit-mask-image: radial-gradient(560px 300px at 50% 0%, rgba(0, 0, 0, .6), transparent 75%);
}
.cta-final .cta-card > * { position: relative; }
.cta-final h2 { font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -.025em; margin: 0 0 14px; color: #fff; font-weight: 700; }
.cta-final p { color: rgba(255, 255, 255, .82); font-size: 17px; margin: 0 0 32px; }
.cta-final .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-final .btn-primary { background: #fff; color: var(--blue) !important; box-shadow: 0 10px 28px rgba(0, 0, 0, .25); }
.cta-final .btn-primary:hover { filter: none; background: var(--sky); }
.cta-final .btn-outline { background: transparent; border-color: rgba(255, 255, 255, .4); color: #fff !important; box-shadow: none; }
.cta-final .btn-outline:hover { border-color: #fff; color: #fff !important; }

/* ---------- Pages internes ---------- */
.page-hero {
  background:
    radial-gradient(680px 360px at 16% -14%, rgba(46, 111, 232, .09), transparent 60%),
    linear-gradient(180deg, #E8ECF4, var(--bg));
  border-bottom: 1px solid var(--line);
  padding: 72px 0 60px;
}
.page-hero h1 { margin: 12px 0 14px; font-size: clamp(32px, 4.1vw, 46px); letter-spacing: -.028em; color: var(--txt-1); line-height: 1.08; font-weight: 700; }
.page-hero p { color: var(--txt-2); font-size: 18px; max-width: 62ch; margin: 0; }

/* Fonctionnalités par catégorie */
.featcat { display: grid; grid-template-columns: 320px 1fr; gap: 56px; padding: 60px 0; border-bottom: 1px solid var(--line); }
.featcat:last-child { border-bottom: 0; }
.featcat .num { font-family: var(--mono); font-size: 13px; color: var(--blue); font-weight: 700; }
.featcat h2 { margin: 8px 0 10px; font-size: 25px; letter-spacing: -.02em; color: var(--txt-1); }
.featcat .desc { color: var(--txt-2); font-size: 15.5px; }
.featcat-items { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; align-content: start; }
.featcat-items .item {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.featcat-items .item h3 { margin: 0 0 5px; font-size: 15.5px; letter-spacing: -.008em; color: var(--txt-1); display: flex; gap: 10px; align-items: center; }
.featcat-items .item h3::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-2); flex: none; }
.featcat-items .item p { margin: 0; font-size: 14px; color: var(--txt-2); }

/* ---------- Article ---------- */
.article-body { max-width: 760px; margin: 0 auto; font-size: 17px; color: #2B3648; }
.article-body h2 { font-size: 26px; letter-spacing: -.018em; margin: 42px 0 14px; color: var(--txt-1); }
.article-body h3 { font-size: 20px; margin: 30px 0 10px; color: var(--txt-1); }
.article-body p { margin: 0 0 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 26px; }
.article-body li { margin-bottom: 6px; }
.article-body blockquote {
  margin: 26px 0; padding: 16px 24px; border-left: 3px solid var(--blue);
  background: var(--card); border-radius: 0 12px 12px 0; color: var(--txt-2);
  box-shadow: var(--shadow-sm);
}
.article-body img { border-radius: 12px; }
.article-meta { display: flex; gap: 14px; align-items: center; font-family: var(--mono); font-size: 13px; color: var(--txt-3); }
.article-cover { max-width: 900px; margin: -36px auto 40px; padding: 0 28px; position: relative; z-index: 2; }
.article-cover img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-md); }

/* ---------- Formulaires publics ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--txt-1); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 15px; border: 1px solid var(--line); border-radius: 11px;
  font-family: var(--font); font-size: 15px; color: var(--txt-1); background: var(--card);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue-2); box-shadow: 0 0 0 3px rgba(46, 111, 232, .14);
}
.field textarea { min-height: 140px; resize: vertical; }

.notice { border-radius: 12px; padding: 14px 18px; font-size: 15px; margin-bottom: 22px; }
.notice-ok { background: #EAF7F1; border: 1px solid #BEE7D4; color: #0B6B4A; }
.notice-err { background: #FDF0F0; border: 1px solid #F3C6C6; color: #9B2226; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.contact-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-sm);
}
.contact-card h3 { margin: 0 0 14px; font-size: 17px; letter-spacing: -.012em; }
.contact-card p, .contact-card a { font-size: 15px; color: var(--txt-2); margin: 0 0 9px; display: block; }

/* Calendly */
.calendly-frame { border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--card); }
.calendly-frame iframe { display: block; width: 100%; height: 720px; border: 0; }
.calendly-placeholder {
  border: 1.5px dashed var(--accent-line); border-radius: var(--r-lg); padding: 60px 32px;
  text-align: center; color: var(--txt-3); background: var(--card);
}
.calendly-placeholder strong { color: var(--txt-2); }

/* ---------- Pied de page ---------- */
.footer { background: var(--sunken); border-top: 1px solid var(--line); color: var(--txt-2); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 44px; margin-bottom: 48px; }
.footer-brand img { width: 172px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; margin: 0; max-width: 34ch; line-height: 1.6; color: var(--txt-3); }
.footer-col h3 { color: var(--txt-1); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 16px; font-weight: 700; }
.footer-col a { display: block; color: var(--txt-2); text-decoration: none; font-size: 14.5px; margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: var(--blue); }
.footer-col p { font-size: 14.5px; margin: 0 0 10px; }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13.5px; color: var(--txt-3);
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--txt-2); text-decoration: none; }
.footer-bottom a:hover { color: var(--blue); }

/* ---------- Apparitions ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .orbit-chip { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-in { grid-template-columns: 1fr; gap: 52px; padding: 64px 0 72px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { order: 2; }

  .pillars { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .tile-7, .tile-5, .tile-4 { grid-column: span 1; }
  .band-in { grid-template-columns: 1fr; gap: 40px; }
  .featcat { grid-template-columns: 1fr; gap: 22px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 540px; }
  .cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .cards, .featcat-items, .form-grid, .bento { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }

  .navtoggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; padding: 10px;
    background: var(--card); border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
  }
  .navtoggle span { display: block; height: 2px; background: var(--txt-1); border-radius: 2px; transition: transform .2s, opacity .2s; }
  .navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mainnav {
    display: none; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 12px 28px 22px; box-shadow: var(--shadow-md);
  }
  .mainnav.open { display: flex; }
  .mainnav a { padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 16px; }
  .mainnav .btn-nav { margin-top: 16px; justify-content: center; border-bottom: 0; }

  .section { padding: 64px 0; }
  .band-in { padding: 64px 0; }
  .orbit-wrap { width: min(340px, 92vw); }
  .orbit-chip { font-size: 12px; padding: 7px 13px 7px 8px; }
  .orbit-core { width: 84px; height: 84px; border-radius: 22px; font-size: 21px; }
  .tile { min-height: 200px; padding: 26px; }
  .deco-gauge { width: 190px; height: 190px; top: -64px; right: -64px; }
  .deco-checks, .deco-bars { display: none; }
  .cta-final .cta-card { padding: 52px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- Liste des articles : filtres et recherche ---------- */
.list-tools { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; padding: 7px 14px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--line); color: var(--txt-2);
  font-size: 13.5px; font-weight: 500; text-decoration: none; transition: border-color .15s, color .15s, background .15s;
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.on { background: var(--blue); border-color: var(--blue); color: #fff; }
.search { display: flex; gap: 8px; }
.search input {
  width: 260px; max-width: 100%; padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--font); font-size: 14.5px; background: var(--card); color: var(--txt-1);
}
.search input:focus { outline: none; border-color: var(--blue-2); box-shadow: 0 0 0 3px rgba(46, 111, 232, .14); }
.search .btn { padding: 10px 18px; font-size: 14px; }
.list-status { color: var(--txt-2); font-size: 14.5px; margin: -14px 0 24px; }
.card-cat { color: var(--blue); font-family: var(--font); font-weight: 600; letter-spacing: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.article-meta .chip { padding: 4px 11px; font-size: 12px; font-family: var(--font); }
.pricing-notes .note-link { text-decoration: none; color: var(--blue); font-weight: 600; border-color: var(--accent-line); }
.pricing-notes .note-link:hover { background: var(--sky); }

@media (max-width: 720px) {
  .list-tools { flex-direction: column; align-items: stretch; }
  .search input { width: 100%; }
  .search { flex-direction: column; }
}
