/* Services Overview page - specific styles */

/* ── Hero ── */
.svo-hero {
  padding: 80px 0 72px;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.svo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, var(--color-blue-soft), transparent 40%),
    radial-gradient(circle at 10% 85%, var(--color-mint-soft), transparent 32%);
  pointer-events: none;
}

.svo-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 56px;
}

.svo-hero h1 {
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -1.8px;
  color: var(--color-navy);
  margin: 16px 0 20px;
  max-width: 560px;
}

.svo-hero-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-slate);
  max-width: 520px;
  margin: 0;
}

.svo-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  align-items: center;
}

/* KPI cluster on hero right */
.svo-kpi-cluster {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svo-kpi-badge {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 18px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(8, 29, 58, 0.07);
  min-width: 110px;
}

.svo-kpi-badge strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
  letter-spacing: -0.5px;
}

.svo-kpi-badge span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ── Service cards section ── */
.svo-services-section {
  background: var(--color-off-white);
}

.svo-section-intro {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-slate);
  max-width: 520px;
  margin: 12px auto 0;
  text-align: center;
}

.svo-cards {
  display: grid;
  gap: 20px;
  margin-top: 52px;
}

.svo-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  overflow: hidden;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.svo-card:hover {
  box-shadow: 0 10px 36px rgba(8, 29, 58, 0.11);
  transform: translateY(-2px);
}

/* Visual panel */
.svo-card-visual {
  background: var(--card-soft, var(--color-blue-soft));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  gap: 18px;
  text-align: center;
  position: relative;
}

.svo-card-num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--card-accent, var(--color-blue));
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 4px 10px;
}

.svo-card--featured .svo-card-num {
  color: var(--color-mint);
  background: rgba(255, 255, 255, 0.12);
}

.svo-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(8, 29, 58, 0.12);
}

.svo-card--featured .svo-icon-box {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.svo-card-tag {
  font-size: 14px;
  font-weight: 700;
  color: var(--card-accent, var(--color-blue));
  letter-spacing: 0.02em;
}

.svo-card--featured .svo-card-tag {
  color: var(--color-white);
}

/* Featured card (accompagnement) */
.svo-card--featured .svo-card-visual {
  background: var(--color-navy);
}

.svo-featured-label {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: var(--color-mint);
  border-radius: 999px;
  padding: 4px 10px;
}

/* Body panel */
.svo-card-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.svo-card-body h3 {
  font-size: 21px;
  letter-spacing: -0.4px;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.22;
}

.svo-card-lead {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-slate);
  margin: 0;
}

/* Deliverables checklist */
.svo-deliverables {
  list-style: none;
  margin: 4px 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.svo-deliverables li {
  font-size: 13px;
  color: var(--color-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
}

.svo-deliverables li::before {
  content: "✓";
  font-size: 9px;
  font-weight: 800;
  color: var(--color-white);
  background: var(--card-accent, var(--color-blue));
  width: 17px;
  height: 17px;
  min-width: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.svo-card--featured .svo-deliverables li::before {
  background: var(--color-mint);
}

/* Stat badge */
.svo-stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: var(--card-soft, var(--color-blue-soft));
  border-radius: 12px;
  align-self: flex-start;
  margin-top: 2px;
}

.svo-stat strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--card-accent, var(--color-blue));
  line-height: 1;
  letter-spacing: -0.3px;
}

.svo-stat span {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-slate);
  line-height: 1.3;
  max-width: 180px;
}

.svo-card--featured .svo-stat {
  background: var(--color-off-white);
}

.svo-card--featured .svo-stat strong {
  color: var(--color-navy);
}

/* Card footer */
.svo-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}

.svo-card-footer .btn {
  align-self: flex-start;
}

/* ── Prospect needs section ── */
.leka-prospect-section {
  --prospect-navy: #081d3a;
  --prospect-blue: var(--svc-accent, #2563ff);
  --prospect-green: #22c55e;
  --prospect-slate: #53627a;
  --prospect-border: #dde6f2;
  --prospect-bg: #f7f8fa;
  --prospect-white: #ffffff;

  position: relative;
  overflow: hidden;
  background: var(--prospect-bg);
  padding: clamp(64px, 7vw, 92px) 0;
  color: var(--prospect-navy);
}

.leka-prospect-section__container {
  position: relative;
  width: min(calc(100% - 48px), var(--container, 1200px));
  margin: 0 auto;
}

.leka-prospect-section__header {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.leka-prospect-section__title {
  margin: 0;
  color: var(--prospect-navy);
  font-size: clamp(36px, 4.7vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.leka-prospect-section__title span {
  color: var(--prospect-blue);
}

.leka-prospect-section__table {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--prospect-white);
  border: 1px solid var(--prospect-border);
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(8, 29, 58, 0.065);
}

.leka-prospect-section__row {
  display: grid;
  grid-template-columns: 56px minmax(110px, 0.58fr) minmax(0, 1.42fr);
  min-height: 64px;
  border-bottom: 1px solid var(--prospect-border);
}

.leka-prospect-section__row:last-child {
  border-bottom: 0;
}

.leka-prospect-section__row--head {
  min-height: 42px;
  background: color-mix(in srgb, var(--prospect-blue) 4%, transparent);
}

.leka-prospect-section__cell {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 16px 20px;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.3;
}

.leka-prospect-section__row--head .leka-prospect-section__cell {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--prospect-slate);
}

.leka-prospect-section__cell--number {
  justify-content: center;
  padding-inline: 16px;
  color: var(--prospect-blue);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.leka-prospect-section__cell--question {
  color: var(--prospect-navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  text-wrap: balance;
}

.leka-prospect-section__cell--content {
  max-width: 42ch;
  color: var(--prospect-slate);
  font-weight: 500;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.45;
  text-wrap: pretty;
}

.leka-prospect-section__sticker {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 16px;
  background: var(--prospect-white);
  box-shadow: 0 16px 36px rgba(8, 29, 58, 0.08);
  color: var(--prospect-navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.18;
  transform: rotate(3deg);
}

.leka-prospect-section__sticker strong {
  color: var(--prospect-green);
}

.leka-prospect-section__check {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.leka-prospect-section__check svg {
  width: 30px;
  height: 30px;
}

.leka-prospect-section__check circle {
  fill: var(--prospect-green);
}

.leka-prospect-section__check path {
  stroke: var(--prospect-white);
}

.leka-prospect-section__note {
  max-width: 780px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.55;
  color: var(--prospect-slate);
}

.leka-prospect-section__note strong {
  color: var(--prospect-navy);
}

.leka-prospect-section__decor-dots {
  position: absolute;
  z-index: 1;
  top: 58px;
  left: -24px;
  width: 132px;
  height: 118px;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--prospect-blue) 22%, transparent) 1.6px, transparent 1.7px);
  background-size: 16px 16px;
  pointer-events: none;
}

@media (max-width: 900px) {
  .leka-prospect-section__sticker {
    position: relative;
    top: auto;
    right: auto;
    width: fit-content;
    margin: 0 auto 28px;
  }

  .leka-prospect-section__header {
    margin-bottom: 34px;
  }

  .leka-prospect-section__row {
    grid-template-columns: 64px minmax(130px, 0.65fr) minmax(0, 1.35fr);
  }

  .leka-prospect-section__cell {
    padding: 20px 18px;
  }
}

@media (max-width: 640px) {
  .leka-prospect-section {
    padding: 52px 0 60px;
  }

  .leka-prospect-section__container {
    width: min(calc(100% - 32px), var(--container, 1200px));
  }

  .leka-prospect-section__header {
    text-align: left;
  }

  .leka-prospect-section__sticker {
    margin: 0 0 24px;
  }

  .leka-prospect-section__title {
    font-size: clamp(34px, 10vw, 46px);
  }

  .leka-prospect-section__table {
    display: grid;
    gap: 12px;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .leka-prospect-section__row {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: auto;
    padding: 18px;
    border: 1px solid var(--prospect-border);
    border-radius: 18px;
    background: var(--prospect-white);
    box-shadow: 0 12px 28px rgba(8, 29, 58, 0.055);
  }

  .leka-prospect-section__row--head {
    display: none;
  }

  .leka-prospect-section__cell {
    padding: 0;
  }

  .leka-prospect-section__cell--number {
    grid-row: 1 / span 2;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 2px;
    font-size: 16px;
  }

  .leka-prospect-section__cell--question {
    font-size: 17px;
  }

  .leka-prospect-section__cell--content {
    grid-column: 2;
    margin-top: 6px;
    font-size: 14px;
  }

  .leka-prospect-section__decor-dots {
    display: none;
  }
}

/* ── Decision guide ── */
.svo-guide-section {
  background: var(--color-white);
}

.svo-scenarios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.svo-scenario {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px;
  background: var(--color-off-white);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
  transition: border-color 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1), transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.svo-scenario:hover,
.svo-scenario:focus-visible {
  border-color: var(--color-blue);
  box-shadow: 0 10px 28px rgba(37, 99, 255, 0.10);
  transform: translateY(-4px);
  outline: none;
}

.svo-scenario__kicker {
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.svo-scenario__media {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 8px;
}

.svo-scenario__image {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 7;
  max-height: 260px;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.svo-scenario:hover .svo-scenario__image,
.svo-scenario:focus-visible .svo-scenario__image {
  transform: scale(1.045);
}

.svo-scenario h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.3;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.svo-scenario p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-slate);
  margin: 0;
  flex: 1;
  overflow-wrap: anywhere;
}

.svo-scenario-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.svo-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 140ms ease, transform 140ms ease;
}

.svo-tag:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.svo-tag--blue  { background: var(--color-blue-soft);   color: var(--color-blue); }
.svo-tag--coral { background: var(--color-coral-soft);  color: var(--color-coral); }
.svo-tag--mint  { background: var(--color-mint-soft);   color: var(--color-mint-dark); }
.svo-tag--yellow{ background: var(--color-yellow-soft); color: #92400e; }
.svo-tag--navy  { background: var(--color-blue-soft);   color: var(--color-blue-dark); }

.svo-guide-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--color-slate);
}

.svo-guide-note a {
  color: var(--color-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Why Leka Digital ── */
.svo-why-section {
  background: var(--color-navy);
  padding: 80px 0;
}

.svo-why-section .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.svo-why-section h2 {
  color: var(--color-white);
}

.svo-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.svo-why-item {
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.svo-why-icon {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 16px;
}

.svo-why-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 10px;
  line-height: 1.3;
}

.svo-why-item p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-on-dark-soft);
  margin: 0;
}

/* ── FAQ ── */
.svo-faq-section {
  background: var(--color-off-white);
  padding-top: 72px;
  padding-bottom: 80px;
}

/* ── Section heading: centered, more scale ── */
.svo-faq-section .section-heading {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 0;
}

.svo-faq-section .section-heading .eyebrow {
  margin-inline: auto;
}

.svo-faq-section .svo-faq-more {
  display: block;
  width: fit-content;
  margin-inline: auto;
}

.svo-faq-section .section-heading h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

/* ── Grid ── */
.svo-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 72px;
  margin-top: 52px;
  counter-reset: faq;
}

/* ── Item: numbered leading ── */
.svo-faq-item {
  counter-increment: faq;
  position: relative;
  padding: 26px 0 26px 52px;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 1024px) {
  .svo-faq-item:last-child,
  .svo-faq-item:nth-last-child(2):nth-child(odd) {
    border-bottom: 0;
  }
}

.svo-faq-item::before {
  content: counter(faq, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  /* Suit l'accent de la page (coral commerce, teal santé, purple services…). */
  color: var(--svc-accent, var(--color-blue));
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

/* ── Question: scale up, weight up ── */
.svo-faq-q {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-navy);
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.svo-faq-a {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-slate);
  margin: 0;
}

.svo-faq-a a {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* ── Methodology steps ── */
.svo-method-section {
  background: var(--color-white);
  padding: 80px 0;
}

.svo-method-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}

.svo-method-step {
  background: var(--step-bg, var(--color-blue-soft));
  padding: 32px 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.6);
  transition: filter 200ms ease;
}

.svo-method-step:last-child {
  border-right: 0;
}

.svo-method-step:first-child { border-radius: 20px 0 0 20px; }
.svo-method-step:last-child  { border-radius: 0 20px 20px 0; }

.svo-method-step__num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--step-color, var(--color-blue));
  text-transform: uppercase;
  opacity: 0.6;
}

