/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-50:  #EAF0F8;
  --blue-100: #C5D5EE;
  --blue-300: #6B95D0;
  --blue-500: #2D5FA6;
  --blue-700: #1A3A6B;
  --blue-900: #0E2244;

  --gray-50:  #E8ECF2;
  --gray-100: #EDEEF1;
  --gray-200: #D8DADF;
  --gray-400: #9EA3AE;
  --gray-600: #5C6270;
  --gray-800: #2C3040;

  --orange-50:  #FEF3E2;
  --orange-500: #E8920A;

  --white: #FFFFFF;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --shadow-card: 0 4px 16px rgba(45, 95, 166, 0.08);
  --shadow-hover: 0 8px 24px rgba(45, 95, 166, 0.14);

  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

a { color: inherit; text-decoration: none; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 0 40px 0 80px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-brand {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-700);
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--gray-600);
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--blue-500); }

.nav-links a.nav-cta { color: var(--white); }
.nav-links a.nav-cta:hover { color: var(--white); background: var(--blue-700); }

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  background: var(--blue-500);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--blue-700); }

/* ── Sections ── */
.section {
  padding: 48px 40px;
}

.section--alt {
  background: var(--gray-50);
}

.section--hero {
  background: #F5F7FA;
}

.section--border {
  border-bottom: none;
}

.section-sep {
  border-top: 1px solid var(--gray-100);
  margin-bottom: 48px;
}

.section--cta {
  background: var(--blue-700);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Hero ── */
.hero-section {
  display: grid;
  grid-template-columns: 47.5% 52.5%;
  grid-template-rows: 448px;
  align-items: stretch;
  background: var(--white);
  overflow: hidden;
  margin-bottom: 32px;
}

.hero-left {
  padding: 88px 48px 86px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-title {
  font-size: 44px;
  font-weight: 700;
  color: var(--blue-700);
  line-height: 1.35;
  margin-bottom: 24px;
}

.hero-accent {
  color: #3B6FD4;
}

.hero-sub {
  font-size: 15px;
  color: #454B5C;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 18px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 20px;
  background: var(--blue-500);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-hero-primary:hover { background: var(--blue-700); }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 20px;
  background: var(--white);
  color: var(--blue-700);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.btn-hero-secondary:hover {
  border-color: var(--blue-300);
  background: var(--blue-50);
}


/* ── Colonne droite hero ── */
.hero-right {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 0;
}

.carousel-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 448px;
}

.c-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  border-bottom-left-radius: 32px;
  overflow: hidden;
}

.c-slide.active { opacity: 1; }

.c-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-arrow {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--white);
  transition: background 0.15s;
  z-index: 2;
}

.c-arrow:hover { background: rgba(255,255,255,0.35); }

.c-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,20,40,0.75) 0%, transparent 100%);
  padding: 32px 20px 18px;
  z-index: 2;
  border-bottom-left-radius: 32px;
}

.c-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.c-dots {
  display: flex;
  gap: 6px;
}

.c-arrows {
  display: flex;
  gap: 8px;
}

.c-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.c-dot.active {
  background: var(--blue-500);
  transform: scale(1.2);
}

.c-captions {
  position: relative;
}

.c-caption {
  display: none;
  gap: 12px;
  align-items: stretch;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.c-caption.active { display: flex; }

.c-caption-icon {
  width: 36px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
}

.c-caption-icon i {
  font-size: 18px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1A3A6B;
  font-size: 12px;
  font-weight: 600;
}

.hero-badge i {
  color: #2D5FA6;
  font-size: 15px;
  flex-shrink: 0;
}

.hero-badge .badge-check {
  color: #2D5FA6;
  font-weight: 700;
}

.c-caption strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}


/* ── Problème 2 colonnes ── */
.problem-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 88px;
  align-items: center;
}

.problem-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.problem-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--blue-700);
  line-height: 1.25;
  margin-bottom: 16px;
}

.problem-left .problem-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── Problème ── */
.section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue-700);
  line-height: 1.3;
  margin-bottom: 20px;
}

.problem-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.problem-tag {
  font-size: 13px;
  color: var(--gray-600);
  padding: 4px 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
}

.problem-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
}

.checks {
  display: flex;
  flex-direction: column;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-800);
  padding: 12px 0;
}

.check-item i {
  color: var(--blue-500);
  font-size: 20px;
  flex-shrink: 0;
}

