:root {
  /* Charte Infographis — logo officiel bleu/orange */
  --brand: #0060c8;
  --brand-dark: #004a9c;
  --brand-darker: #003d82;
  --steel: #5a6b7a;
  --teal-soft: #7a8fa0;
  --ink: #1a1a1a;
  --bg-warm: #f5f7fa;
  --highlight: #f89800;
  --brand-tint: #e8f1fb;

  --slate-900: #0b1220;
  --slate-800: #121820;
  --slate-700: #2a3340;
  --slate-600: #4a5564;
  --slate-500: #6b7785;
  --slate-400: #8b97a5;
  --slate-300: #c5ccd6;
  --slate-200: #e2e7ee;
  --slate-100: #eef2f6;
  --slate-50: #f5f7fa;
  /* Primary = bleu logo; accent = orange logo */
  --blue-700: #004a9c;
  --blue-600: #0060c8;
  --blue-500: #1a78d8;
  --blue-50: #e8f1fb;
  --accent: #f89800;
  --accent-dark: #d98000;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 6px -1px rgb(11 18 32 / 0.07), 0 2px 4px -2px rgb(11 18 32 / 0.05);
  --shadow-lg: 0 10px 25px -5px rgb(11 18 32 / 0.1), 0 8px 10px -6px rgb(11 18 32 / 0.06);
  --max: 1100px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  outline-offset: 2px;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo img {
  height: 40px;
  width: auto;
  max-width: min(220px, 52vw);
  flex-shrink: 0;
  display: block;
}
.logo:hover { text-decoration: none; opacity: 0.92; }
@media (max-width: 768px) {
  .logo img {
    height: 30px;
    max-width: min(180px, 58vw);
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--slate-300);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
  cursor: pointer;
  font-family: inherit;
}
.nav-toggle:hover { background: var(--slate-100); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
}
.site-nav a {
  color: var(--slate-700);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.25rem 0;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a.is-active {
  color: var(--blue-600);
  font-weight: 600;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-left: 0.5rem;
}
.nav-cta a.phone {
  color: var(--slate-700);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta a.phone:hover { color: var(--accent); }

@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    gap: 0;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 0.65rem 0.5rem;
    border-bottom: 1px solid var(--slate-100);
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .nav-cta .btn { width: 100%; }
  .site-header .inner { position: relative; flex-wrap: wrap; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 11px;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.3;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  font-family: inherit;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}
.btn-primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: var(--white);
}
/* Contraste: forcer blanc sur CTA bleu (#0060c8) même sous .site-nav a */
a.btn-primary,
a.btn-primary:visited {
  color: var(--white);
}
a.btn-primary:hover,
a.btn-primary:active,
a.btn-primary:focus-visible {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: var(--white);
}
.site-nav .btn-primary,
.site-nav a.btn-primary,
.nav-cta .btn-primary,
.nav-cta a.btn-primary {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
}
.site-nav .btn-primary:hover,
.site-nav .btn-primary:active,
.site-nav a.btn-primary:hover,
.site-nav a.btn-primary:active,
.nav-cta .btn-primary:hover,
.nav-cta .btn-primary:active,
.nav-cta a.btn-primary:hover,
.nav-cta a.btn-primary:active {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--blue-600);
  border-color: var(--blue-600);
}
.btn-secondary:hover {
  background: var(--blue-50);
  border-color: var(--blue-700);
  color: var(--blue-700);
}
.btn-block { width: 100%; }
.btn-sm {
  padding: 0.7rem 1.45rem;
  font-size: 0.9rem;
  line-height: 1.4;
  white-space: nowrap;
}
.nav-cta .btn,
.nav-cta .btn-sm {
  padding: 0.75rem 1.55rem;
  letter-spacing: 0.01em;
}

/* Sections */
section { padding: 3.5rem 0; }
.section-alt { background: var(--white); }
.section-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.section-intro {
  color: var(--slate-600);
  max-width: 42rem;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}
.section-head { margin-bottom: 0.25rem; }
.page-hero {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(160deg, var(--blue-50) 0%, var(--slate-50) 45%, var(--white) 100%);
}
.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.15rem);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.page-hero .lead {
  font-size: 1.0625rem;
  color: var(--slate-600);
  max-width: 40rem;
}