.svo-method-step__icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--step-color, var(--color-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svo-method-step__icon-box svg {
  width: 22px;
  height: 22px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svo-method-step__kicker {
  font-size: 10px;
  font-weight: 700;
  color: var(--step-color, var(--color-blue));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.svo-method-step h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-navy);
  margin: 0;
  letter-spacing: -0.3px;
  line-height: 1.15;
}

.svo-method-step p {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--color-slate);
  margin: 0;
}

/* ── Pricing section ── */
.svo-pricing-section {
  background: var(--color-off-white);
  padding: 80px 0;
}

.svo-pricing-intro {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-slate);
  max-width: 520px;
  margin: 12px auto 0;
  text-align: center;
}

.svo-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}

.svo-pricing-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 200ms ease, transform 200ms ease;
  position: relative;
}

.svo-pricing-card:hover {
  box-shadow: 0 12px 40px rgba(8, 29, 58, 0.1);
  transform: translateY(-2px);
}

.svo-pricing-card.is-featured {
  border-color: var(--color-blue);
  box-shadow: 0 8px 40px rgba(37, 99, 255, 0.14);
}

.svo-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.svo-pricing-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.svo-pricing-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.svo-pricing-header h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-navy);
  margin: 0;
  letter-spacing: -0.3px;
}

.svo-pricing-tagline {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-slate);
  margin: 0;
  font-style: italic;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-border);
}

.svo-pricing-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svo-pricing-setup {
  font-size: 12px;
  color: var(--color-muted);
  margin: 0;
}

.svo-pricing-setup s {
  color: var(--color-border-strong);
  text-decoration: line-through;
}

.svo-pricing-setup strong {
  color: var(--color-text);
}

.svo-pricing-monthly {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.svo-pricing-monthly strong {
  font-size: 34px;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -1.5px;
  line-height: 1;
}

.svo-pricing-monthly span {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 500;
}

.svo-pricing-includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.svo-pricing-includes li {
  font-size: 13px;
  color: var(--color-text);
  display: flex;
  gap: 9px;
  align-items: flex-start;
  line-height: 1.45;
}

.svo-pricing-includes li::before {
  content: "✓";
  font-size: 9px;
  font-weight: 800;
  color: var(--color-white);
  background: var(--color-mint-dark);
  width: 17px;
  height: 17px;
  min-width: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.svo-pricing-includes li.na {
  color: var(--color-muted);
}

.svo-pricing-includes li.na::before {
  content: "–";
  background: var(--color-border);
  font-size: 12px;
  font-weight: 700;
}

.svo-pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 160ms ease, transform 160ms ease;
  text-align: center;
}

.svo-pricing-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.svo-pricing-cta--primary {
  background: var(--color-blue);
  color: var(--color-white);
}

.svo-pricing-cta--outline {
  background: transparent;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
}

.svo-pricing-note {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--color-muted);
}

.svo-pricing-note a {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Comparison table */
.svo-compare-wrap {
  margin-top: 56px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.svo-compare-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-navy);
  margin: 0 0 20px;
  letter-spacing: -0.2px;
}

.svo-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.svo-compare th {
  padding: 14px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-navy);
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-border);
  letter-spacing: 0.02em;
}

.svo-compare th:first-child { text-align: left; width: 38%; }
.svo-compare th.hi { background: var(--color-blue-soft); color: var(--color-blue); }

.svo-compare td {
  padding: 11px 20px;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  color: var(--color-text);
  vertical-align: middle;
}

.svo-compare tr:last-child td { border-bottom: 0; }
.svo-compare td:first-child { text-align: left; font-weight: 600; color: var(--color-navy); }
.svo-compare td.hi { background: rgba(37,99,255,0.03); }

.ok  { color: var(--color-mint-dark); font-weight: 700; font-size: 15px; }
.no  { color: var(--color-border-strong); font-size: 15px; }

/* ── Typologies d'entreprises ── */
.svo-profiles-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 255, 0.08), transparent 28%),
    var(--color-white);
  padding: clamp(60px, 7vw, 88px) 0;
}

.svo-profiles-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.svo-profiles-heading .svo-section-intro {
  margin: 14px auto 0;
  max-width: 660px;
  text-align: center;
}

.svo-profiles-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(18px, 3vw, 28px);
  margin-top: clamp(34px, 5vw, 52px);
  align-items: stretch;
}

.svo-profile-card {
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.96));
  border: 1.5px solid var(--color-border);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  box-shadow: 0 16px 42px rgba(8, 29, 58, 0.07);
  transition: border-color 180ms ease, transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.svo-profile-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 255, 0.28);
}

.svo-profile-card--featured {
  border-color: var(--color-blue);
  background:
    radial-gradient(circle at 86% 18%, rgba(37, 99, 255, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.98));
  box-shadow: 0 20px 52px rgba(37, 99, 255, 0.13);
}

.svo-profile-badge {
  position: absolute;
  top: 20px;
  right: 22px;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.svo-profile-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-right: 120px;
}

.svo-profile-card:not(.svo-profile-card--featured) .svo-profile-head {
  padding-right: 0;
}

.svo-profile-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  border-radius: 14px;
  background: var(--color-blue-soft);
  color: var(--color-blue);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.svo-profile-card--featured .svo-profile-icon {
  background: var(--color-blue);
  color: var(--color-white);
}

.svo-profile-title {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  color: var(--color-navy);
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.svo-profile-size {
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 10px;
}

.svo-profile-desc {
  max-width: 62ch;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-slate);
  margin: 0;
  flex: 1;
}

.svo-profile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svo-profile-list li {
  font-size: 13.5px;
  color: var(--color-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.svo-profile-list li::before {
  content: "✓";
  font-size: 9px;
  font-weight: 800;
  color: var(--color-white);
  background: var(--color-mint-dark);
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.svo-profile-card--featured .svo-profile-list li::before {
  background: var(--color-blue);
}

.svo-profile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 12px 16px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: opacity 160ms ease, transform 160ms ease;
  background: transparent;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
  margin-top: 2px;
}

.svo-profile-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.svo-profile-card--featured .svo-profile-cta {
  background: var(--color-blue);
  color: var(--color-white);
}

/* "Idéal pour" tag in pricing cards */
.svo-pricing-ideal {
  font-size: 12px;
  color: var(--color-muted);
  margin: -6px 0 0;
  font-weight: 500;
}

.svo-pricing-ideal strong {
  color: var(--color-slate);
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .svo-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .svo-kpi-cluster {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .svo-card {
    grid-template-columns: 220px 1fr;
  }

  .svo-profiles-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }

  .svo-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .svo-faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .svo-faq-item:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--color-border);
  }

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

  .svo-method-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .svo-method-step:nth-child(3) { border-right: 0; border-radius: 0 20px 0 0; }
  .svo-method-step:nth-child(4) { border-radius: 0 0 0 20px; }
  .svo-method-step:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,0.6); }

  .svo-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .svo-faq-section {
    padding-top: 52px;
    padding-bottom: 60px;
  }

  .svo-faq-item {
    padding: 22px 0 22px 44px;
  }

  .svo-faq-item::before {
    top: 26px;
  }

  .svo-faq-q {
    font-size: 16px;
  }

  .svo-hero {
    padding: 48px 0 40px;
  }

  .svo-card {
    grid-template-columns: 1fr;
  }

  .svo-card-visual {
    padding: 28px 24px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
  }

  .svo-card-visual .svo-card-num {
    position: static;
  }

  .svo-icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
  }

  .svo-card-body {
    padding: 24px 24px 28px;
  }

  .svo-profiles-grid {
    grid-template-columns: 1fr;
  }

  .svo-profiles-heading {
    text-align: left;
  }

  .svo-profile-card {
    padding: 24px 20px;
  }

  .svo-profile-head,
  .svo-profile-card:not(.svo-profile-card--featured) .svo-profile-head {
    padding-right: 0;
  }

  .svo-profile-card--featured {
    padding-top: 54px;
  }

  .svo-profile-badge {
    top: 18px;
    left: 20px;
    right: auto;
  }

  .svo-profile-cta {
    align-self: stretch;
  }

  .svo-scenarios {
    grid-template-columns: 1fr;
  }

  .svo-why-grid {
    grid-template-columns: 1fr;
  }

  .svo-method-steps {
    grid-template-columns: 1fr 1fr;
  }

  .svo-method-step { border-right: 1px solid rgba(255,255,255,0.6); border-radius: 0; }
  .svo-method-step:nth-child(2n) { border-right: 0; }
  .svo-method-step:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.6); }
  .svo-method-step:first-child { border-radius: 20px 0 0 0; }
  .svo-method-step:nth-child(2) { border-radius: 0 20px 0 0; }
  .svo-method-step:nth-child(4) { border-radius: 0; }
  .svo-method-step:nth-child(5) { border-radius: 0 0 20px 20px; grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .svo-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .svo-hero-actions .btn {
    text-align: center;
  }

  .svo-card-visual {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .svo-stat {
    flex-wrap: wrap;
    align-self: stretch;
  }

  .svo-method-steps {
    grid-template-columns: 1fr;
  }

  .svo-method-step,
  .svo-method-step:first-child,
  .svo-method-step:nth-child(2),
  .svo-method-step:nth-child(5) {
    border-right: 0;
    border-radius: 0;
    border-top: 1px solid rgba(255,255,255,0.6);
  }

  .svo-method-step:first-child { border-top: 0; border-radius: 20px 20px 0 0; }
  .svo-method-step:last-child  { border-radius: 0 0 20px 20px; }
}

/* ── Services showcase, scoped to services.html ── */
.ld-services {
  --svc-page-bg: #fbfcff;
  --svc-card-bg: #ffffff;
  --svc-border: #dfe6f3;
  --svc-ink: #0B1326;
  --svc-text: #4B5A73;
  --svc-blue: #2563FF;
  --svc-blue-soft: #f2f6ff;
  --svc-blue-shadow: rgba(37, 99, 255, .28);
  --svc-coral: #FF6B5F;
  --svc-coral-soft: #fff5f0;
  --svc-coral-shadow: rgba(255, 107, 95, .26);
  --svc-green: #22C55E;
  --svc-green-soft: #f1fbf5;
  --svc-green-shadow: rgba(34, 197, 94, .24);
  --svc-purple: #7C3AED;
  --svc-purple-soft: #f6f1ff;
  --svc-purple-shadow: rgba(124, 58, 237, .26);
  --svc-teal: #14B8A6;
  --svc-teal-soft: #eefbfa;
  --svc-teal-shadow: rgba(20, 184, 166, .24);
}

.ld-services .services-showcase {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding: 16px;
  display: grid;
  gap: 12px;
  background: var(--svc-page-bg);
  font-family: "Poppins", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ld-services .svc-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ld-services .service-card {
  --service-color: var(--svc-blue);
  --service-soft: var(--svc-blue-soft);
  --service-shadow: var(--svc-blue-shadow);
  position: relative;
  min-height: 280px;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 380px;
  background: var(--svc-card-bg);
  border: 1px solid var(--svc-border);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(20, 31, 68, .035);
}

.ld-services .service-card--blue {
  --service-color: var(--svc-blue);
  --service-soft: var(--svc-blue-soft);
  --service-shadow: var(--svc-blue-shadow);
}

.ld-services .service-card--coral {
  --service-color: var(--svc-coral);
  --service-soft: var(--svc-coral-soft);
  --service-shadow: var(--svc-coral-shadow);
}

.ld-services .service-card--green {
  --service-color: var(--svc-green);
  --service-soft: var(--svc-green-soft);
  --service-shadow: var(--svc-green-shadow);
}

.ld-services .service-card--purple {
  --service-color: var(--svc-purple);
  --service-soft: var(--svc-purple-soft);
  --service-shadow: var(--svc-purple-shadow);
}

.ld-services .service-card--teal {
  --service-color: var(--svc-teal);
  --service-soft: var(--svc-teal-soft);
  --service-shadow: var(--svc-teal-shadow);
}

.ld-services .service-card__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  padding: 30px 24px 28px;
  align-self: stretch;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .58) 38%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(90deg, var(--service-soft) 0%, rgba(255, 255, 255, .72) 100%);
}