/* ── Deux chemins ── */
.chemins-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-700);
  text-align: center;
  margin-bottom: 10px;
}

.chemins-sub {
  font-size: 15px;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 40px;
}

.section-inner--centered {
  text-align: center;
  padding-left: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.card {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 95, 166, 0.12);
  border-color: var(--blue-300);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon i {
  font-size: 24px;
}

.card-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.card--diag .card-icon  { background: #EEF4FF; }
.card--diag .card-icon i { color: var(--blue-500); }
.card--diag .card-header h3 { color: var(--blue-500); }
.card--diag .check { color: var(--blue-500); }
.card--diag .card-link { color: var(--blue-500); }

.card--pilote .card-icon  { background: #F0FDF4; }
.card--pilote .card-icon i { color: #16A34A; }
.card--pilote .card-header h3 { color: var(--blue-700); }
.card--pilote .check { color: #16A34A; }
.card--pilote .card-link { color: var(--blue-500); }

.card-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-desc strong {
  color: #374151;
}

.card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-bullets li {
  font-size: 14px;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.check {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 13px;
  margin-top: 1px;
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.15s;
  margin-top: 24px;
}

.card:hover .card-link { gap: 8px; }


/* ── Pourquoi LJ-IT ── */
.args-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}

.arg {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.arg-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.arg-icon-lg {
  font-size: 42px;
  color: var(--blue-700);
  flex-shrink: 0;
}

.arg h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-700);
  line-height: 1.35;
}

.arg p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 210px;
}

.section--cta .section-title {
  color: var(--white);
}

.section--cta .cta-intro {
  color: var(--blue-100);
}

.section--cta .cta-card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.section--cta .cta-card p {
  color: var(--blue-100);
}

.section--cta .btn-primary-lg {
  background: var(--white);
  color: var(--blue-700);
}

.section--cta .btn-primary-lg:hover {
  background: var(--blue-50);
}
.cta-wrap {
  text-align: center;
}

.cta-wrap .section-title {
  margin-bottom: 12px;
}

.cta-intro {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto 28px;
}

.cta-card {
  display: inline-block;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  max-width: 540px;
  width: 100%;
}

.cta-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-primary-lg {
  font-size: 16px;
  font-weight: 500;
  padding: 14px 32px;
  background: var(--blue-500);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-lg:hover { background: var(--blue-700); }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--gray-100);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-400);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 28px;
  width: auto;
  opacity: 1;
}

.footer-copy {
  color: var(--gray-400);
  font-size: 13px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-right a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s;
}

.footer-right a:hover { color: var(--blue-500); }

.footer-right .ti-brand-linkedin {
  font-size: 31px;
  color: #0A66C2;
}

/* ── Hamburger ── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-700);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

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

/* ── Responsive ── */
@media (max-width: 768px) {
  body, html { overflow-x: hidden; }

  /* Nav */
  .nav { padding: 0 20px; position: relative; }
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(15,23,42,0.08);
    z-index: 99;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 24px; font-size: 15px; }
  .nav-links a.nav-cta {
    margin: 8px 24px;
    display: inline-block;
    width: auto;
    border-radius: var(--radius-md);
  }

  /* Hero */
  .hero-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    overflow: visible;
    margin-bottom: 0;
  }
  .hero-left { padding: 36px 24px 28px; overflow: visible; }
  .hero-title { font-size: 30px; }
  .hero-sub { font-size: 14px; white-space: normal; }
  .hero-right { min-height: 260px; }
  .carousel-wrap { min-height: 260px; }
  .hero-badges { flex-direction: column; gap: 8px; }

  /* Sections */
  .section { padding: 40px 20px; }

  /* Problem */
  .problem-grid { grid-template-columns: 1fr; gap: 32px; margin-left: 0; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }

  /* Args */
  .args-grid { grid-template-columns: 1fr 1fr; gap: 32px 16px; }

  /* CTA banner */
  .cta-banner {
    flex-direction: column !important;
    align-items: stretch !important;
    max-width: 100% !important;
    gap: 20px !important;
  }
  .cta-banner-left { flex-direction: column; gap: 12px; }
  .cta-banner .btn-hero-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  /* Footer */
  .footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-right { justify-content: center; flex-wrap: wrap; gap: 16px; }

  /* Diagnostic */
  .why-cards-grid { grid-template-columns: 1fr 1fr; }
  .examples-grid { grid-template-columns: 1fr 1fr; }
  .diag-cards-grid { grid-template-columns: 1fr 1fr; }

  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
  .step { flex-direction: row; text-align: left; gap: 16px; align-items: flex-start; }
  .step-num { margin-bottom: 0; }

  .pricing-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .args-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 26px; }
  .section-title { font-size: 22px; }
  .why-cards-grid { grid-template-columns: 1fr; }
  .examples-grid { grid-template-columns: 1fr; }
  .diag-cards-grid { grid-template-columns: 1fr; }
}

