/* ═══════════════════════════════════════════
   mon-prof.fr — Pages internes SEO
   Cohérent avec le design de la homepage
   ═══════════════════════════════════════════ */

:root {
  --blue: #1a4fd6;
  --blue-dark: #1240b0;
  --blue-light: #e8f0ff;
  --accent: #f5a623;
  --green: #22c55e;
  --text: #0d1b3e;
  --text-muted: #64748b;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --radius: 16px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER (identique homepage) ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge {
  width: 52px;
  height: 52px;
  background: #1a1a2e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px;
}

.logo-badge svg { width: 100%; height: 100%; }

.logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.03em;
}

nav { display: flex; align-items: center; gap: 24px; }
nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
nav a:hover { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,79,214,0.3); text-decoration: none; }
.btn-lg { padding: 14px 32px; font-size: 17px; }

/* ── BREADCRUMBS ── */
.breadcrumbs {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue); text-decoration: underline; }
.breadcrumbs span { margin: 0 6px; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(160deg, var(--blue-light) 0%, #fff 60%);
  padding: 48px 0 56px;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.page-hero h1 em { font-style: normal; color: var(--blue); }

.page-hero .intro {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.hero-badge-item .icon {
  width: 32px;
  height: 32px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--green);
}

/* ── SEO PAGE UNIFIED GRID (hero + content + sticky form) ── */
.seo-page-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  padding: 48px 0 0;
}
.seo-page-left {}
.seo-hero-zone {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
}
.seo-hero-zone h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.seo-hero-zone h1 em { font-style: normal; color: var(--blue); }
.seo-hero-zone .intro {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.seo-page-right {
  position: sticky;
  top: 80px;
  align-self: start;
}

/* ── CONTENT LAYOUT ── */

/* Hero with embedded form - 2 column layout */
.page-hero--with-form { padding: 40px 0 48px; }
.hero-form-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.hero-form-text { padding-top: 8px; }
.hero-form-text h1 { margin-bottom: 14px; }
.hero-form-text .intro { margin-bottom: 20px; }
.hero-form-text .hero-badges { margin-top: 16px; margin-bottom: 20px; }
.hero-form-stats {
  display: flex;
  gap: 28px;
  flex-wrap: nowrap;
}
.hero-form-stat strong {
  white-space: nowrap;
}
.hero-form-stat {
  display: flex;
  flex-direction: column;
}
.hero-form-stat strong {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-form-stat span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Hero form card - white card */
.hero-form-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
  padding: 32px;
  border: 1px solid var(--gray-200);
}
.hero-form-card h3 {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}
.hero-form-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
/* Hero form fields - light theme */
.hero-form-card .ef-select,
.hero-form-card .ef-input {
  color: var(--text);
  background: white;
  border: 2px solid var(--gray-200);
}
.hero-form-card .ef-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.hero-form-card .ef-select:focus,
.hero-form-card .ef-input:focus { border-color: var(--blue); }
.hero-form-card .ef-input::placeholder { color: var(--text-muted); }
.hero-form-card .ef-note { color: var(--text-muted); }
.hero-form-card .ef-success p { color: var(--text); }
.hero-form-card .ef-step-context { font-size: 13px; color: var(--text-muted); background: var(--gray-50); border-left: 3px solid var(--blue); padding: 8px 12px; border-radius: 0 8px 8px 0; margin-bottom: 4px; line-height: 1.5; }
.ef-field { margin-bottom: 4px; }
.ef-field label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 5px; font-family: 'Sora', sans-serif; }
.ef-prefilled {
  padding: 11px 14px;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  padding: 56px 0;
}

.main-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--text);
}

.main-content h2:first-child { margin-top: 0; }

.main-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
}

/* ── TARIF BOX ── */
.tarif-box {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: white;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  margin-bottom: 28px;
}

.tarif-box .price {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.tarif-box .price-label { font-size: 14px; opacity: 0.8; margin-top: 4px; }
.tarif-box .price-note { font-size: 12px; opacity: 0.6; margin-top: 8px; }

/* ── SIDEBAR ── */
/* ── SIDEBAR FORM CARD (sticky) ── */
.sidebar-form-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  padding: 24px;
  border: 1px solid var(--gray-200);
}
.sidebar-form-card h3 {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}
/* ── EMBEDDED FORM — styles de base (valables partout) ── */
.embedded-form { display: flex; flex-direction: column; gap: 0; }
.ef-step { display: none; flex-direction: column; gap: 10px; }
.ef-step.active { display: flex; }

.ef-select,
.ef-input {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: white;
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
}
.ef-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.ef-select option, .ef-select optgroup { color: var(--text); background: white; }
.ef-select:focus, .ef-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,79,214,0.1);
}
.ef-input::placeholder { color: var(--text-muted); }