.ld-services .service-card__number {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(208, 217, 232, .8);
  box-shadow: 0 6px 16px rgba(12, 20, 48, .08);
  color: var(--service-color);
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.ld-services .service-card__icon {
  width: 128px;
  height: 128px;
  display: block;
  overflow: visible;
  color: var(--service-color);
  filter: drop-shadow(0 16px 24px rgba(15, 24, 58, .16));
}

.ld-services .service-card__label {
  margin: 0;
  color: var(--service-color);
  font-size: 30px !important;
  line-height: .98 !important;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-align: center;
}

.ld-services .service-card__label--stacked {
  font-size: 26px !important;
  line-height: 1.04 !important;
  letter-spacing: -0.025em;
}

.ld-services .service-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 36px 38px;
}

.ld-services .service-card__title {
  max-width: 430px;
  margin: 0 0 18px;
  color: var(--svc-ink);
  font-size: 31px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.ld-services .service-card__text {
  max-width: 430px;
  margin: 0 0 28px;
  color: var(--svc-text);
  font-size: 15.5px;
  line-height: 1.62;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.ld-services .service-card__cta {
  min-height: 46px;
  min-width: 230px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--service-color);
  color: #ffffff;
  box-shadow: 0 12px 24px var(--service-shadow);
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.ld-services .service-card__cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
  box-shadow: 0 16px 30px var(--service-shadow);
}

.ld-services .service-card__cta:active {
  transform: translateY(0);
}

.ld-services .service-card__cta:focus-visible {
  outline: 3px solid rgba(8, 13, 45, .18);
  outline-offset: 4px;
}

.ld-services .service-card__features {
  align-self: center;
  margin: 0;
  padding: 0 38px 0 22px;
  list-style: none;
  display: grid;
  gap: 22px;
}

.ld-services .service-card__feature {
  position: relative;
  padding-left: 36px;
  color: #111735;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.ld-services .service-card__feature::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--service-color);
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

@media (max-width: 1060px) {
  .ld-services .services-showcase {
    width: min(100%, 940px);
    padding: 14px;
  }

  .ld-services .service-card {
    min-height: 250px;
    grid-template-columns: 220px minmax(0, 1fr);
    grid-template-areas:
      "visual content"
      "visual features";
  }

  .ld-services .service-card__visual {
    grid-area: visual;
    padding-inline: 18px;
  }

  .ld-services .service-card__content {
    grid-area: content;
    padding: 34px 32px 16px;
  }

  .ld-services .service-card__features {
    grid-area: features;
    align-self: start;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    padding: 0 32px 34px;
  }

  .ld-services .service-card__icon {
    width: 112px;
    height: 112px;
  }

  .ld-services .service-card__label {
    font-size: 27px !important;
  }

  .ld-services .service-card__label--stacked {
    font-size: 24px !important;
    line-height: 1.08 !important;
  }

  .ld-services .service-card__title {
    max-width: 620px;
    font-size: 28px;
  }

  .ld-services .service-card__text {
    max-width: 620px;
    margin-bottom: 22px;
  }
}

@media (max-width: 760px) {
  .ld-services .services-showcase {
    width: 100%;
    padding: 14px;
    gap: 14px;
  }

  .ld-services .service-card {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas: none;
    grid-template-rows: auto;
    border-radius: 24px;
  }

  .ld-services .service-card__visual {
    grid-area: auto;
    min-height: 220px;
    padding: 42px 22px 26px;
    border-bottom: 1px solid rgba(223, 230, 243, .75);
  }

  .ld-services .service-card__number {
    top: 16px;
    left: 16px;
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .ld-services .service-card__icon {
    width: 118px;
    height: 118px;
  }

  .ld-services .service-card__label {
    font-size: 31px !important;
  }

  .ld-services .service-card__label--stacked {
    font-size: 26px !important;
    line-height: 1.08 !important;
  }

  .ld-services .service-card__content {
    grid-area: auto;
    padding: 28px 22px 22px;
  }

  .ld-services .service-card__title {
    max-width: none;
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1.12;
  }

  .ld-services .service-card__text {
    max-width: none;
    margin-bottom: 22px;
    font-size: 15.5px;
    line-height: 1.62;
  }

  .ld-services .service-card__cta {
    width: 100%;
    min-width: 0;
    min-height: 48px;
  }

  .ld-services .service-card__features {
    grid-area: auto;
    padding: 0 22px 28px;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .ld-services .service-card__feature {
    font-size: 15.5px;
    line-height: 1.35;
  }
}

@media (min-width: 520px) and (max-width: 760px) {
  .ld-services .services-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
    gap: 12px;
  }

  .ld-services .service-card {
    border-radius: 18px;
    grid-template-rows: auto 1fr;
  }

  .ld-services .service-card__visual {
    min-height: 118px;
    gap: 8px;
    padding: 24px 14px 16px;
  }

  .ld-services .service-card__number {
    top: 10px;
    left: 10px;
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .ld-services .service-card__icon {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 10px 16px rgba(15, 24, 58, .12));
  }

  .ld-services .service-card__label,
  .ld-services .service-card__label--stacked {
    font-size: 19px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.035em;
  }

  .ld-services .service-card__content {
    padding: 16px 14px 14px;
  }

  .ld-services .service-card__title {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.14;
    letter-spacing: -0.04em;
  }

  .ld-services .service-card__text {
    margin-bottom: 14px;
    font-size: 12.5px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .ld-services .service-card__cta {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 14px;
    font-size: 12px;
    gap: 6px;
    box-shadow: 0 8px 18px var(--service-shadow);
  }

  .ld-services .service-card__features {
    display: none;
  }
}

@media (max-width: 519px) {
  .ld-services .service-card {
    border-radius: 18px;
  }

  .ld-services .service-card__visual {
    min-height: 148px;
    gap: 10px;
    padding: 30px 18px 18px;
  }

  .ld-services .service-card__icon {
    width: 78px;
    height: 78px;
  }

  .ld-services .service-card__label,
  .ld-services .service-card__label--stacked {
    font-size: 24px !important;
  }

  .ld-services .service-card__content {
    padding: 20px 18px 16px;
  }

  .ld-services .service-card__title {
    font-size: 22px;
  }

  .ld-services .service-card__text {
    margin-bottom: 16px;
    font-size: 14.5px;
    line-height: 1.5;
  }

  .ld-services .service-card__features {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ld-services .service-card__cta {
    transition: none;
  }

  .ld-services .service-card__cta:hover {
    transform: none;
  }
}

/* ── Services page: méthode redesign ── */

.method-section--services {
  --lk-bg: #fbfcff;
  --lk-surface: #ffffff;
  --lk-ink: #081D3A;
  --lk-text: #4B5A73;
  --lk-muted: #5C6A82;
  --lk-blue: #2563FF;
  --lk-blue-deep: #1552E8;
  --lk-blue-soft: #eef5ff;
  --lk-teal: #14B8A6;
  --lk-teal-soft: #edfafa;
  --lk-green: #22C55E;
  --lk-green-soft: #f2faee;
  --lk-purple: #7C3AED;
  --lk-purple-soft: #f5f1ff;
  --lk-coral: #FF6B5F;
  --lk-coral-soft: #fff3f0;
  --lk-mint: #31d7a3;
  --lk-yellow: #F59E0B;
  --lk-border: rgba(7, 24, 50, 0.07);
  --lk-shadow-soft: 0 18px 50px rgba(7, 24, 50, 0.08);
  --lk-shadow-sticker: 0 14px 30px rgba(7, 24, 50, 0.14);
  --section-max: 1560px;
  --panel-radius: 32px;
  --card-radius: 20px;
  --panel-gap: 14px;

  position: relative;
  overflow: hidden;
  min-height: 941px;
  padding: 30px 56px 64px;
  color: var(--lk-ink);
  background:
    radial-gradient(circle at 12% 35%, rgba(21, 94, 239, 0.045), transparent 24%),
    radial-gradient(circle at 85% 28%, rgba(49, 215, 163, 0.05), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, var(--lk-bg) 100%);
  font-family: "Poppins", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.method-section--services svg {
  display: block;
  max-width: 100%;
}

.method-section--services p,
.method-section--services h2,
.method-section--services h3 {
  margin: 0;
}

.method-section--services .method-section__inner {
  position: relative;
  z-index: 3;
  max-width: var(--section-max);
  margin: 0 auto;
}

.method-section--services .method-header {
  position: relative;
  z-index: 5;
  max-width: 980px;
  margin: 0 auto 48px;
  text-align: center;
}

.method-section--services .method-kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 36px;
  padding: 0 22px;
  margin-bottom: 26px;
  border: 1px solid #dce8ff;
  border-radius: 999px;
  background: rgba(246, 249, 255, 0.92);
  color: var(--lk-blue);
  box-shadow: 0 10px 24px rgba(7, 24, 50, 0.045);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.method-section--services .method-kicker span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--lk-blue);
}

.method-section--services .method-title {
  color: var(--lk-ink);
  font-size: clamp(44px, 4.2vw, 70px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.method-section--services .method-title span {
  display: block;
  color: var(--lk-blue);
}

.method-section--services .method-subtitle {
  max-width: 820px;
  margin: 22px auto 0;
  color: var(--lk-text);
  font-size: clamp(17px, 1.28vw, 22px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.method-section--services .method-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--panel-gap);
  width: 100%;
  min-height: 504px;
  padding: 24px;
  border: 1px solid rgba(7, 24, 50, 0.035);
  border-radius: var(--panel-radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--lk-shadow-soft);
  backdrop-filter: blur(18px);
}

.method-section--services .method-card {
  --card-accent: var(--lk-blue);
  --card-bg: var(--lk-blue-soft);

  position: relative;
  min-height: 459px;
  padding: 30px 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at 68% 14%, rgba(255, 255, 255, 0.75), transparent 28%),
    var(--card-bg);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.method-section--services .method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(7, 24, 50, 0.1);
}

.method-section--services .method-card:focus-visible {
  outline: 3px solid rgba(21, 94, 239, 0.38);
  outline-offset: 4px;
}

.method-section--services .method-card--audit {
  --card-accent: var(--lk-blue);
  --card-bg: #eef5ff;
}

.method-section--services .method-card--setup {
  --card-accent: var(--lk-teal);
  --card-bg: #edfafa;
}

.method-section--services .method-card--traffic {
  --card-accent: var(--lk-green);
  --card-bg: #f2faee;
}

.method-section--services .method-card--leads {
  --card-accent: var(--lk-purple);
  --card-bg: #f5f1ff;
}

.method-section--services .method-card--analyse {
  --card-accent: var(--lk-coral);
  --card-bg: #fff3f0;
}

.method-section--services .method-card__number {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--card-accent);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.method-section--services .method-card__icon {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  margin: 16px auto 18px;
  display: block;
  object-fit: contain;
}

.method-section--services .method-card--setup .method-card__icon,
.method-section--services .method-card--leads .method-card__icon,
.method-section--services .method-card--analyse .method-card__icon {
  width: 134px;
  height: 134px;
  margin-top: 22px;
  margin-bottom: 28px;
}

.method-section--services .method-card__eyebrow {
  position: relative;
  z-index: 2;
  color: var(--card-accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.method-section--services .method-card__title {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  color: var(--lk-ink);
  font-size: 29px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.method-section--services .method-card__text {
  position: relative;
  z-index: 2;
  max-width: 260px;
  margin-top: 14px;
  color: var(--lk-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

.method-section--services .method-badge {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 24, 50, 0.055);
  box-shadow: var(--lk-shadow-sticker);
  backdrop-filter: blur(16px);
}

.method-section--services .method-badge--strategy {
  top: 235px;
  left: 75px;
  gap: 18px;
  width: 265px;
  min-height: 78px;
  padding: 16px 18px;
  border-radius: 20px;
  transform: rotate(-5deg);
}

.method-section--services .method-badge--strategy p {
  color: var(--lk-ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.method-section--services .method-badge__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}

.method-section--services .is-blue {
  color: var(--lk-blue);
}

.method-section--services .is-mint {
  color: #08a983;
}

.method-section--services .method-badge--focus {
  top: 170px;
  right: 170px;
  gap: 10px;
  min-width: 140px;
  min-height: 58px;
  padding: 12px 16px;
  border-radius: 16px;
  transform: rotate(6deg);
}

.method-section--services .method-badge--focus p {
  color: var(--lk-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.method-section--services .method-badge__heart {
  width: 27px;
  height: 27px;
}

.method-section--services .method-badge--action {
  left: 50%;
  bottom: -34px;
  gap: 12px;
  min-width: 184px;
  min-height: 66px;
  padding: 12px 18px;
  border-radius: 18px;
  transform: translateX(-50%) rotate(-1deg);
}

.method-section--services .method-badge--action p {
  color: var(--lk-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.method-section--services .method-badge__bolt {
  width: 40px;
  height: 40px;
}

.method-section--services .method-section__decor {
  position: absolute;
  pointer-events: none;
}

.method-section--services .method-section__decor--dots-left,
.method-section--services .method-section__decor--dots-right {
  width: 94px;
  height: 70px;
  background-image: radial-gradient(currentColor 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.34;
}

.method-section--services .method-section__decor--dots-left {
  top: 145px;
  left: 108px;
  color: var(--lk-blue);
}

.method-section--services .method-section__decor--dots-right {
  top: 145px;
  right: 96px;
  color: var(--lk-mint);
}

.method-section--services .method-section__decor--plus {
  top: 185px;
  left: 295px;
  color: var(--lk-mint);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.method-section--services .method-section__decor--squiggle {
  top: 280px;
  right: 87px;
  width: 98px;
  height: 35px;
}

.method-section--services .method-section__decor--squiggle::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 5px solid rgba(49, 215, 163, 0.32);
  border-radius: 50%;
  transform: skewX(-28deg);
}

.method-section--services .method-section__decor--arrow {
  top: 274px;
  right: 260px;
  width: 82px;
  height: 38px;
  border-bottom: 6px solid var(--lk-blue);
  border-radius: 0 0 80px 80px;
  opacity: 0.95;
  transform: rotate(-8deg);
}

.method-section--services .method-section__decor--arrow::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -8px;
  width: 18px;
  height: 18px;
  border-top: 6px solid var(--lk-blue);
  border-right: 6px solid var(--lk-blue);
  border-radius: 2px;
  transform: rotate(35deg);
}

.method-section--services .method-bottom-path {
  position: absolute;
  left: 210px;
  right: 190px;
  bottom: -55px;
  z-index: 2;
  height: 72px;
  opacity: 0.7;
}

.method-section--services .method-bottom-path::before {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 4px dashed rgba(92, 119, 255, 0.3);
  border-radius: 50%;
  transform: translateY(-26px);
}

.method-section--services .method-svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .method-section--services {
    padding-inline: 32px;
  }

  .method-section--services .method-panel {
    gap: 12px;
    padding: 18px;
  }

  .method-section--services .method-card {
    padding: 24px 18px 26px;
  }

  .method-section--services .method-card__icon {
    width: 124px;
    height: 124px;
  }

  .method-section--services .method-card__text {
    font-size: 16px;
  }

  .method-section--services .method-badge--strategy {
    transform: scale(0.9) rotate(-5deg);
  }

  .method-section--services .method-badge--focus {
    transform: scale(0.9) rotate(6deg);
  }
}

@media (max-width: 1023px) {
  .method-section--services {
    min-height: auto;
    padding: 56px 24px 72px;
  }

  .method-section--services .method-header {
    margin-bottom: 48px;
  }

  .method-section--services .method-title {
    font-size: clamp(38px, 7vw, 58px);
  }

  .method-section--services .method-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .method-section--services .method-card {
    min-height: 410px;
  }

  .method-section--services .method-card--analyse {
    grid-column: 1 / -1;
  }

  .method-section--services .method-badge--strategy,
  .method-section--services .method-badge--focus,
  .method-section--services .method-section__decor--arrow,
  .method-section--services .method-section__decor--squiggle {
    display: none;
  }

  .method-section--services .method-badge--action {
    position: relative;
    left: auto;
    bottom: auto;
    justify-content: center;
    width: max-content;
    margin: 24px auto 0;
    transform: none;
  }

  .method-section--services .method-bottom-path {
    display: none;
  }
}

@media (max-width: 767px) {
  .method-section--services {
    padding: 44px 16px 56px;
  }

  .method-section--services .method-kicker {
    min-height: 32px;
    padding-inline: 16px;
    font-size: 11px;
  }

  .method-section--services .method-title {
    font-size: clamp(34px, 10vw, 44px);
    letter-spacing: -0.045em;
  }

  .method-section--services .method-subtitle {
    margin-top: 20px;
    font-size: 16px;
  }

  .method-section--services .method-panel {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 24px;
  }

  .method-section--services .method-card {
    min-height: auto;
    padding: 24px 22px 76px;
    border-radius: 18px;
  }

  .method-section--services .method-card--analyse {
    grid-column: auto;
  }

  .method-section--services .method-card__icon,
  .method-section--services .method-card--setup .method-card__icon,
  .method-section--services .method-card--leads .method-card__icon,
  .method-section--services .method-card--analyse .method-card__icon {
    width: 118px;
    height: 118px;
    margin: 16px auto 20px;
  }

  .method-section--services .method-card__title {
    font-size: 27px;
  }

  .method-section--services .method-card__text {
    max-width: none;
    font-size: 16px;
  }

  .method-section--services .method-section__decor--dots-left,
  .method-section--services .method-section__decor--dots-right,
  .method-section--services .method-section__decor--plus {
    display: none;
  }
}

/* ── Pop des icônes à l'apparition de la carte ── */
@keyframes lkIconPop {
  0%   { transform: scale(.25) translateY(14px); opacity: 0; }
  55%  { transform: scale(1.14) translateY(-5px); opacity: 1; }
  75%  { transform: scale(.93); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes lkIconBob {
  0%,100% { transform: translateY(0) rotate(0); }
  30%     { transform: translateY(-7px) rotate(-5deg); }
  60%     { transform: translateY(-3px) rotate(4deg); }
}

/* l'icône reste cachée tant que la carte n'est pas révélée, puis pop */
.method-section--services .method-card.anim-up .method-card__icon { opacity: 0; }
.method-section--services .method-card.in-view .method-card__icon {
  opacity: 1;
  animation: lkIconPop 720ms cubic-bezier(.34,1.56,.64,1) .15s both;
}

/* hover enrichi : petit rebond en boucle sur l'icône */
.method-section--services .method-card:hover .method-card__icon {
  animation: lkIconBob .9s ease-in-out infinite;
}

/* le lift au survol ne doit pas hériter du transition-delay du stagger */
.method-section--services .method-card:hover { transition-delay: 0s; }

/* glow coloré par carte au survol (accent + bordure) */
.method-section--services .method-card--audit:hover   { box-shadow: 0 26px 54px rgba(37,99,255,.22);  border-color: rgba(37,99,255,.45); }
.method-section--services .method-card--setup:hover   { box-shadow: 0 26px 54px rgba(20,184,166,.22); border-color: rgba(20,184,166,.45); }
.method-section--services .method-card--traffic:hover { box-shadow: 0 26px 54px rgba(34,197,94,.22);  border-color: rgba(34,197,94,.45); }
.method-section--services .method-card--leads:hover   { box-shadow: 0 26px 54px rgba(124,58,237,.22); border-color: rgba(124,58,237,.45); }
.method-section--services .method-card--analyse:hover { box-shadow: 0 26px 54px rgba(255,107,95,.22); border-color: rgba(255,107,95,.45); }

@media (prefers-reduced-motion: reduce) {
  .method-section--services .method-card {
    transition: none;
  }

  .method-section--services .method-card:hover {
    transform: none;
  }

  .method-section--services .method-card .method-card__icon {
    opacity: 1 !important;
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   Hero v2 — Services page
   ═══════════════════════════════════════════════════════════ */

.svo-hero--v2 {
  padding: clamp(64px, 8vw, 104px) 0 clamp(56px, 7vw, 88px);
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.svo-hero--v2::before { display: none; }

/* Background gradient blob (top right) */
.svo-hero__blob {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 42%, rgba(147, 175, 255, .14), transparent 52%),
    radial-gradient(circle at 70% 60%, rgba(190, 160, 255, .09), transparent 44%);
  pointer-events: none;
}

/* Dot-grid decoration (right side of cards) */
.svo-hero__dots {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 110px;
  height: 130px;
  background-image: radial-gradient(circle, rgba(37, 99, 235, .18) 1.8px, transparent 1.8px);
  background-size: 16px 16px;
  pointer-events: none;
}

/* Single-column hero, copy fills the container width. */
.svo-hero-v2-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}

/* ── Copy (single centered column) ── */
.svo-hero-v2-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

/* Breadcrumb pill */
.svo-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border: 1.5px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-blue, #2563EB);
  text-decoration: none;
  margin-bottom: 28px;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(8, 29, 58, .06);
}
.svo-hero-pill svg { color: #64748b; flex-shrink: 0; }

/* Headline */
.svo-hero-v2-title {
  font-size: clamp(42px, 5.6vw, 76px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--color-navy);
  margin: 0 0 22px;
  text-wrap: balance;
}
.svo-hero-v2-title em {
  font-style: normal;
  color: #2563EB;
}
.svo-dot-mint { color: #16a34a; }

/* Lead paragraph */
.svo-hero-v2-lead {
  max-width: 64ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-slate);
  margin: 0 0 30px;
}
.svo-kw { font-weight: 500; }
.svo-kw--blue  { color: #2563EB; }
.svo-kw--green { color: #16a34a; }
.svo-kw--coral { color: #ef4444; }

/* CTA row */
.svo-hero-v2-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.svo-hero-v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.svo-hero-v2-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 140ms ease;
}
.svo-hero-v2-link:hover { color: #2563EB; }

/* Benefits strip */
.svo-hero-v2-benefits {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.svo-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--color-slate);
  line-height: 1.45;
}
.svo-benefit svg { flex-shrink: 0; }

/* ── Right cards ── */
.svo-hero-v2-cards {
  position: relative;
}

/* 6-col subgrid: row1 = 2 cards (span 3), row2 = 3 cards (span 2) */
.svo-mini-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.svo-mini-card:nth-child(1),
.svo-mini-card:nth-child(2) { grid-column: span 3; }
.svo-mini-card:nth-child(3),
.svo-mini-card:nth-child(4),
.svo-mini-card:nth-child(5) { grid-column: span 2; }

.svo-mini-card {
  background: #ffffff;
  border: 1.5px solid #e8edf6;
  border-radius: 20px;
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 16px rgba(8, 29, 58, .055);
  transition: box-shadow 160ms ease, transform 160ms ease;
}
@media (hover: hover) {
  .svo-mini-card:hover {
    box-shadow: 0 10px 30px rgba(8, 29, 58, .10);
    transform: translateY(-3px);
  }
}

/* Icon circle */
.svo-mini-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  flex-shrink: 0;
}
.svo-mini-card__visual--blue      { background: #EEF4FF; }
.svo-mini-card__visual--coral     { background: #FFF1EE; }
.svo-mini-card__visual--mint      { background: #ECFDF5; }
.svo-mini-card__visual--blue-soft { background: #EEF4FF; }
.svo-mini-card__visual--pink      { background: #FFF0EE; }

/* Card text */
.svo-mini-card__body h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 8px;
  line-height: 1.25;
}
.svo-mini-card__body p {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--color-slate);
  margin: 0;
}
.svo-mini-card__body p svg { flex-shrink: 0; margin-top: 1px; }

/* Dark sticker badge */
.svo-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 14px 20px;
  border-radius: 16px;
  background: #071c3a;
  box-shadow: 0 16px 40px rgba(7, 28, 58, .3);
  float: right;
}
.svo-hero-badge__bolt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  flex-shrink: 0;
}
.svo-hero-badge__text p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
}
.svo-badge-blue  { color: #60a5fa; }
.svo-badge-green { color: #4ade80; }
.svo-badge-coral { color: #f87171; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .svo-hero-v2-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .svo-hero-v2-copy {
    max-width: 640px;
    margin: 0 auto;
  }
  .svo-hero-v2-title {
    font-size: clamp(38px, 7vw, 56px);
  }
}

@media (max-width: 767px) {
  .svo-hero--v2 { padding: 48px 0 44px; }
  .svo-hero__dots { display: none; }

  .svo-mini-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .svo-mini-card:nth-child(1),
  .svo-mini-card:nth-child(2),
  .svo-mini-card:nth-child(3),
  .svo-mini-card:nth-child(4) { grid-column: span 1; }
  .svo-mini-card:nth-child(5) { grid-column: span 2; }

  .svo-hero-v2-title { letter-spacing: -0.035em; }

  .svo-hero-badge {
    float: none;
    display: flex;
    width: max-content;
    margin-top: 16px;
  }
}

@media (max-width: 480px) {
  .svo-mini-grid { grid-template-columns: 1fr; }
  .svo-mini-card:nth-child(n) { grid-column: span 1; }
  .svo-hero-v2-benefits { flex-direction: column; gap: 14px; }
  .svo-hero-v2-actions { flex-direction: column; align-items: stretch; }
  .svo-hero-v2-btn,
  .svo-hero-v2-link { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   Pricing Comparison Table — lk-pricing
   ═══════════════════════════════════════════════════════════ */

.lk-pricing {
  /* Scoped design tokens */
  --lk-navy:       #06132f;
  --lk-blue:       #1f63ff;
  --lk-blue-soft:  #eaf1ff;
  --lk-green:      #22b55a;
  --lk-green-soft: #ecf9f1;
  --lk-coral:      #ff5c4d;
  --lk-coral-soft: #fff0ed;
  --lk-offwhite:   #f7f8fb;
  --lk-white:      #ffffff;
  --lk-line:       #dfe5ef;
  --lk-muted:      #64748b;
  --lk-shadow:     0 18px 50px rgba(6, 19, 47, 0.08);

  padding: 72px 0 64px;
  background: var(--lk-offwhite);
}

/* Two-column layout */
.lk-pricing__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

/* ── LEFT COPY ── */
.lk-pricing__copy {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 88px;
}

.lk-pricing__eyebrow {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lk-blue);
  margin: 0 0 14px;
}

.lk-pricing__title {
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--lk-navy);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.lk-pricing__rule {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: var(--lk-green);
  margin-bottom: 18px;
}

.lk-pricing__lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--lk-muted);
  margin: 0 0 28px;
}

.lk-pricing__accent {
  color: var(--lk-blue);
  font-weight: 600;
}

/* Ring badge */
.lk-pricing__ring {
  position: relative;
  width: 138px;
  height: 138px;
  margin-bottom: 24px;
}

.lk-pricing__ring-svg {
  width: 138px;
  height: 138px;
  animation: lk-ring-spin 22s linear infinite;
}

.lk-pricing__ring-text {
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
  fill: var(--lk-navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lk-pricing__ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes lk-ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Benefits mini-card */
.lk-pricing__benefits {
  background: var(--lk-white);
  border: 1px solid var(--lk-line);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--lk-shadow);
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.lk-pricing__benefit {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  color: var(--lk-navy);
  line-height: 1.4;
}

.lk-pricing__benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lk-pricing__benefit-icon--green { background: var(--lk-green-soft); color: var(--lk-green); }
.lk-pricing__benefit-icon--blue  { background: var(--lk-blue-soft);  color: var(--lk-blue);  }
.lk-pricing__benefit-icon--coral { background: var(--lk-coral-soft); color: var(--lk-coral); }

/* ── RIGHT TABLE AREA ── */
.lk-pricing__table-area {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: 26px; /* room for badges */
}

/* ── PRICING TABLE ── */
.lk-pt {
  width: 100%;
  min-width: 540px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--lk-white);
  border-radius: 24px;
  box-shadow: var(--lk-shadow);
  border: 1px solid var(--lk-line);
  table-layout: fixed;
}

.lk-pt__col--label    { width: 36%; }
.lk-pt__col--lancer   { width: 21%; }
.lk-pt__col--accelerer{ width: 22%; }
.lk-pt__col--dominer  { width: 21%; }

/* Header cells */
.lk-pt__th {
  position: relative;
  padding: 48px 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--lk-line);
  vertical-align: top;
  overflow: visible;
}

.lk-pt__th--label {
  padding: 24px 24px 20px;
  text-align: left;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--lk-muted);
  vertical-align: bottom;
  border-radius: 24px 0 0 0;
}

.lk-pt__th--lancer   { background: rgba(34, 181, 90, 0.05); }
.lk-pt__th--dominer  { background: rgba(255, 92, 77, 0.05); border-radius: 0 24px 0 0; }
.lk-pt__th--accelerer {
  background: rgba(31, 99, 255, 0.05);
  border-left:  2px solid var(--lk-blue);
  border-right: 2px solid var(--lk-blue);
  border-top:   2px solid var(--lk-blue);
}

/* Offer badge floating at top of column */
.lk-pt__offer-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.09);
  line-height: 1.4;
}

.lk-pt__offer-badge--green {
  background: var(--lk-white);
  border: 1.5px solid var(--lk-green);
  color: var(--lk-green);
}
.lk-pt__offer-badge--blue {
  background: var(--lk-blue);
  color: var(--lk-white);
  border: 1.5px solid var(--lk-blue);
}
.lk-pt__offer-badge--coral {
  background: var(--lk-white);
  border: 1.5px solid var(--lk-coral);
  color: var(--lk-coral);
}

/* Offer icon circle */
.lk-pt__offer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin: 4px auto 10px;
}

.lk-pt__offer-icon--green { background: var(--lk-green); color: var(--lk-white); }
.lk-pt__offer-icon--blue  { background: var(--lk-blue);  color: var(--lk-white); }
.lk-pt__offer-icon--coral { background: var(--lk-coral); color: var(--lk-white); }

.lk-pt__offer-name {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--lk-navy);
  line-height: 1.15;
  margin-bottom: 4px;
}

.lk-pt__offer-price {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--lk-muted);
}
.lk-pt__offer-price small { font-size: 12px; font-weight: 500; }
.lk-pt__offer-price--blue { color: var(--lk-blue); }

/* ── BODY ── */
.lk-pt__row:nth-child(even) .lk-pt__td            { background: rgba(6, 19, 47, 0.022); }
.lk-pt__row:nth-child(even) .lk-pt__td--accelerer { background: rgba(31, 99, 255, 0.08); }

@media (hover: hover) {
  .lk-pt__row:hover .lk-pt__td            { background: rgba(6, 19, 47, 0.04); cursor: default; }
  .lk-pt__row:hover .lk-pt__td--accelerer { background: rgba(31, 99, 255, 0.12); }
}

.lk-pt__td {
  padding: 15px 14px;
  font-size: 13.5px;
  text-align: center;
  color: var(--lk-navy);
  border-bottom: 1px solid var(--lk-line);
  vertical-align: middle;
  transition: background 0.12s;
}

.lk-pt__td--label { padding: 15px 24px; text-align: left; }

.lk-pt__td--accelerer {
  background: rgba(31, 99, 255, 0.045);
  border-left:  2px solid var(--lk-blue);
  border-right: 2px solid var(--lk-blue);
  font-weight: 500;
}

/* Last row */
.lk-pt__row--last .lk-pt__td            { border-bottom: none; }
.lk-pt__row--last .lk-pt__td--label     { border-radius: 0 0 0 24px; }
.lk-pt__row--last .lk-pt__td--dominer   { border-radius: 0 0 24px 0; }
.lk-pt__row--last .lk-pt__td--accelerer { border-bottom: 2px solid var(--lk-blue); }

/* Row label with icon */
.lk-pt__row-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--lk-navy);
}

.lk-pt__row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(6, 19, 47, 0.05);
  flex-shrink: 0;
  color: var(--lk-muted);
}

.lk-pt__check { color: var(--lk-green); font-weight: 700; }
.lk-pt__none  { color: var(--lk-muted); }

/* Bonus row highlight */
.lk-pt__td--bonus {
  color: var(--lk-blue);
  font-weight: 800;
  font-size: 15px;
}

/* ── FOOTER CTA ── */
.lk-pricing__footer {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--lk-white);
  border: 1px solid var(--lk-line);
  border-radius: 20px;
  padding: 18px 24px;
  margin-top: 28px;
  box-shadow: var(--lk-shadow);
  flex-wrap: wrap;
}

.lk-pricing__footer-rocket { flex-shrink: 0; display: flex; }

.lk-pricing__footer-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.65;
  color: var(--lk-muted);
  margin: 0;
  min-width: 200px;
}

.lk-pricing__footer-link {
  color: var(--lk-blue);
  font-style: italic;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lk-pricing__footer-link:hover { text-decoration-thickness: 2px; }

.lk-pricing__footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lk-blue);
  color: var(--lk-white);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 22px;
  border-radius: 14px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.18s, transform 0.15s;
}
.lk-pricing__footer-cta:hover { background: #1044cc; transform: translateY(-3px); }

/* ── RESPONSIVE ── */

@media (max-width: 1199px) {
  .lk-pricing__inner { grid-template-columns: 1fr; gap: 32px; }
  .lk-pricing__copy  { position: static; flex-direction: row; flex-wrap: wrap; gap: 28px; align-items: flex-start; }
  .lk-pricing__ring  { display: none; }
  .lk-pricing__title,
  .lk-pricing__lead  { max-width: 560px; }
}

@media (max-width: 767px) {
  .lk-pricing { padding: 48px 0 36px; }
  .lk-pricing__copy { flex-direction: column; gap: 0; }
  .lk-pricing__table-area { padding-top: 20px; }

  .lk-pt__th           { padding: 42px 10px 16px; }
  .lk-pt__th--label    { padding: 16px 14px 12px; }
  .lk-pt__offer-icon   { width: 48px; height: 48px; }
  .lk-pt__offer-name   { font-size: 15px; }
  .lk-pt__offer-price  { font-size: 13px; }
  .lk-pt__offer-badge  { font-size: 8px; padding: 3px 8px; top: 8px; }
  .lk-pt__td           { padding: 12px 10px; font-size: 12px; }
  .lk-pt__td--label    { padding: 12px 14px; }
  .lk-pt__row-icon     { display: none; }
  .lk-pt__row-label    { font-size: 12px; gap: 0; }
  .lk-pt__td--bonus    { font-size: 13px; }

  .lk-pricing__footer         { flex-direction: column; gap: 14px; text-align: center; padding: 16px 18px; }
  .lk-pricing__footer-rocket  { display: none; }
  .lk-pricing__footer-cta     { align-self: center; }
}


/* ─────────────────────────────────────────────────────────
   leka-why — dark navy "Pourquoi nous" section
───────────────────────────────────────────────────────── */
.leka-why {
  --lw-navy:        #06162D;
  --lw-navy-2:      #081D3A;
  --lw-card-bg:     rgba(255,255,255,.055);
  --lw-card-border: rgba(255,255,255,.10);
  --lw-card-hover:  rgba(255,255,255,.09);
  --lw-green:       #20CCA0;
  --lw-teal:        #1CB4CF;
  --lw-coral:       #FF6B6B;
  --lw-purple:      #9B77F5;
  --lw-blue:        #4D90FF;
  --lw-text:        rgba(255,255,255,.88);
  --lw-muted:       rgba(255,255,255,.55);

  position: relative;
  padding: 88px 0;
  background:
    radial-gradient(circle at 18% 55%, rgba(45,100,255,.13) 0%, transparent 48%),
    radial-gradient(circle at 82% 18%, rgba(32,204,160,.09) 0%, transparent 44%),
    linear-gradient(168deg, var(--lw-navy) 0%, var(--lw-navy-2) 100%);
  overflow: hidden;
}

/* ── Decorative shapes ── */
.leka-why__shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.leka-why__shape--tl {
  top: -70px;
  left: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,144,255,.16) 0%, transparent 68%);
}

.leka-why__shape--tr {
  top: 28px;
  right: 72px;
  width: 110px;
  height: 36px;
  border-radius: 999px;
  background: rgba(32,204,160,.20);
  transform: rotate(-12deg);
}

.leka-why__shape--bl {
  bottom: 44px;
  left: 88px;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(77,144,255,.14);
  transform: rotate(18deg);
}

/* ── Dot grids ── */
.leka-why__dots {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 22px 22px;
}

.leka-why__dots--left {
  top: 40px;
  left: 0;
  width: 180px;
  height: 260px;
  opacity: .45;
}

.leka-why__dots--right {
  bottom: 52px;
  right: 0;
  width: 200px;
  height: 200px;
  opacity: .35;
}

/* ── Cursor ── */
.leka-why__cursor {
  position: absolute;
  bottom: 88px;
  right: 232px;
  z-index: 1;
  opacity: .3;
  pointer-events: none;
  animation: lw-float 4s ease-in-out infinite;
}

@keyframes lw-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── Inner ── */
.leka-why__inner {
  position: relative;
  z-index: 2;
}

/* ── Header ── */
.leka-why__header {
  text-align: center;
  margin-bottom: 52px;
}

.leka-why__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lw-green);
  margin-bottom: 16px;
}

.leka-why__title {
  font-size: clamp(28px, 3.6vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
}

.leka-why__accent {
  color: var(--lw-green);
}

/* ── Cards grid ── */
.leka-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

/* ── Card ── */
.leka-why__card {
  position: relative;
  padding: 34px 26px 30px;
  border-radius: 20px;
  background: var(--lw-card-bg);
  border: 1px solid var(--lw-card-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

@media (hover: hover) {
  .leka-why__card:hover {
    background: var(--lw-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(0,0,0,.28);
  }
}

/* ── Sticker ── */
.leka-why__sticker {
  position: absolute;
  top: -15px;
  right: 20px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lw-green), rgba(32,204,160,.75));
  color: #06162D;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(32,204,160,.38);
}

/* ── Icon wrap ── */
.leka-why__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(77,144,255,.18);
  color: var(--lw-blue);
}

.leka-why__icon-wrap--teal {
  background: rgba(28,180,207,.18);
  color: var(--lw-teal);
}

.leka-why__icon-wrap--coral {
  background: rgba(255,107,107,.18);
  color: var(--lw-coral);
}

.leka-why__icon-wrap--purple {
  background: rgba(155,119,245,.18);
  color: var(--lw-purple);
}

/* ── Card text ── */
.leka-why__card-title {
  font-size: 16.5px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.leka-why__card-text {
  font-size: 13px;
  line-height: 1.68;
  color: var(--lw-muted);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .leka-why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .leka-why { padding: 60px 0; }
  .leka-why__header { margin-bottom: 40px; }
  .leka-why__grid { grid-template-columns: 1fr; gap: 36px; }
  .leka-why__card { padding: 28px 22px 24px; }
  .leka-why__cursor { display: none; }
  .leka-why__shape--tr,
  .leka-why__shape--bl { display: none; }
}


/* Pricing components */
.pricing-section { background: var(--color-white); padding: clamp(64px, 8vw, 96px) 0; }
.pricing-section--soft { background: var(--color-off-white); }
.pricing-section__header { max-width: 760px; margin-bottom: 32px; }
.pricing-section__header h2 { margin: 0 0 12px; color: var(--color-navy); }
.pricing-section__header p { margin: 0; color: var(--color-slate); max-width: 68ch; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.pricing-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pricing-card { position: relative; min-width: 0; display: flex; flex-direction: column; gap: 14px; padding: 24px; border: 1px solid var(--color-border); border-radius: 14px; background: var(--color-white); box-shadow: var(--shadow-soft); }
.pricing-card--featured { border-color: rgba(37, 99, 255, .35); box-shadow: 0 18px 46px rgba(37, 99, 255, .12); }
.pricing-card__eyebrow { width: fit-content; margin: 0; padding: 5px 10px; border-radius: var(--radius-pill); background: var(--color-blue-soft); color: var(--color-blue); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.pricing-card__title { margin: 0; color: var(--color-navy); font-size: 20px; font-weight: 800; line-height: 1.2; text-wrap: balance; }
.pricing-card__price { margin: 0; color: var(--color-navy); font-size: clamp(26px, 3vw, 34px); font-weight: 800; line-height: 1.05; }
.pricing-card__monthly { margin: -6px 0 0; color: var(--color-blue); font-size: 14px; font-weight: 800; }
.pricing-card__desc { margin: 0; color: var(--color-slate); font-size: 14px; line-height: 1.62; }
.pricing-card__list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; color: var(--color-slate); font-size: 14px; }
.pricing-card__list li { position: relative; padding-left: 18px; }
.pricing-card__list li::before { content: ''; position: absolute; left: 0; top: .7em; width: 7px; height: 7px; border-radius: 50%; background: var(--color-mint); }
.pricing-card__cta { margin-top: auto; }
.pricing-note { max-width: 860px; margin: 28px auto 0; padding: 16px 22px; text-align: center; border: 1px solid rgba(37, 99, 255, 0.16); border-radius: 12px; background: var(--color-blue-soft); color: var(--color-navy); font-size: 14px; line-height: 1.65; }
.pricing-table-wrap { overflow-x: auto; border: 1px solid var(--color-border); border-radius: 14px; background: var(--color-white); }
.pricing-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.pricing-table th, .pricing-table td { padding: 14px 16px; border-bottom: 1px solid var(--color-border); text-align: left; vertical-align: top; }
.pricing-table th { color: var(--color-navy); background: var(--color-off-white); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.pricing-table td { color: var(--color-slate); font-size: 14px; }
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table strong { color: var(--color-navy); }
.service-card__price, .offer-price-pill { display: inline-flex; width: fit-content; margin: 8px 0 10px; padding: 5px 10px; border-radius: var(--radius-pill); background: var(--color-blue-soft); color: var(--color-blue); font-size: 12px; font-weight: 800; }
@media (max-width: 1024px) { .pricing-grid, .pricing-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .pricing-section { padding: 56px 0; } .pricing-grid, .pricing-grid--four { grid-template-columns: 1fr; } .pricing-card { padding: 20px; } }

/* Homepage pricing cards */
body.home .pricing-section--soft { background: linear-gradient(180deg, #f7f8fa 0%, #eef4ff 100%); }
body.home .pricing-section .pricing-section__header { max-width: 780px; margin-inline: auto; margin-bottom: 40px; text-align: center; }
body.home .pricing-section .pricing-section__header h2 { max-width: 14ch; margin-inline: auto; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.02; letter-spacing: -0.055em; text-wrap: balance; }
body.home .pricing-section .pricing-section__header p { max-width: 62ch; margin-inline: auto; font-size: clamp(16px, 1.35vw, 19px); line-height: 1.72; }
body.home .pricing-section .pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
body.home .pricing-section .pricing-card { min-height: 332px; padding: 30px 32px; border-radius: 18px; border-color: rgba(211, 218, 230, 0.9); background: #fff; box-shadow: 0 18px 48px rgba(8, 29, 58, 0.08); }
body.home .pricing-section .pricing-card--featured { border-color: rgba(37, 99, 255, 0.35); background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%); box-shadow: 0 22px 58px rgba(37, 99, 255, 0.13); }
body.home .pricing-section .pricing-card__eyebrow { order: -1; margin-bottom: 2px; padding: 6px 12px; border: 1px solid rgba(37, 99, 255, 0.22); background: #eaf1ff; font-size: 10px; letter-spacing: 0.12em; }
body.home .pricing-section .pricing-card__title { max-width: 12ch; font-size: clamp(23px, 2vw, 30px) !important; line-height: 1.12; letter-spacing: -0.04em; }
body.home .pricing-section .pricing-card__price { margin-top: 4px; color: var(--color-blue, #2563ff); font-size: clamp(17px, 1.45vw, 21px) !important; letter-spacing: -0.02em; line-height: 1.24; }
body.home .pricing-section .pricing-card__desc { max-width: 31ch; color: #4b5a73; font-size: clamp(15px, 1.15vw, 17px) !important; line-height: 1.68; }
body.home .pricing-section .pricing-card__cta { align-self: stretch; justify-content: center; min-height: 50px; border-radius: 999px; font-size: 15px; font-weight: 800; }
body.home .pricing-section .pricing-card:not(.pricing-card--featured) .pricing-card__cta { border-color: transparent; background: transparent; color: var(--color-navy, #081d3a); box-shadow: none; }
body.home .pricing-section .pricing-card:not(.pricing-card--featured) .pricing-card__cta:hover,
body.home .pricing-section .pricing-card:not(.pricing-card--featured) .pricing-card__cta:focus-visible { color: var(--color-blue, #2563ff); background: #eaf1ff; }
@media (max-width: 900px) { body.home .pricing-section .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) {
  body.home .pricing-section { padding: 48px 0 108px; }
  body.home .pricing-section .pricing-section__header { margin-bottom: 22px; text-align: left; }
  body.home .pricing-section .pricing-section__header h2,
  body.home .pricing-section .pricing-section__header p { margin-inline: 0; }
  body.home .pricing-section .pricing-section__header h2 { max-width: 12ch; font-size: clamp(31px, 9vw, 40px); }
  body.home .pricing-section .pricing-section__header p { font-size: 15px; line-height: 1.68; }
  body.home .pricing-section .pricing-grid { grid-template-columns: 1fr; gap: 14px; }
  body.home .pricing-section .pricing-card { min-height: 0; padding: 22px 20px; border-radius: 16px; }
  body.home .pricing-section .pricing-card__eyebrow { font-size: 9px; }
  body.home .pricing-section .pricing-card__title { max-width: 18ch; font-size: 21px !important; line-height: 1.14; }
  body.home .pricing-section .pricing-card__price { font-size: 14px !important; line-height: 1.28; }
  body.home .pricing-section .pricing-card__desc { font-size: 14px !important; line-height: 1.56; }
  body.home .pricing-section .pricing-card__cta { min-height: 42px; font-size: 14px; }
}

/* Activity landing: align the family cards with the homepage métier cards. */
main #familles.sol-fam {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, #f7f8fa 0%, #eef4ff 100%);
}

main #familles .sol-fam-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

main #familles .sol-fam-card {
  grid-template-columns: 52fr 48fr;
  min-height: 402px;
  border-radius: 24px;
  border-color: rgba(221, 230, 242, 0.95);
  box-shadow: 0 18px 48px rgba(8, 29, 58, 0.08), 0 1px 4px rgba(8, 29, 58, 0.04);
}

main #familles .sol-fam__content {
  padding: 34px 26px 30px 32px;
  gap: 12px;
}

main #familles .sol-fam__icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eef4ff;
}

main #familles .sol-fam__promise {
  max-width: 24ch;
  padding: 6px 12px;
  color: #6b7890;
  background: rgba(8, 29, 58, 0.055);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

main #familles .sol-fam__name {
  max-width: 15ch;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

main #familles .sol-fam__desc {
  max-width: 31ch;
  color: #4a5875;
  font-size: 15px;
  line-height: 1.65;
}

main #familles .sol-fam__more {
  color: var(--color-blue, #2563ff);
  font-size: 14px;
  font-weight: 800;
}

main #familles .sol-fam__img-wrap {
  min-height: 100%;
}

main #familles .sol-fam__img-clip {
  clip-path: polygon(7% 0%, 100% 0%, 100% 100%, 0% 100%);
}

main #familles .sol-fam__photo {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1024px) {
  main #familles { padding-inline: 28px; }
  main #familles .sol-fam-grid { gap: 16px; }
  main #familles .sol-fam-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 170px;
    min-height: 0;
  }
  main #familles .sol-fam__content {
    order: 1;
    padding: 24px 20px 18px;
    gap: 10px;
  }
  main #familles .sol-fam__img-wrap {
    order: 2;
    height: 170px;
  }
  main #familles .sol-fam__name { font-size: 20px; }
  main #familles .sol-fam__img-clip {
    clip-path: polygon(0% 8%, 100% 0%, 100% 100%, 0% 100%);
  }
}

@media (max-width: 640px) {
  main #familles.sol-fam { padding: 52px 16px 68px; }
  main #familles .sol-fam-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }
  main #familles .sol-fam-card {
    grid-template-rows: auto 172px;
    border-radius: 18px;
  }
  main #familles .sol-fam__content {
    padding: 18px 14px 14px;
    gap: 8px;
  }
  main #familles .sol-fam__icon-bubble {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }
  main #familles .sol-fam__promise {
    max-width: 28ch;
    padding: 4px 8px;
    font-size: 9px;
    line-height: 1.25;
  }
  main #familles .sol-fam__name {
    max-width: 18ch;
    font-size: 19px;
  }
  main #familles .sol-fam__desc {
    max-width: none;
    font-size: 13px;
    line-height: 1.48;
  }
  main #familles .sol-fam__more {
    font-size: 13px;
    line-height: 1.2;
  }
  main #familles .sol-fam__img-wrap { height: 172px; }
}