/* ── Illustration problème ── */
.problem-illustration {
  width: 100%;
  max-width: 260px;
  margin-top: 32px;
}

/* ── CTA bannière ── */
.section--cta {
  background: var(--blue-700);
}

.cta-banner {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  max-width: 79%;
  margin: 0 auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cta-banner:hover {
  transform: translateY(-4px);
  border-color: var(--blue-300);
  box-shadow: 0 8px 28px rgba(45, 95, 166, 0.14);
}

.cta-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-banner-icon {
  width: 72px;
  height: 72px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-banner-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--blue-700);
  margin-bottom: 4px;
}

.cta-banner-sub {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

.btn-cta-banner {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  background: var(--white);
  color: var(--blue-700);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}

.btn-cta-banner:hover { background: var(--blue-50); }

.btn-cta-banner--primary {
  background: var(--blue-500);
  color: var(--white);
}

.btn-cta-banner--primary:hover { background: var(--blue-700); }

/* ── Animations scroll ── */
.anim-hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.anim-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

/* ── Bouton CTA pulse ── */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(45, 95, 166, 0.4); }
  70%  { box-shadow: 0 0 0 10px rgba(45, 95, 166, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 95, 166, 0); }
}

.btn-cta-pulse {
  animation: pulse-ring 2s ease-out infinite;
}

.btn-cta-pulse:hover {
  animation: none;
}

/* ── Diagnostic — Exemples ── */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
  max-width: 860px;
  margin: 0 auto;
}

.example-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--gray-800);
  font-weight: 500;
}

.example-item i {
  font-size: 18px;
  color: var(--orange-500);
  flex-shrink: 0;
}

/* ── Diagnostic — Aperçu rapport ── */
.diagnostic-preview-wrap {
  max-width: 760px;
  margin: 0 auto 36px;
  position: relative;
}

.diagnostic-preview-wrap::before {
  content: '';
  position: absolute;
  inset: 6px;
  background: var(--gray-200);
  border-radius: 8px;
  transform: rotate(1.5deg);
  z-index: 0;
}

.diagnostic-preview {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.14);
  border: 1px solid var(--gray-200);
  display: block;
  transform: rotate(-0.5deg);
}

/* ── Diagnostic — Pourquoi ── */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}

/* ── Diagnostic — Grille d'analyse ── */
.diag-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.diag-card {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.diag-card-icon {
  width: 44px;
  height: 44px;
  background: #EEF4FF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.diag-card-icon i {
  font-size: 22px;
  color: var(--blue-500);
}

.diag-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 8px;
}

.diag-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* ── Diagnostic — Étapes ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: var(--blue-100);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-500);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 8px;
}

.step p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── Diagnostic — Tarif ── */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(45, 95, 166, 0.14);
  border-color: var(--blue-300);
}

.pricing-includes {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-includes li {
  font-size: 14px;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-includes li i {
  color: var(--blue-500);
  font-size: 18px;
  flex-shrink: 0;
}

.pricing-price {
  font-size: 52px;
  font-weight: 700;
  color: var(--blue-700);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-ht {
  font-size: 20px;
  font-weight: 400;
  color: var(--gray-400);
}

.pricing-label {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.pricing-note {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
  background: var(--orange-50);
  border: 1px solid #F6C96A;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-top: 20px;
  text-align: left;
}

.pricing-note i {
  color: var(--orange-500);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Diagnostic — FAQ ── */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-100);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-700);
  margin: 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '';
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--blue-300);
  border-bottom: 2px solid var(--blue-300);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  margin-top: -3px;
}

details[open] .faq-q::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.faq-a {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  margin: 12px 0 4px;
  text-align: left;
  animation: faq-open 0.2s ease;
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