.ef-btn {
  width: 100%;
  padding: 13px 20px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  text-align: center;
  letter-spacing: -0.01em;
}
.ef-btn:hover:not(:disabled) {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,79,214,0.3);
}
.ef-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
.ef-btn--submit { background: linear-gradient(135deg, #16a34a, #15803d); }
.ef-btn--submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #15803d, #166534);
  box-shadow: 0 4px 14px rgba(22,163,74,0.3);
}

.ef-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
}
.ef-consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.ef-checkbox { width: auto; flex-shrink: 0; margin-top: 3px; accent-color: var(--blue); }

.ef-loading { text-align: center; padding: 20px 0; color: var(--text-muted); font-size: 14px; }
.ef-spinner {
  width: 32px; height: 32px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.ef-success__icon { font-size: 28px; text-align: center; margin-bottom: 8px; }
.ef-success__title {
  font-size: 17px; font-weight: 700; color: var(--text);
  text-align: center; margin-bottom: 8px; font-family: 'Sora', sans-serif;
}
.ef-result p { font-size: 13px; color: var(--text-muted); text-align: center; }

.ef-consent--light { color: var(--text-muted); }

.ef-select--light, .ef-input--light {
  color: var(--text) !important;
  background: white !important;
  border: 2px solid var(--gray-200) !important;
}
.ef-select--light option, .ef-select--light optgroup { color: var(--text); background: white; }
.ef-input--light::placeholder { color: var(--text-muted) !important; }
.ef-select--light:focus, .ef-input--light:focus { border-color: var(--blue) !important; }
.ef-select--light { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important; background-repeat: no-repeat !important; background-position: right 12px center !important; }

.sidebar { position: sticky; top: 80px; align-self: start; }

.sidebar-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.sidebar-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'Sora', sans-serif;
}

.sidebar-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-card ul li a {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  background: var(--gray-50);
  transition: all 0.2s;
  text-decoration: none;
}
.sidebar-card ul li a:hover { background: var(--blue-light); color: var(--blue); }

/* ── MINI SUBJECT CARDS (SEO pages) ── */
.mini-subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
  margin: 16px 0 32px;
}
.mini-subject-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}
.mini-subject-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(26,79,214,0.08);
  text-decoration: none;
  transform: translateY(-1px);
}
.mini-subject-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mini-subject-name {
  font-size: 13px;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}
.mini-subject-count {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── INTERNAL LINKS GRID ── */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 20px 0 32px;
}

.links-grid a {
  display: block;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s;
  text-decoration: none;
}

.links-grid a:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}

/* ── FAQ ── */
.faq-section { margin: 40px 0; }

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  transition: background 0.2s;
}