/* Hero home */
.hero {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(160deg, var(--blue-50) 0%, var(--slate-50) 45%, var(--white) 100%);
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.5rem;
  }
}
.hero-copy { min-width: 0; }
.hero-visual {
  display: none;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-visual { display: flex; }
}
.hero-visual img,
.hero-visual svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}
.page-hero-with-visual .wrap {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .page-hero-with-visual .wrap {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  }
}
.page-hero-visual {
  display: none;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-hero-visual { display: flex; }
}
.page-hero-visual img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}
.contact-illus {
  margin-top: 1.5rem;
  max-width: 280px;
}
.contact-illus img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.text-accent {
  color: var(--accent);
  font-weight: 600;
}
.section-title {
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 2px;
  background: var(--accent);
}
.page-hero h1 .text-accent,
.hero h1 .text-accent {
  color: var(--accent);
  font-weight: inherit;
}
.pack-price .amount,
.pack-price strong {
  color: var(--accent);
}
.step-num {
  color: var(--accent);
}
.hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 22ch;
}
.hero-lead {
  font-size: 1.125rem;
  color: var(--slate-700);
  max-width: 38rem;
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1rem;
  color: var(--slate-600);
  max-width: 38rem;
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero-proof {
  font-size: 0.875rem;
  color: var(--slate-500);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.hero-proof span::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.5rem;
  font-weight: 700;
}
.hero-proof span:first-child::before { content: none; margin: 0; }

/* Benefits */
.benefits-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border-color: var(--slate-300);
}
.benefit-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.benefit-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.3rem;
  box-sizing: border-box;
}
.benefit-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.benefit-card p {
  font-size: 0.9375rem;
  color: var(--slate-600);
}

/* Packs */
.packs-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 900px) {
  .packs-grid { grid-template-columns: repeat(3, 1fr); }
}
.pack {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pack:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.09);
}
.pack-featured {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-lg);
  outline: 2px solid var(--blue-500);
  outline-offset: -1px;
}
.pack-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.pack-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
  margin-top: 0.35rem;
}
.pack-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.pack-price small {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-500);
}
.pack-for {
  font-size: 0.9rem;
  color: var(--slate-600);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--slate-100);
}
.pack-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-500);
  margin-bottom: 0.5rem;
}
.pack ul {
  list-style: none;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.pack ul li {
  font-size: 0.875rem;
  color: var(--slate-700);
  padding: 0.3rem 0 0.3rem 1.35rem;
  position: relative;
  line-height: 1.45;
}
.pack ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-600);
  font-weight: 700;
}
.pack-excluded {
  background: var(--slate-50);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 1rem;
}
.pack-excluded .pack-label { color: var(--slate-500); }
.pack-excluded ul li::before {
  content: "–";
  color: var(--slate-400);
}
.pack-excluded ul li { color: var(--slate-500); }
.pack-note {
  font-size: 0.8125rem;
  color: var(--slate-500);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.45;
}
.pack .btn { margin-top: auto; }
.cms-line {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--slate-600);
  padding: 0.85rem 1rem;
  background: var(--slate-100);
  border-radius: 8px;
}
.more-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.975rem;
}

/* Abonnement */
.abo-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
}
.abo-list li {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  padding: 1rem 1.15rem;
  font-size: 0.975rem;
  color: var(--slate-700);
}
.abo-list strong { color: var(--slate-900); }
.abo-reassure {
  background: var(--blue-50);
  border-left: 4px solid var(--blue-600);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.15rem;
  font-size: 0.975rem;
  color: var(--slate-700);
}
.abo-fine {
  font-size: 0.8125rem;
  color: var(--slate-500);
  margin-top: 1rem;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(4, 1fr); }
}
.portfolio-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.portfolio-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}
.portfolio-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: top center;
  background: var(--slate-100);
}
.portfolio-card-body {
  padding: 1rem 1.05rem 1.1rem;
}
.portfolio-card h3 {
  color: var(--slate-900);
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.portfolio-card p {
  color: var(--slate-600);
  font-size: 0.875rem;
  line-height: 1.45;
}
.portfolio-grid-preview {
  margin-top: 0.5rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.testimonial blockquote {
  font-size: 0.9rem;
  color: var(--slate-700);
  line-height: 1.55;
  flex-grow: 1;
  quotes: "«\00a0" "\00a0»";
}
.testimonial blockquote::before { content: open-quote; }
.testimonial blockquote::after { content: close-quote; }
.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--slate-900);
}
.testimonial-full {
  margin-bottom: 1.25rem;
}
.testimonial-full blockquote { font-size: 1rem; }

/* Zone & process */
.zone-text {
  color: var(--slate-600);
  max-width: 42rem;
  margin-bottom: 2.25rem;
  font-size: 1.0625rem;
}
.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1.25rem;
}
.process-steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 640px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  counter-increment: step;
  position: relative;
}
.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.35rem;
}
.step p {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.5;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; align-items: start; }
}
.contact-info {
  background: var(--slate-800);
  color: var(--slate-200);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}
.contact-info h2 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.contact-info > p {
  font-size: 0.975rem;
  margin-bottom: 1.5rem;
  color: var(--slate-300);
}
.contact-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.contact-list li {
  font-size: 0.9375rem;
  line-height: 1.4;
}
.contact-list strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-400);
  margin-bottom: 0.15rem;
  font-weight: 600;
}
.contact-list a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}
.contact-list a:hover { text-decoration: underline; color: var(--accent); }