/* Activity landing rebuilt métier cards. */
.leka-activity-families {
  position: relative;
  overflow: hidden;
  padding: 72px 24px 88px;
  background: linear-gradient(180deg, #f7f8fa 0%, #eef4ff 100%);
}

.leka-activity-families__container {
  width: min(100%, var(--container, 1200px));
  margin: 0 auto;
}

.leka-activity-families__header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.leka-activity-families__eyebrow {
  margin: 0 0 12px;
  color: #2563ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.leka-activity-families__title {
  margin: 0;
  color: #081d3a;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.leka-activity-families__subtitle {
  max-width: 650px;
  margin: 16px auto 0;
  color: #4a5875;
  font-size: 16px;
  line-height: 1.65;
}

.leka-activity-families__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.leka-activity-families__grid > li {
  min-width: 0;
}

.leka-activity-families__card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 52fr 48fr;
  min-height: 402px;
  height: 100%;
  overflow: hidden;
  color: #081d3a;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(221, 230, 242, 0.95);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(8, 29, 58, 0.08), 0 1px 4px rgba(8, 29, 58, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.leka-activity-families__card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 255, 0.18);
  box-shadow: 0 24px 58px rgba(8, 29, 58, 0.12), 0 2px 8px rgba(8, 29, 58, 0.05);
}