.faq-question:hover { background: var(--gray-50); }
.faq-question .icon { font-size: 18px; color: var(--blue); transition: transform 0.3s; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CTA BANNER ── */
/* ── CTA BANNER (full-width conversion block) ── */
.cta-banner {
  background: var(--text);
  border-radius: 16px;
  padding: 0;
  margin: 48px 0;
  overflow: hidden;
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 200px;
}
.cta-banner__text {
  padding: 40px 40px 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-banner__text h2 {
  font-size: 24px;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.cta-banner__text p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 380px;
}
.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  align-self: flex-start;
  font-family: 'DM Sans', sans-serif;
}
.cta-banner__btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,79,214,0.35);
  text-decoration: none;
}
.cta-banner__proof {
  background: rgba(255,255,255,0.04);
  border-left: 1px solid rgba(255,255,255,0.08);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.cta-banner__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cta-banner__stat strong {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  color: white;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.cta-banner__stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cta-banner__badge {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 500;
}
.cta-banner__badge:last-child { border-bottom: none; }

/* ── CTA BANNER WITH FORM ── */
.cta-banner--with-form .cta-banner__inner {
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}
.cta-banner--with-form .cta-banner__text {
  padding: 36px 36px 36px 44px;
}
.cta-banner__badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 16px;
}
.cta-banner__badges-row span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.cta-banner__form {
  background: rgba(255,255,255,0.05);
  border-left: 1px solid rgba(255,255,255,0.08);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Embedded form inside CTA banner (dark background) */
.cta-banner__form .embedded-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cta-banner__form .ef-step {
  display: none;
  flex-direction: column;
  gap: 10px;
}
.cta-banner__form .ef-step.active {
  display: flex;
}
.cta-banner__form .ef-select,
.cta-banner__form .ef-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  background: rgba(255,255,255,0.1);
  color: white;
  appearance: none;
  -webkit-appearance: none;
}
.cta-banner__form .ef-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.cta-banner__form .ef-select option,
.cta-banner__form .ef-select optgroup {
  color: var(--text);
  background: white;
}
.cta-banner__form .ef-select:focus,
.cta-banner__form .ef-input:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
}
.cta-banner__form .ef-input::placeholder {
  color: rgba(255,255,255,0.45);
}
.cta-banner__form .ef-btn {
  padding: 12px 20px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  text-align: center;
}
.cta-banner__form .ef-btn:hover:not(:disabled) {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.cta-banner__form .ef-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cta-banner__form .ef-btn--submit {
  background: linear-gradient(135deg, #16a34a, #15803d);
}
.cta-banner__form .ef-btn--submit:hover {
  background: linear-gradient(135deg, #15803d, #166534);
}
.cta-banner__form .ef-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 8px;
}
.cta-banner__form .ef-consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  cursor: pointer;
}
.cta-banner__form .ef-consent a {
  color: rgba(255,255,255,0.8);
}
.cta-banner__form .ef-checkbox {
  width: auto;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--blue);
}
.cta-banner__form .ef-step-context {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.07);
  border-left: 3px solid var(--blue);
  padding: 8px 12px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2px;
  line-height: 1.5;
}
/* Loading spinner in CTA */
.cta-banner__form .ef-loading {
  text-align: center;
  padding: 20px 0;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.cta-banner__form .ef-spinner {
  width: 32px; height: 32px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}
.cta-banner__form .ef-success__icon { font-size: 28px; text-align: center; margin-bottom: 8px; }
.cta-banner__form .ef-success__title {
  font-size: 17px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 8px;
  font-family: 'Sora', sans-serif;
}
.cta-banner__form .ef-result p { font-size: 13px; color: rgba(255,255,255,0.7); text-align: center; }
/* Responsive CTA with form */
@media (max-width: 768px) {
  .cta-banner--with-form .cta-banner__inner { grid-template-columns: 1fr; }
  .cta-banner__form { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding: 24px; }
  .cta-banner--with-form .cta-banner__text { padding: 28px 24px 20px; }
}

/* ── FOOTER (identique homepage) ── */
footer {
  background: #0d1b3e;
  color: rgba(255,255,255,0.65);
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr 160px;
  gap: 32px 40px;
  margin-bottom: 48px;
}
.footer-matieres-section { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-matieres-section h4 { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: white; margin-bottom: 16px; }
.footer-matieres-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 24px; }
.footer-matieres-grid li a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.2s; text-decoration: none; }
.footer-matieres-grid li a:hover { color: white; }

.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; margin-top: 12px; }
.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.2s; text-decoration: none; }
.footer-col ul li a:hover { color: white; }