.form-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}
.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 0.35rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--slate-300);
  border-radius: 8px;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--slate-800);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--slate-400);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-note {
  font-size: 0.8125rem;
  color: var(--slate-500);
  margin-top: 0.85rem;
}
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-500);
  border-radius: 8px;
  color: var(--slate-800);
  font-size: 0.9rem;
}
.form-success.is-visible { display: block; }
.form-error {
  display: none;
  margin-top: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  font-size: 0.9rem;
}
.form-error.is-visible { display: block; }

/* Legal pages */
.legal-content {
  max-width: 42rem;
  padding: 2.5rem 0 3.5rem;
}
.legal-content h1 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.legal-content .updated {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-bottom: 2rem;
}
.legal-content h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
}
.legal-content p, .legal-content li {
  font-size: 0.975rem;
  color: var(--slate-700);
  margin-bottom: 0.75rem;
}
.legal-content ul {
  margin: 0.5rem 0 1rem 1.25rem;
}
.legal-content a { word-break: break-word; }

.legal-content .legal-note {
  font-size: 0.9rem;
  color: var(--slate-600);
  background: var(--slate-50, #f8fafc);
  border-left: 3px solid var(--slate-300, #cbd5e1);
  padding: 0.75rem 1rem;
  margin: 1rem 0 1.25rem;
}
.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.legal-content .table-wrap {
  overflow-x: auto;
  margin: 0.75rem 0 1.25rem;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.legal-content th,
.legal-content td {
  border: 1px solid var(--slate-200, #e2e8f0);
  padding: 0.55rem 0.75rem;
  text-align: left;
  vertical-align: top;
  color: var(--slate-700);
}
.legal-content th {
  background: var(--slate-50, #f8fafc);
  font-weight: 700;
  color: var(--slate-900);
}
.legal-content .legal-pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8rem;
  white-space: pre-wrap;
  background: var(--slate-50, #f8fafc);
  border: 1px solid var(--slate-200, #e2e8f0);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  margin: 0.75rem 0 1rem;
  color: var(--slate-700);
  overflow-x: auto;
}
.legal-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85em;
  background: var(--slate-100, #f1f5f9);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}
.legal-content ol {
  margin: 0.5rem 0 1rem 1.25rem;
}
.legal-content ol li {
  margin-bottom: 0.5rem;
}




/* FAQ */
.faq .section-intro {
  max-width: 40rem;
}
.faq-list {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200, #e2e8f0);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--slate-900, #0f172a);
  padding: 0.9rem 1.1rem;
  position: relative;
  padding-right: 2.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue-600, #0060c8);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "–";
  color: var(--accent, #f89800);
}
.faq-item summary:hover {
  color: var(--blue-600, #0060c8);
}
.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--slate-600, #475569);
  line-height: 1.65;
  font-size: 0.95rem;
}
.faq-item a {
  color: var(--blue-600, #0060c8);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* CTA strip */
.cta-strip {
  background: var(--slate-800);
  color: var(--slate-200);
  padding: 2.5rem 0;
  text-align: center;
}
.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.cta-strip p {
  margin-bottom: 1.25rem;
  color: var(--slate-300);
  max-width: 36rem;
  margin-inline: auto;
}
.cta-strip a.btn-primary,
.cta-strip a.btn-primary:visited,
.cta-strip .btn-primary {
  background: var(--white);
  color: var(--slate-900);
  border-color: var(--white);
}
.cta-strip a.btn-primary:hover,
.cta-strip a.btn-primary:active,
.cta-strip a.btn-primary:focus-visible,
.cta-strip .btn-primary:hover {
  background: var(--blue-50);
  border-color: var(--blue-50);
  color: var(--slate-900);
}

/* Footer */

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}
.footer-brand img {
  height: 36px;
  width: auto;
  max-width: 200px;
  display: block;
}
.footer-brand strong { color: var(--white); font-size: 1rem; }

.site-footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.875rem;
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-col h3 {
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.footer-col p, .footer-col a {
  color: var(--slate-400);
  line-height: 1.6;
}
.footer-col a:hover { color: var(--white); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.35rem; }
.footer-bottom {
  border-top: 1px solid var(--slate-700);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--slate-500);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* Scroll reveal (classe ajoutée via JS seulement si motion OK) */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.reveal.is-inview {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .benefit-card:hover,
  .pack:hover,
  .portfolio-card:hover {
    transform: none;
  }
  .reveal,
  .reveal.is-inview {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* Honeypot anti-spam — invisible aux humains, pas dans le flux clavier */
.hp-trap {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