.leka-activity-families__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 34px 26px 30px 32px;
  gap: 12px;
}

.leka-activity-families__icon-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eef4ff;
}

.leka-activity-families__icon-bubble img {
  display: block;
  width: 28px;
  height: 28px;
}

.leka-activity-families__promise {
  width: fit-content;
  max-width: 28ch;
  margin: 0;
  padding: 8px 14px;
  color: #6b7890;
  background: rgba(8, 29, 58, 0.055);
  border-radius: 12px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leka-activity-families__name {
  max-width: 15ch;
  margin: 0;
  color: #081d3a;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.leka-activity-families__desc {
  max-width: 31ch;
  margin: 0;
  color: #4a5875;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.leka-activity-families__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #2563ff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.leka-activity-families__more svg {
  flex: 0 0 auto;
  transition: transform 220ms ease;
}

.leka-activity-families__card:hover .leka-activity-families__more svg {
  transform: translateX(3px);
}

.leka-activity-families__img-wrap {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 100%;
  background: linear-gradient(155deg, rgba(37, 99, 255, 0.07) 0%, rgba(34, 197, 94, 0.09) 100%);
}

.leka-activity-families__grid > li:nth-child(2) .leka-activity-families__img-wrap {
  background: linear-gradient(155deg, rgba(255, 107, 92, 0.07) 0%, rgba(37, 99, 255, 0.06) 100%);
}

.leka-activity-families__grid > li:nth-child(3) .leka-activity-families__img-wrap {
  background: linear-gradient(155deg, rgba(34, 197, 94, 0.09) 0%, rgba(37, 99, 255, 0.05) 100%);
}

.leka-activity-families__grid > li:nth-child(4) .leka-activity-families__img-wrap {
  background: linear-gradient(155deg, rgba(37, 99, 255, 0.08) 0%, rgba(34, 197, 94, 0.07) 100%);
}

.leka-activity-families__img-clip {
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(7% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.leka-activity-families__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.leka-activity-families__blob,
.leka-activity-families__dots {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.leka-activity-families__blob {
  width: 180px;
  height: 180px;
  opacity: 0.65;
}

.leka-activity-families__dots {
  width: 96px;
  height: 96px;
  opacity: 0.45;
}

.leka-activity-families__blob img,
.leka-activity-families__dots img {
  display: block;
  width: 100%;
  height: 100%;
}

.leka-activity-families .pos-tr { top: -42px; right: -42px; }
.leka-activity-families .pos-tl { top: -42px; left: -42px; }
.leka-activity-families .pos-br { right: -42px; bottom: -42px; }
.leka-activity-families .pos-bl { left: -28px; bottom: -24px; }

.leka-activity-families__help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(221, 230, 242, 0.95);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(8, 29, 58, 0.06);
}

.leka-activity-families__help h3 {
  margin: 0;
  color: #081d3a;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.leka-activity-families__help p {
  margin: 6px 0 0;
  color: #4a5875;
  font-size: 14px;
  line-height: 1.55;
}

.leka-activity-families__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .leka-activity-families {
    padding: 72px 28px 88px;
  }

  .leka-activity-families__grid {
    gap: 16px;
  }

  .leka-activity-families__card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 170px;
    min-height: 0;
  }

  .leka-activity-families__content {
    order: 1;
    padding: 24px 20px 18px;
    gap: 10px;
  }

  .leka-activity-families__img-wrap {
    order: 2;
    height: 170px;
    min-height: 0;
  }

  .leka-activity-families__img-clip {
    clip-path: polygon(0% 8%, 100% 0%, 100% 100%, 0% 100%);
  }

  .leka-activity-families__name {
    font-size: 20px;
  }
}

@media (max-width: 760px) {
  .leka-activity-families__help {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .leka-activity-families {
    padding: 52px 16px 68px;
  }

  .leka-activity-families__header {
    margin-bottom: 32px;
  }

  .leka-activity-families__title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .leka-activity-families__subtitle {
    font-size: 15px;
  }

  .leka-activity-families__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .leka-activity-families__card {
    grid-template-rows: auto 172px;
    border-radius: 18px;
  }

  .leka-activity-families__content {
    padding: 18px 14px 14px;
    gap: 8px;
  }

  .leka-activity-families__icon-bubble {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .leka-activity-families__icon-bubble img {
    width: 24px;
    height: 24px;
  }

  .leka-activity-families__promise {
    max-width: 28ch;
    padding: 4px 8px;
    font-size: 9px;
    line-height: 1.25;
  }

  .leka-activity-families__name {
    max-width: 18ch;
    font-size: 19px;
  }

  .leka-activity-families__desc {
    max-width: none;
    font-size: 13px;
    line-height: 1.48;
  }

  .leka-activity-families__more {
    font-size: 13px;
    line-height: 1.2;
  }

  .leka-activity-families__img-wrap {
    height: 172px;
  }

  .leka-activity-families__dots {
    display: none;
  }

  .leka-activity-families__blob {
    width: 120px;
    height: 120px;
  }

  .leka-activity-families__help {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .leka-activity-families__card,
  .leka-activity-families__more svg {
    transition: none;
  }
}

/* ── Hero services (redesign animé) ─────────────────────────── */
.hs-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: clamp(36px, 4.5vw, 60px) 0 clamp(36px, 4.5vw, 56px);
}
.hs-hero__blob {
  position: absolute; top: -140px; right: -100px;
  width: 620px; height: 580px; border-radius: 50%; pointer-events: none;
  background:
    radial-gradient(circle at 38% 42%, rgba(147,175,255,.16), transparent 54%),
    radial-gradient(circle at 70% 60%, rgba(190,160,255,.10), transparent 46%);
  animation: hs-blob 14s ease-in-out infinite;
}
.hs-hero__dots {
  position: absolute; pointer-events: none;
  background-image: radial-gradient(circle, rgba(37,99,235,.18) 1.8px, transparent 1.8px);
  background-size: 16px 16px;
}
.hs-hero__dots--tr { top: 92px; right: 40px; width: 120px; height: 140px; }
.hs-hero__dots--bl { bottom: 40px; left: 40px; width: 100px; height: 110px; opacity: .7; }

.hs-hero__inner { position: relative; z-index: 1; max-width: 1100px; }
.hs-hero__copy {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 880px; margin: 0 auto;
}

.hs-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border: 1.5px solid #e2e8f0; border-radius: 999px;
  background: #fff; font-size: 13.5px; font-weight: 600; color: var(--color-blue);
  box-shadow: 0 2px 8px rgba(8,29,58,.06); margin: 0;
}
.hs-pill svg { color: #64748b; flex-shrink: 0; }
.hs-clock { transform-origin: 7px 7px; animation: hs-tick 8s linear infinite; }

.hs-title {
  font-size: clamp(38px, 4.4vw, 58px) !important;
  font-weight: 800; line-height: .98 !important; letter-spacing: -.045em;
  color: var(--color-navy); margin: 16px 0 12px; text-wrap: balance;
}
.hs-mark { position: relative; color: #2563EB; white-space: nowrap; z-index: 0; }
.hs-mark--green { color: #16a34a; }
.hs-mark::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: .06em;
  height: .34em; background: rgba(37,99,235,.16); border-radius: 4px; z-index: -1;
  transform: scaleX(0); transform-origin: left;
  animation: hs-draw .6s cubic-bezier(.22,1,.36,1) 780ms both;
}
.hs-mark--green::after { background: rgba(22,163,74,.16); animation-delay: 980ms; }

.hs-lead { max-width: 62ch; font-size: 16px !important; line-height: 1.6 !important; color: var(--color-slate); margin: 0 0 22px; }

.hs-actions { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.hs-cta { transition: transform .18s cubic-bezier(.22,1,.36,1), box-shadow .2s, background-color .16s; }
.hs-cta .hs-arrow { display: inline-block; transition: transform .2s; }
.hs-cta:hover .hs-arrow { transform: translateX(4px); }
.hs-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 700; color: var(--color-navy);
  text-decoration: none; transition: color .14s, gap .18s;
}
.hs-link:hover { color: #2563EB; gap: 10px; }
.hs-down { display: inline-block; transition: transform .18s; }
.hs-link:hover .hs-down { transform: translateY(3px); }

.hs-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 32px auto 0; max-width: 760px; padding: 0; list-style: none; }
.hs-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border: 1.5px solid #e2e8f0; border-radius: 999px;
  background: #fff; font-size: 14px; font-weight: 600; color: #334155;
  box-shadow: 0 2px 8px rgba(8,29,58,.04);
  transition: transform .18s, border-color .18s, color .18s;
  animation: hs-pop .55s cubic-bezier(.22,1,.36,1) both;
}
.hs-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #2563EB; flex-shrink: 0; }
.hs-chip:hover { transform: translateY(-3px); border-color: #2563EB; color: #2563EB; }
.hs-chip:nth-child(1) { animation-delay: 1120ms; }
.hs-chip:nth-child(2) { animation-delay: 1210ms; }
.hs-chip:nth-child(3) { animation-delay: 1300ms; }
.hs-chip:nth-child(4) { animation-delay: 1390ms; }
.hs-chip:nth-child(5) { animation-delay: 1480ms; }

/* Entrée chorégraphiée */
.hs-anim > *:nth-child(1) { animation: hs-in .7s cubic-bezier(.22,1,.36,1) 40ms both; }
.hs-anim > *:nth-child(2) { animation: hs-in .7s cubic-bezier(.22,1,.36,1) 160ms both; }
.hs-anim > *:nth-child(3) { animation: hs-in .7s cubic-bezier(.22,1,.36,1) 300ms both; }
.hs-anim > *:nth-child(4) { animation: hs-in .7s cubic-bezier(.22,1,.36,1) 440ms both; }

@keyframes hs-in   { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes hs-draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes hs-pop  { from { opacity: 0; transform: scale(.8) translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes hs-blob { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-24px,20px) scale(1.06); } }
@keyframes hs-tick { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Variante navy (data-hs-theme="navy") */
.hs-hero[data-hs-theme="navy"] { background: #06162D; }
.hs-hero[data-hs-theme="navy"] .hs-title { color: #F5F9FF; }
.hs-hero[data-hs-theme="navy"] .hs-mark { color: #6ea0ff; }
.hs-hero[data-hs-theme="navy"] .hs-mark--green { color: #4ade80; }
.hs-hero[data-hs-theme="navy"] .hs-lead { color: #A9BAD6; }
.hs-hero[data-hs-theme="navy"] .hs-link { color: #EAF1FF; }
.hs-hero[data-hs-theme="navy"] .hs-pill { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #93b4ff; }
.hs-hero[data-hs-theme="navy"] .hs-pill svg { color: #7f93b8; }
.hs-hero[data-hs-theme="navy"] .hs-chip { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: #C7D5EE; }

@media (max-width: 900px) { .hs-title { font-size: clamp(38px,9vw,52px) !important; } }
@media (prefers-reduced-motion: reduce) {
  .hs-anim > *, .hs-mark::after, .hs-chip, .hs-hero__blob, .hs-clock { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hs-mark::after { transform: scaleX(1) !important; }
}