.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px; background: rgba(255,255,255,0.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 16px; text-decoration: none; color: rgba(255,255,255,0.7); transition: background 0.2s;
}
.social-btn:hover { background: var(--blue); color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom-links a:hover { color: white; }

/* ── CTA INLINE (conversion bars) ── */
.cta-inline {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 14px;
  margin: 32px 0;
  transition: box-shadow 0.25s;
}
.cta-inline:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.cta-inline--blue {
  background: #f0f5ff;
  border: 1px solid #d4e0f7;
}
.cta-inline--green {
  background: #f0fdf4;
  border: 1px solid #d1fae5;
}
.cta-inline--dark {
  background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
  border: none;
  color: white;
}
.cta-inline--dark .cta-inline__content strong { color: white; }
.cta-inline--dark .cta-inline__content span { color: rgba(255,255,255,0.7); }
.cta-inline--dark .btn { background: white; color: var(--text); }
.cta-inline--dark .btn:hover { background: #f1f5f9; }
.cta-inline__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.7);
}
.cta-inline--dark .cta-inline__icon { background: rgba(255,255,255,0.1); }
.cta-inline__content { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.cta-inline__content strong { font-size: 15px; font-family: 'Sora', sans-serif; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.cta-inline__content span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.cta-inline .btn {
  flex-shrink: 0;
  white-space: nowrap;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
}

/* ── BLOG GRID (index) ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  padding: 48px 0;
}
.blog-card {
  display: flex; flex-direction: column; background: white;
  border: 1px solid var(--gray-200); border-radius: 20px;
  overflow: hidden; transition: all 0.25s; text-decoration: none; color: var(--text);
}
.blog-card:hover { border-color: var(--blue); box-shadow: 0 12px 36px rgba(26,79,214,0.1); transform: translateY(-4px); text-decoration: none; }
.blog-card__image { height: 140px; background: linear-gradient(135deg, var(--blue-light) 0%, #d0e0ff 100%); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 12px; color: var(--text-muted); }
.blog-card__cat { display: inline-block; padding: 3px 10px; background: var(--blue-light); color: var(--blue); font-size: 11px; font-weight: 700; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.04em; }
.blog-card__title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; line-height: 1.35; }
.blog-card__excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.blog-card__footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--gray-100); font-size: 13px; color: var(--text-muted); }
.blog-card__arrow { font-size: 18px; color: var(--blue); transition: transform 0.2s; }
.blog-card:hover .blog-card__arrow { transform: translateX(4px); }

/* ── BLOG CARD MINI (related) ── */
.blog-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin: 16px 0 32px; }
.blog-card-mini { display: block; padding: 20px; border: 1px solid var(--gray-200); border-radius: 14px; text-decoration: none; color: var(--text); transition: all 0.2s; }
.blog-card-mini:hover { border-color: var(--blue); background: var(--blue-light); text-decoration: none; }
.blog-card-mini__cat { display: inline-block; padding: 2px 8px; background: var(--blue-light); color: var(--blue); font-size: 10px; font-weight: 700; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.blog-card-mini h3 { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; line-height: 1.35; margin-bottom: 6px; }
.blog-card-mini p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 8px; }
.blog-card-mini__meta { font-size: 11px; color: var(--text-muted); }

/* ── BLOG ARTICLE ── */
.blog-article-content h2 { margin-top: 36px; }
.blog-article-content p { font-size: 16px; line-height: 1.8; }
.blog-article-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.sidebar-card--cta { background: var(--gray-50); border-color: var(--gray-200); }

/* ── HEADER CTA AREA ── */
.header-cta { display: flex; align-items: center; gap: 12px; }

/* ── BURGER MENU ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 150;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 0;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav-cta {
  margin-top: 24px;
  background: var(--blue);
  color: white !important;
  text-align: center;
  border-radius: 50px;
  padding: 16px 24px !important;
  font-weight: 700;
  border-bottom: none !important;
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--gray-100);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── STICKY MOBILE CTA ── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: white;
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-mobile-cta .btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  justify-content: center;
}

/* ── TOUCH TARGETS — min 44px ── */
.links-grid a { min-height: 44px; display: flex; align-items: center; }
.footer-col ul li a { min-height: 36px; display: flex; align-items: center; }
.sidebar-card ul li a { min-height: 44px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  nav { display: none; }
  .burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-matieres-grid { grid-template-columns: repeat(3, 1fr); }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 72px; }
  .hero-form-grid { grid-template-columns: 1fr; gap: 28px; }
  .seo-page-grid { grid-template-columns: 1fr; gap: 24px; }
  .seo-page-right { position: static; }
  .seo-page-right .sidebar-form-card { display: block; border-radius: 12px; margin-top: 24px; }
}

@media (max-width: 640px) {
  .seo-page-right .sidebar-form-card { display: block; border-radius: 12px; }
  .page-hero { padding: 32px 0 40px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero .intro { font-size: 15px; }
  .hero-badges { flex-direction: column; gap: 12px; }
  .hero-cta-row .btn-lg { width: 100%; justify-content: center; }
  .hero-form-stats { gap: 16px; }
  .hero-form-stat strong { font-size: 18px; }
  .hero-form-card { padding: 24px; }
  body { overflow-x: hidden; }
  .header-inner { overflow: visible; gap: 8px; }
  .logo-text { display: none; }
  .header-cta .btn { padding: 8px 14px; font-size: 13px; white-space: nowrap; }
  .header-cta { gap: 8px; }
  .cta-banner__inner { grid-template-columns: 1fr; }
  .cta-banner__text { padding: 28px 24px 24px; }
  .cta-banner__text h2 { font-size: 20px; }
  .cta-banner__btn { width: 100%; justify-content: center; }
  .cta-banner__proof { padding: 20px 24px; border-left: none; border-top: 1px solid rgba(255,255,255,0.08); flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .cta-banner__stat { flex-direction: row; gap: 6px; align-items: baseline; }
  .cta-banner__stat strong { font-size: 18px; }
  .cta-inline { flex-direction: column; text-align: center; gap: 16px; }
  .cta-inline .btn { width: 100%; }
  .cta-inline__icon { margin: 0 auto; }
  .links-grid { grid-template-columns: 1fr; }
  .main-content h2 { font-size: 20px; margin: 32px 0 12px; }
  .tarif-box .price { font-size: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-matieres-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-cards-grid { grid-template-columns: 1fr; }
  .blog-card__image { height: 140px; }
  .breadcrumbs { font-size: 12px; }
  .faq-question { font-size: 14px; padding: 14px 16px; }
}

/* ── BLOG FILTERS ── */
.blog-filter {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  background: white;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.blog-filter:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}
.blog-filter.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
