:root {
      --color-bg: #020617;
      --color-bg-elevated: #020617;
      --color-primary: #2563eb;
      --color-primary-soft: rgba(37, 99, 235, 0.12);
      --color-primary-strong: #1d4ed8;
      --color-accent: #38bdf8;
      --color-text: #e5e7eb;
      --color-muted: #9ca3af;
      --color-border: rgba(148, 163, 184, 0.35);
      --color-card: rgba(15, 23, 42, 0.96);
      --shadow-glow: 0 0 0 1px rgba(37, 99, 235, 0.35), 0 20px 60px rgba(15, 23, 42, 0.8);
      --radius-lg: 18px;
      --radius-pill: 999px;
      --nav-height: 72px;
      --transition-fast: 0.18s ease-out;
      --transition-med: 0.26s ease;
    }

    * {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: radial-gradient(circle at top left, #1e3a8a 0, #020617 52%, #000 100%);
      color: var(--color-text);
      -webkit-font-smoothing: antialiased;
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

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

    main {
      display: block;
    }

    .page-shell {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background:
        radial-gradient(circle at 10% 0, rgba(37, 99, 235, 0.35) 0, transparent 60%),
        radial-gradient(circle at 90% 10%, rgba(56, 189, 248, 0.28) 0, transparent 55%),
        radial-gradient(circle at 50% 100%, rgba(15, 23, 42, 1) 0, #000 80%);
    }

    .shell-inner {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 1.5rem 3rem;
    }

    @media (min-width: 1024px) {
      .shell-inner {
        padding: 0 2rem 4rem;
      }
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: radial-gradient(circle at top, rgba(15, 23, 42, 0.94) 0, rgba(15, 23, 42, 0.86) 45%, rgba(15, 23, 42, 0.80) 100%);
      border-bottom: 1px solid rgba(148, 163, 184, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      gap: 1rem;
      height: var(--nav-height);
    }

    .site-header-inner {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .header-inner {
      flex: 0 0 auto;
      padding: 0;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .site-header .nav-primary {
      flex: 0 0 auto;
      margin-left: auto;
    }

    .site-header .nav-primary-inner {
      justify-content: flex-end;
    }

    @media (min-width: 1024px) {
      .site-header-inner {
        padding-inline: 2rem;
      }
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      background:
        conic-gradient(from 210deg, #38bdf8, #2563eb, #6366f1, #38bdf8);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9), 0 14px 35px rgba(15, 23, 42, 0.75);
    }

    .brand-mark span {
      width: 18px;
      height: 18px;
      border-radius: 6px;
      background: radial-gradient(circle at 20% 0, #eff6ff 0, #bfdbfe 28%, #1d4ed8 78%, #020617 100%);
      box-shadow:
        0 0 18px rgba(191, 219, 254, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.95);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .brand-title {
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .brand-subtitle {
      font-size: 0.68rem;
      color: var(--color-muted);
    }

    .nav-toggle {
      border: 1px solid rgba(148, 163, 184, 0.65);
      background: rgba(15, 23, 42, 0.9);
      border-radius: 999px;
      padding: 0.4rem 0.7rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      cursor: pointer;
      color: var(--color-text);
      transition: background var(--transition-fast), border-color var(--transition-fast), transform 0.12s ease-out;
    }

    .nav-toggle:hover {
      background: rgba(30, 64, 175, 0.9);
      border-color: rgba(129, 140, 248, 0.9);
      transform: translateY(-1px);
    }

    .nav-toggle span {
      font-size: 0.76rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .nav-toggle-bars {
      width: 18px;
      height: 12px;
      display: inline-flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .nav-toggle-bars i {
      display: block;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(to right, #e5e7eb, #93c5fd);
      transition: transform 0.16s ease-out, opacity 0.16s ease-out;
    }

    .nav-open .nav-toggle-bars i:nth-child(1) {
      transform: translateY(5px) rotate(45deg);
    }

    .nav-open .nav-toggle-bars i:nth-child(2) {
      opacity: 0;
    }

    .nav-open .nav-toggle-bars i:nth-child(3) {
      transform: translateY(-5px) rotate(-45deg);
    }

    .nav-primary {
      position: static;
      background: transparent;
      border: none;
    }

    .nav-primary-inner {
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-end;
      gap: 0.6rem;
    }

    .nav-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .nav-link a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.55rem 0.7rem;
      border-radius: 10px;
      color: var(--color-muted);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: 1px solid transparent;
      background: transparent;
      transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), transform 0.12s ease-out;
    }

    .nav-link a:hover {
      color: var(--color-text);
      background: rgba(15, 23, 42, 0.8);
      border-color: rgba(129, 140, 248, 0.8);
      transform: translateY(-1px);
    }

    .nav-link-label {
      display: flex;
      align-items: center;
      gap: 0.55rem;
    }

    .nav-link-label span {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 0, #e0f2fe 0, #38bdf8 45%, #0ea5e9 100%);
      box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9), 0 0 0 6px rgba(37, 99, 235, 0.35);
    }

    .nav-link a strong {
      font-weight: 600;
      color: #e5e7eb;
    }

    .nav-link-kicker {
      font-size: 0.7rem;
      color: var(--color-muted);
    }

    .nav-cta {
      display: flex;
      justify-content: flex-start;
      margin-top: 0.4rem;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      padding: 0.55rem 1rem;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(56, 189, 248, 0.9);
      background: linear-gradient(to right, #1d4ed8, #2563eb, #38bdf8);
      color: #f9fafb;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: 0 0 0 1px rgba(15, 23, 42, 1), 0 12px 30px rgba(15, 23, 42, 0.8);
      cursor: pointer;
      transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, filter 0.12s ease-out;
      white-space: nowrap;
    }

    .btn-primary:hover {
      filter: brightness(1.05);
      transform: translateY(-1px) translateZ(0);
      box-shadow: 0 20px 50px rgba(15, 23, 42, 1);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      padding: 0.65rem 1.1rem;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(148, 163, 184, 0.8);
      background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9) 0, rgba(15, 23, 42, 0.9) 40%, rgba(15, 23, 42, 0.96) 100%);
      color: var(--color-muted);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background var(--transition-fast), color var(--transition-fast), transform 0.12s ease-out;
    }

    .btn-secondary:hover {
      color: var(--color-text);
      border-color: rgba(148, 163, 184, 1);
      transform: translateY(-1px);
    }

    @media (min-width: 900px) {
      .nav-toggle {
        display: none;
      }

      .brand-subtitle {
        display: none;
      }


      .nav-links {
        flex-direction: row;
        align-items: center;
        gap: 0.15rem;
      }

      .nav-link a {
        padding: 0.4rem 0.5rem;
        font-size: 0.73rem;
        background: transparent;
        border: none;
        letter-spacing: 0.05em;
      }

      .nav-link-label span {
        display: none;
      }

      .nav-link-kicker {
        display: none;
      }

      .nav-cta {
        margin-top: 0;
      }
    }

    @media (min-width: 1100px) {
      .brand-subtitle {
        display: block;
      }
    }

    .hero {
      padding-top: 1.6rem;
    }

    @media (min-width: 768px) {
      .hero {
        padding-top: 2.6rem;
      }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr);
      gap: 2.25rem;
      align-items: center;
    }

    @media (min-width: 900px) {
      .hero-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.05fr);
        gap: 3.2rem;
      }
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.2rem 0.5rem 0.2rem 0.25rem;
      border-radius: 999px;
      border: 1px solid rgba(56, 189, 248, 0.5);
      background: radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.75) 0, rgba(15, 23, 42, 0.98) 45%, rgba(15, 23, 42, 0.98) 100%);
      box-shadow: 0 0 0 1px rgba(15, 23, 42, 1), 0 14px 40px rgba(15, 23, 42, 0.9);
      margin-bottom: 1.1rem;
    }

    .hero-kicker-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: radial-gradient(circle at 20% 0, #dbeafe 0, #60a5fa 40%, #1d4ed8 100%);
      color: #0f172a;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-kicker-text {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #e5e7eb;
    }

    .hero-kicker-dot {
      width: 5px;
      height: 5px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.24);
    }

    .hero-title {
      font-size: 1.9rem;
      line-height: 1.15;
      letter-spacing: -0.03em;
      margin: 0 0 0.85rem;
      color: #f9fafb;
    }

    @media (min-width: 768px) {
      .hero-title {
        font-size: 2.4rem;
      }
    }

    @media (min-width: 1024px) {
      .hero-title {
        font-size: 2.7rem;
      }
    }

    .hero-title span {
      background: linear-gradient(to right, #93c5fd, #38bdf8, #22c55e);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-lead {
      margin: 0 0 1.4rem;
      font-size: 0.98rem;
      line-height: 1.6;
      color: var(--color-muted);
      max-width: 36rem;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-bottom: 1.4rem;
    }

    .hero-badge {
      padding: 0.2rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(37, 99, 235, 0.6);
      background: rgba(15, 23, 42, 0.8);
      font-size: 0.75rem;
      color: #cbd5f5;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1.3rem;
    }

    .hero-cta-note {
      font-size: 0.78rem;
      color: var(--color-muted);
      max-width: 18rem;
    }

    .hero-footnote {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.78rem;
      color: var(--color-muted);
    }

    .hero-footnote-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
    }

    .hero-panel {
      position: relative;
    }

    .hero-panel-main {
      border-radius: 28px;
      padding: 1.6rem 1.4rem;
      background:
        radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.9) 0, rgba(15, 23, 42, 0.98) 35%, rgba(15, 23, 42, 0.98) 100%);
      border: 1px solid rgba(148, 163, 184, 0.5);
      box-shadow: var(--shadow-glow);
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .hero-panel-main {
        padding: 1.9rem 1.7rem;
      }
    }

    .hero-panel-gradient {
      position: absolute;
      inset: -40%;
      background:
        radial-gradient(circle at 20% 0, rgba(59, 130, 246, 0.28) 0, transparent 50%),
        radial-gradient(circle at 80% 100%, rgba(34, 197, 94, 0.16) 0, transparent 48%);
      opacity: 0.9;
      pointer-events: none;
    }

    .hero-panel-main-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr);
      gap: 1.3rem;
    }

    .hero-stat-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .hero-stat {
      padding: 0.65rem 0.75rem;
      border-radius: 16px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.95) 0, rgba(15, 23, 42, 0.9) 40%, rgba(15, 23, 42, 0.96) 100%);
    }

    .hero-stat-label {
      font-size: 0.68rem;
      color: var(--color-muted);
      margin-bottom: 0.2rem;
    }

    .hero-stat-value {
      font-size: 0.98rem;
      font-weight: 600;
      color: #e5e7eb;
    }

    .hero-stat-tag {
      margin-top: 0.05rem;
      font-size: 0.68rem;
      color: #93c5fd;
    }

    .hero-graph {
      margin-top: 0.3rem;
      padding: 0.65rem 0.8rem 0.75rem;
      border-radius: 16px;
      border: 1px dashed rgba(148, 163, 184, 0.7);
      background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.96) 0, rgba(15, 23, 42, 0.96) 45%, rgba(15, 23, 42, 0.98) 100%);
    }

    .hero-graph-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.4rem;
    }

    .hero-graph-title {
      font-size: 0.78rem;
      color: var(--color-muted);
    }

    .hero-graph-tag {
      padding: 0.1rem 0.55rem;
      border-radius: 999px;
      background: rgba(22, 163, 74, 0.12);
      color: #4ade80;
      font-size: 0.7rem;
    }

    .hero-graph-bars {
      display: flex;
      align-items: flex-end;
      gap: 0.25rem;
      height: 90px;
    }

    .hero-graph-bar {
      flex: 1;
      border-radius: 999px 999px 4px 4px;
      background: linear-gradient(to top, #1d4ed8, #38bdf8);
      opacity: 0.55;
    }

    .hero-graph-bar:nth-child(4),
    .hero-graph-bar:nth-child(5),
    .hero-graph-bar:nth-child(6) {
      background: linear-gradient(to top, #16a34a, #4ade80);
      opacity: 0.9;
    }

    .hero-graph-bar:nth-child(1) { height: 32%; }
    .hero-graph-bar:nth-child(2) { height: 45%; }
    .hero-graph-bar:nth-child(3) { height: 60%; }
    .hero-graph-bar:nth-child(4) { height: 75%; }
    .hero-graph-bar:nth-child(5) { height: 88%; }
    .hero-graph-bar:nth-child(6) { height: 94%; }

    .hero-graph-axis {
      margin-top: 0.35rem;
      display: flex;
      justify-content: space-between;
      font-size: 0.68rem;
      color: var(--color-muted);
    }

    .hero-mini {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 0.4rem;
    }

    .hero-mini-item {
      padding: 0.45rem 0.65rem;
      border-radius: 12px;
      border: 1px solid rgba(148, 163, 184, 0.55);
      background: rgba(15, 23, 42, 0.9);
      font-size: 0.72rem;
      color: var(--color-muted);
    }

    .hero-mini-item strong {
      color: #e5e7eb;
    }

    .section {
      margin-top: 3rem;
    }

    @media (min-width: 900px) {
      .section {
        margin-top: 3.4rem;
      }
    }

    .section-header {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      margin-bottom: 1.6rem;
      max-width: 42rem;
    }

    .section-eyebrow {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #60a5fa;
    }

    .section-title {
      font-size: 1.35rem;
      letter-spacing: -0.02em;
      color: #e5e7eb;
      margin: 0;
    }

    .section-lead {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--color-muted);
    }

    .cards-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .card {
      border-radius: var(--radius-lg);
      border: 1px solid var(--color-border);
      background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.95) 0, rgba(15, 23, 42, 0.96) 45%, rgba(15, 23, 42, 0.98) 100%);
      padding: 1.15rem 1.15rem 1.2rem;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
    }

    .card-kicker {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--color-muted);
      margin-bottom: 0.4rem;
    }

    .card-title {
      font-size: 1.02rem;
      color: #e5e7eb;
      margin: 0 0 0.4rem;
    }

    .card-body {
      font-size: 0.9rem;
      line-height: 1.7;
      color: var(--color-muted);
      margin: 0;
    }

    .card-list {
      margin: 0.55rem 0 0;
      padding-left: 1rem;
      font-size: 0.88rem;
      color: var(--color-muted);
    }

    .card-list li + li {
      margin-top: 0.2rem;
    }

    .rentabilite-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr);
      gap: 1.4rem;
      align-items: flex-start;
    }

    @media (min-width: 900px) {
      .rentabilite-layout {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      }
    }

    .highlight-card {
      border-radius: 22px;
      padding: 1.3rem 1.25rem 1.4rem;
      background:
        radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.45) 0, rgba(15, 23, 42, 0.98) 45%, rgba(15, 23, 42, 1) 100%);
      border: 1px solid rgba(37, 99, 235, 0.7);
      box-shadow: var(--shadow-glow);
    }

    .highlight-title {
      font-size: 1rem;
      margin: 0 0 0.4rem;
      color: #f9fafb;
    }

    .highlight-body {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.7;
      color: #d1d5db;
    }

    .highlight-columns {
      margin-top: 0.7rem;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.7rem;
    }

    .highlight-pill {
      padding: 0.5rem 0.6rem;
      border-radius: 14px;
      border: 1px solid rgba(191, 219, 254, 0.55);
      background: rgba(15, 23, 42, 0.96);
      font-size: 0.82rem;
      color: #e5e7eb;
    }

    .range-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.6rem;
      margin-top: 0.6rem;
      font-size: 0.82rem;
      color: var(--color-muted);
    }

    .range-bar {
      flex: 1;
      height: 6px;
      border-radius: 999px;
      background: linear-gradient(to right, #fee2e2, #facc15, #22c55e);
      position: relative;
      overflow: hidden;
    }

    .range-marker {
      position: absolute;
      top: -3px;
      width: 14px;
      height: 14px;
      border-radius: 999px;
      border: 2px solid #e5e7eb;
      background: #22c55e;
      box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.24);
      left: 52%;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .steps-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    .step {
      border-radius: var(--radius-lg);
      border: 1px solid var(--color-border);
      background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.96) 0, rgba(15, 23, 42, 0.98) 45%, rgba(15, 23, 42, 1) 100%);
      padding: 1.1rem 1rem 1.15rem;
    }

    .step-index {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.18);
      border: 1px solid rgba(37, 99, 235, 0.9);
      color: #bfdbfe;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .step-title {
      margin: 0 0 0.4rem;
      font-size: 0.95rem;
      color: #e5e7eb;
    }

    .step-body {
      margin: 0;
      font-size: 0.86rem;
      line-height: 1.6;
      color: var(--color-muted);
    }

    .trust-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr);
      gap: 1rem;
      align-items: flex-start;
    }

    @media (min-width: 900px) {
      .trust-layout {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      }
    }

    .logos-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 0.8rem;
    }

    .logo-pill {
      padding: 0.45rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      font-size: 0.75rem;
      color: var(--color-muted);
      background: rgba(15, 23, 42, 0.9);
    }

    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
      margin-top: 0.7rem;
    }

    .metric {
      border-radius: 16px;
      border: 1px solid rgba(148, 163, 184, 0.55);
      background: rgba(15, 23, 42, 0.96);
      padding: 0.75rem 0.8rem;
      font-size: 0.86rem;
      color: var(--color-muted);
    }

    .metric strong {
      display: block;
      font-size: 1.05rem;
      color: #e5e7eb;
      margin-bottom: 0.1rem;
    }

    .form-section {
      margin-top: 3.2rem;
    }

    .form-shell {
      border-radius: 26px;
      padding: 1.7rem 1.5rem 1.8rem;
      background:
        radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.35) 0, rgba(15, 23, 42, 0.98) 45%, rgba(15, 23, 42, 1) 100%);
      border: 1px solid rgba(59, 130, 246, 0.7);
      box-shadow: var(--shadow-glow);
      display: grid;
      grid-template-columns: minmax(0, 1.05fr);
      gap: 1.4rem;
    }

    @media (min-width: 900px) {
      .form-shell {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        padding: 2rem 1.9rem 2.1rem;
      }
    }

    .form-intro-title {
      font-size: 1.2rem;
      margin: 0 0 0.4rem;
      color: #f9fafb;
    }

    .form-intro-text {
      margin: 0 0 0.8rem;
      font-size: 0.9rem;
      line-height: 1.7;
      color: #d1d5db;
    }

    .form-intro-list {
      margin: 0;
      padding-left: 1rem;
      font-size: 0.86rem;
      color: #e5e7eb;
    }

    .form-intro-list li + li {
      margin-top: 0.2rem;
    }

    .form-footnote {
      margin-top: 0.7rem;
      font-size: 0.8rem;
      color: #cbd5f5;
    }

    form {
      width: 100%;
    }

    .form-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 0.8rem;
    }

    @media (min-width: 640px) {
      .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .form-grid-full {
        grid-column: 1 / -1;
      }
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 0.28rem;
      font-size: 0.86rem;
    }

    .field-label {
      display: flex;
      justify-content: space-between;
      color: #e5e7eb;
    }

    .field-label span {
      color: var(--color-muted);
      font-size: 0.78rem;
    }

    .field-control {
      position: relative;
    }

    .field-control input,
    .field-control select,
    .field-control textarea {
      width: 100%;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.9);
      color: var(--color-text);
      padding: 0.6rem 0.9rem;
      font-family: inherit;
      font-size: 0.86rem;
      outline: none;
      transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    }

    .field-control textarea {
      border-radius: 16px;
      min-height: 96px;
      resize: vertical;
      padding-top: 0.65rem;
    }

    .field-control select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      padding-right: 2.2rem;
    }

    .field-control input::placeholder,
    .field-control textarea::placeholder {
      color: rgba(148, 163, 184, 0.9);
    }

    .field-control input:focus,
    .field-control select:focus,
    .field-control textarea:focus {
      border-color: rgba(59, 130, 246, 0.95);
      box-shadow: 0 0 0 1px rgba(30, 64, 175, 0.9), 0 0 0 8px rgba(37, 99, 235, 0.4);
      background: rgba(15, 23, 42, 0.95);
    }

    .field-select-arrow {
      position: absolute;
      right: 0.75rem;
      top: 50%;
      transform: translateY(-50%);
      width: 9px;
      height: 9px;
      border-right: 1px solid rgba(148, 163, 184, 0.9);
      border-bottom: 1px solid rgba(148, 163, 184, 0.9);
      transform-origin: center;
      transform: translateY(-60%) rotate(45deg);
      pointer-events: none;
    }

    .form-actions {
      margin-top: 0.9rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem;
    }

    .form-note {
      font-size: 0.8rem;
      color: #cbd5f5;
      max-width: 18rem;
    }

    .footer {
      border-top: 1px solid rgba(148, 163, 184, 0.35);
      margin-top: 3rem;
      padding-top: 1.2rem;
      padding-bottom: 1.6rem;
      font-size: 0.82rem;
      color: var(--color-muted);
    }

    .footer-row {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    @media (min-width: 768px) {
      .footer-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .footer-links a {
      color: var(--color-muted);
      transition: color var(--transition-fast);
    }

    .footer-links a:hover {
      color: #e5e7eb;
    }

    .toast {
      position: fixed;
      left: 50%;
      bottom: 1.4rem;
      transform: translateX(-50%) translateY(120%);
      min-width: 260px;
      max-width: 90vw;
      padding: 0.9rem 1rem;
      border-radius: 14px;
      border: 1px solid rgba(34, 197, 94, 0.9);
      background: radial-gradient(circle at 0 0, rgba(22, 163, 74, 0.18) 0, rgba(15, 23, 42, 0.98) 52%, rgba(15, 23, 42, 1) 100%);
      color: #bbf7d0;
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.9);
      font-size: 0.86rem;
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
      opacity: 0;
      pointer-events: none;
      transition: transform 0.18s ease-out, opacity 0.18s ease-out;
      z-index: 60;
    }

    .toast.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .toast strong {
      font-weight: 600;
      color: #dcfce7;
    }

    .toast span {
      color: #bbf7d0;
    }

    .reviews-widget-section {
      padding: 2.8rem 0 2rem;
      background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.18) 0, transparent 55%),
        radial-gradient(circle at 70% 80%, rgba(56, 189, 248, 0.12) 0, transparent 50%);
    }

    .reviews-widget-inner {
      width: 100%;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .reviews-widget-card {
      background: var(--color-card);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-glow);
      padding: 1.2rem 1.1rem 1.35rem;
    }

    .reviews-widget-head {
      margin-bottom: 0.9rem;
    }

    .reviews-widget-kicker {
      margin: 0 0 0.25rem;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 800;
      color: var(--color-accent);
    }

    .reviews-widget-title {
      margin: 0;
      font-size: clamp(1.35rem, 2.4vw, 1.95rem);
      line-height: 1.2;
      color: var(--color-text);
      letter-spacing: -0.02em;
    }

    .reviews-widget-subtitle {
      margin: 0.5rem 0 0;
      font-size: 0.93rem;
      color: var(--color-muted);
      max-width: 65ch;
    }

    .reviews-widget-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin: 0.85rem 0 1rem;
    }

    .reviews-widget-proof span {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      border-radius: 999px;
      padding: 0.28rem 0.7rem;
      font-size: 0.79rem;
      font-weight: 700;
      color: var(--color-text);
      background: var(--color-primary-soft);
      border: 1px solid var(--color-border);
    }

    .reviews-widget-note {
      margin: 0.75rem 0 0;
      font-size: 0.82rem;
      color: var(--color-muted);
      text-align: center;
    }

    @media (min-width: 768px) {
      .reviews-widget-card {
        padding: 1.55rem 1.45rem 1.6rem;
      }
    }

    @media (max-width: 767px) {
      .reviews-widget-inner {
        padding: 0 1rem;
      }
    }

    /* Elfsight widget – thème sombre */
    .reviews-widget-card .es-embed-root,
    .reviews-widget-card [class*="es-main-container"],
    .reviews-widget-card [class*="es-widget-background"],
    .reviews-widget-card [class*="es-background-container"] {
      background: transparent !important;
    }
    .reviews-widget-card [class*="es-background-base"] {
      background-color: transparent !important;
    }
    .reviews-widget-card [class*="es-review-background-container"] {
      background: var(--color-card) !important;
      border: 1px solid var(--color-border) !important;
    }
    .reviews-widget-card [class*="es-review-author-name"],
    .reviews-widget-card [class*="ReviewAuthorName"] span {
      color: var(--color-text) !important;
    }
    .reviews-widget-card [class*="es-review-content-text"],
    .reviews-widget-card [class*="es-text-shortener"],
    .reviews-widget-card [class*="ShortenedText"] {
      color: var(--color-muted) !important;
    }
    .reviews-widget-card [class*="es-review-info-date"],
    .reviews-widget-card [class*="es-review-info-source"] {
      color: var(--color-muted) !important;
    }
    .reviews-widget-card [class*="es-rating-item-filled"] path,
    .reviews-widget-card [class*="es-rating-item-unfilled"] path {
      fill: var(--color-accent) !important;
      stroke: var(--color-accent) !important;
    }
    .reviews-widget-card [class*="es-carousel-arrow-control"] path,
    .reviews-widget-card [class*="es-bullets-control-item"] {
      fill: var(--color-muted) !important;
      stroke: var(--color-muted) !important;
    }
    .reviews-widget-card [class*="es-bullets-control-item-active"] {
      background: var(--color-accent) !important;
    }
    .reviews-widget-card [class*="es-text-shortener-control"],
    .reviews-widget-card a[class*="es-review-link"] {
      color: var(--color-accent) !important;
    }

  /* header-single-cta */
  header .menu-toggle,
  header .nav-toggle,
  header .hamburger,
  header .mobile-menu,
  header .nav-mobile {
    display: none !important;
  }

  header .nav-links,
  header .links,
  header .nav-link {
    display: none !important;
  }

  header nav,
  header nav.site-nav,
  header nav.primary-nav,
  header .site-nav,
  header .primary-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0.5rem !important;
  }

  header nav ul,
  header nav .nav-list,
  header nav .links,
  header nav .nav-links {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0.5rem !important;
  }

  header nav ul > li,
  header nav .nav-list > li,
  header nav .links > li,
  header nav .nav-links > li {
    display: none !important;
  }

  header nav ul > li.nav-cta,
  header nav .nav-list > li.nav-cta,
  header nav .links > li.nav-cta,
  header nav .nav-links > li.nav-cta {
    display: inline-flex !important;
  }

  header a.btn,
  header a.btn-primary,
  header a.nav-cta,
  header .nav-cta,
  header .header-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.45rem !important;
    white-space: nowrap !important;
  }

  header .btn-ghost,
  header .btn-outline {
    display: none !important;
  }

/* faq-site-section */
  .faq-site-section {
    padding: 2.6rem 0 1.8rem;
    background: radial-gradient(circle at 70% 30%, rgba(56, 189, 248, 0.1) 0, transparent 50%),
      radial-gradient(circle at 20% 70%, rgba(37, 99, 235, 0.12) 0, transparent 45%);
  }

  .faq-site-wrap {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .faq-site-head {
    margin-bottom: 1rem;
  }

  .faq-site-kicker {
    margin: 0 0 0.25rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--color-accent);
  }

  .faq-site-title {
    margin: 0;
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    line-height: 1.25;
    color: var(--color-text);
  }

  .faq-site-grid {
    display: grid;
    gap: 0.7rem;
  }

  .faq-site-item {
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: var(--color-card);
    padding: 0.75rem 0.9rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }

  .faq-site-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--color-text);
    list-style: none;
  }

  .faq-site-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-site-answer {
    margin-top: 0.55rem;
    font-size: 0.9rem;
    color: var(--color-muted);
  }

  @media (max-width: 767px) {
    .faq-site-wrap {
      padding: 0 1rem;
    }
  }