    :root {
      --c-sky: #3bafdd;
      --c-teal: #004759;
      --c-sun: #ebbd30;
      --c-ink: #0b1f26;
      --c-muted: #5b6b72;
      --c-bg: #f6f9fb;
      --c-card: #ffffff;
      --c-border: #dbe6ea;
      --radius: 16px;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --max: 1120px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--c-ink);
      background: linear-gradient(180deg, #ffffff 0%, var(--c-bg) 100%);
    }

    a {
      color: inherit;
    }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ===== Topbar ===== */
    .topbar {
      position: sticky;
      top: 0;
      z-index: 40;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: saturate(160%) blur(10px);
      border-bottom: 1px solid var(--c-border);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0;
      gap: 16px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 240px;
    }

    .brand img {
      height: 60px;
      width: auto;
    }

    .nav-actions {
      display: flex;
      gap: 10px;
      align-items: center;
    }
	
	/* ACS à gauche / partenaire à droite */
	
	body.partner .topbar{
	  background: #00314d;
	  border-bottom: 1px solid rgba(255,255,255,0.12);
	}
	
	body.partner .topbar-inner{
	  justify-content: space-between;
	}

	/* Petits réglages tailles logos */
	body.partner .brand--acs img{
	  height: 54px;
	  width: auto;
	}

	body.partner .brand--partner img{
	  height: 40px;
	  width: auto;
	}
	
	/* --- Fix co-brand mobile: éviter le décalage --- */
	
	@media (max-width: 720px) {
	  body.partner .topbar-inner{
		flex-wrap: nowrap;          /* empêche le wrap des logos */
		gap: 10px;
	  }

	  body.partner .brand{
		min-width: 0;               /* override du min-width:240px */
	  }

	  /* Optionnel: réduire un peu la taille ACS en mobile */
	  body.partner .brand img{
		height: 46px;               /* ajuste si besoin */
	  }

	  /* Le logo partenaire doit pouvoir "shrink" et ne pas dépasser */
	  body.partner .partner-logo{
		max-width: 140px;           /* limite largeur */
		height: 28px;               /* limite hauteur */
		width: auto;
		object-fit: contain;
		flex: 0 1 auto;             /* autorise la réduction */
	  }
	}


    /* ===== Buttons ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 16px;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      font-weight: 700;
      text-decoration: none;
      white-space: nowrap;
      transition: transform 0.06s ease, filter 0.15s ease, background 0.15s ease,
        box-shadow 0.15s ease;
    }

    .btn:active {
      transform: translateY(1px);
    }

    .btn-primary {
      background: var(--c-sun);
      color: #1b1b1b;
    }

    .btn-primary:hover {
      filter: brightness(0.98);
    }

    .btn-ghost {
      background: transparent;
      border-color: var(--c-border);
      color: var(--c-teal);
    }

    .btn-ghost:hover {
      background: #f1f6f8;
    }

    /* Hover CTA uniquement dans les offers */
    .offer footer .btn.btn-primary:hover {
      filter: brightness(0.95);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
      border-color: rgba(0, 0, 0, 0.08);
    }

    /* ===== Layout ===== */
    .section {
      padding: 32px 0;
    }

    .card {
      background: var(--c-card);
      border: 1px solid var(--c-border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .card-inner {
      padding: 22px;
    }

    .mini {
      font-size: 14px;
      color: var(--c-muted);
      line-height: 1.4;
    }

    .muted {
      color: var(--c-muted);
    }

    /* ===== Hero ===== */
    .hero {
      padding: 40px 0 22px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      align-items: stretch;
    }

    .hero-grid > div {
      text-align: center;
      margin: 0 auto;
      max-width: 900px;
    }

    .hero h1 {
      margin: 0 0 10px;
      font-size: clamp(28px, 3.2vw, 44px);
      line-height: 1.6;
      color: var(--c-teal);
      letter-spacing: -0.02em;
    }

    .hero p {
      margin: 0 0 16px;
      font-size: 18px;
      color: var(--c-muted);
      line-height: 1.5;
    }

    .hero-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 14px;
    }

    .hero-title {
      margin-bottom: 40px; /* espace entre H1 et Trustpilot */
    }

    .hero-trustpilot {
      max-width: 520px;
      margin: 0 auto 40px;
    }

    /* ===== Chooser ===== */
    .chooser {
      position: relative;
      border-color: rgba(59, 175, 221, 0.35);
      border-top: 6px solid rgba(59, 175, 221, 0.85);
      background: linear-gradient(180deg, rgba(59, 175, 221, 0.1), rgba(235, 189, 48, 0.06));
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
      overflow: hidden;
    }

    .chooser::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: var(--radius);
      pointer-events: none;
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
      opacity: 0.6;
    }

    .chooser::after {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: calc(var(--radius) - 1px);
      pointer-events: none;
      background: radial-gradient(
          900px 220px at 20% 0%,
          rgba(59, 175, 221, 0.18),
          rgba(59, 175, 221, 0) 60%
        ),
        radial-gradient(
          700px 180px at 85% 10%,
          rgba(235, 189, 48, 0.16),
          rgba(235, 189, 48, 0) 60%
        );
      opacity: 0.7;
    }

    .chooser .card-inner {
      position: relative;
    }

    .chooser h2 {
      margin: 0;
      font-size: 24px;
      color: var(--c-teal);
    }

    .chooser .steps {
      display: grid;
      gap: 10px;
      margin-top: 10px;
    }

    .chooser-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(59, 175, 221, 0.14);
      color: var(--c-teal);
      border: 1px solid rgba(59, 175, 221, 0.35);
      border-radius: 999px;
      padding: 6px 10px;
      font-weight: 650;
      font-size: 14px;
      margin-bottom: 15px;
      width: fit-content;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    }

    .chooser-badge .spark {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: rgba(59, 175, 221, 0.18);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      line-height: 1;
      box-shadow: 0 0 0 3px rgba(59, 175, 221, 0.12);
    }

    .q {
      border: 1px solid var(--c-border);
      border-radius: 14px;
      padding: 12px;
      background: #fff;
      transition: transform 0.12s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .q:hover {
      border-color: rgba(59, 175, 221, 0.35);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
      transform: translateY(-1px);
    }

    .q label {
      display: block;
      font-weight: 750;
      margin-bottom: 10px;
      color: #20343c;
    }

    .q .options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .pill {
      border: 1px solid var(--c-border);
      background: #f8fbfc;
      border-radius: 999px;
      padding: 10px 12px;
      cursor: pointer;
      user-select: none;
      font-weight: 700;
      color: #1f3a43;
      font-size: 13px;
      transition: background 0.15s ease, border-color 0.15s ease, transform 0.08s ease,
        box-shadow 0.15s ease;
    }

    .pill:hover {
      border-color: rgba(59, 175, 221, 0.35);
      background: rgba(59, 175, 221, 0.08);
    }

    .pill:active {
      transform: translateY(1px);
    }

    .pill[aria-pressed="true"] {
      background: rgba(59, 175, 221, 0.16);
      border-color: rgba(59, 175, 221, 0.60);
      box-shadow: 0 10px 18px rgba(59, 175, 221, 0.12);
    }

    .pill:focus-visible {
      outline: 3px solid rgba(59, 175, 221, 0.35);
      outline-offset: 2px;
    }

    .recommend {
	  text-align: center;
      margin-top: 12px;
      border-radius: 14px;
      border: 1px solid rgba(59, 175, 221, 0.28);
      background: linear-gradient(180deg, rgba(59, 175, 221, 0.10), rgba(255, 255, 255, 0.75));
      padding: 12px;
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
    }

    .recommend strong {
      color: var(--c-teal);
    }

    .recommend .row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
      margin-top: 22px;
	  justify-content: center; /* centre le groupe de boutons */
    }

    /* ✅ NEW: lien "En savoir plus" du Chooser */
    .reco-more {
      display: inline-block;
      margin-top: 20px;
      font-size: 15px;
      font-weight: 700;
      color: var(--c-teal);
      text-decoration: none;
      border-bottom: 1px dotted rgba(0, 71, 89, 0.35);
      padding-bottom: 2px;
      opacity: 0.85;
	  margin-left: auto;
      margin-right: auto;      /* centre le lien (inline-block) */
    }

    .reco-more:hover {
      opacity: 1;
      border-bottom-style: solid;
    }

    /* ===== Trust / Réassurance ===== */
    .trust {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
    }

	/* Icônes réassurance */
	.trust .t{
	  display: flex;
	  gap: 10px;
	  align-items: flex-start;
	}

	.trust .t .trust-icon{
	  width: 28px;
	  height: 28px;
	  flex: 0 0 28px;
	  margin-top: 2px; /* alignement optique */
	}

	.trust .t .t-content{
	  flex: 1;
	  min-width: 0;
	}

    }

    /* ===== Section headings/text ===== */
    .section h2 {
      margin: 0 0 10px;
      font-size: 22px;
      color: var(--c-teal);
      letter-spacing: -0.01em;
    }

    .section p {
      margin: 0 0 12px;
      color: var(--c-muted);
      line-height: 1.6;
    }

    /* ===== Offers ===== */
    .offers {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items: stretch;
    }

    .offer {
      position: relative;
      overflow: hidden;
      border-top: 4px solid transparent;
    }

    .offer--pvt {
      border-top-color: var(--c-teal);
    }

    .offer--light {
      border-top-color: var(--c-sky);
    }

    .offer header {
      padding: 18px 18px 0;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      justify-content: space-between;
    }

    .offer header .left {
      display: grid;
      gap: 8px;
    }

    .offer h3 {
      margin: 0;
      font-size: 20px;
      color: var(--c-teal);
      letter-spacing: -0.01em;
    }

    .offer .sub {
      margin: 8px 18px 0;
      color: var(--c-muted);
    }

    .offer ul {
      margin: 10px 18px 14px;
      padding: 0 0 0 18px;
      color: #243b43;
      line-height: 1.6;
    }

    .offer footer {
      margin-top: 14px;
      padding: 14px 18px 18px;
      border-top: 1px solid var(--c-border);
      display: flex;
      gap: 10px;
      flex-direction: column;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .offer footer .note {
      color: var(--c-muted);
      font-size: 12px;
    }

    .offer-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      padding: 6px 10px;
      font-weight: 700;
      font-size: 14px;
      border: 1px solid var(--c-border);
      background: rgba(255, 255, 255, 0.75);
      width: fit-content;
      margin-bottom: 10px;
    }

    .offer-badge .dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--c-sky);
      box-shadow: 0 0 0 3px rgba(59, 175, 221, 0.16);
    }

    .offer--pvt .offer-badge {
      border-color: rgba(16, 185, 129, 0.35);
      background: rgba(16, 185, 129, 0.12);
      color: #065f46;
    }

    .offer--pvt .offer-badge .dot {
      background: #10b981;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.14);
    }

    .offer--light .offer-badge {
      border-color: rgba(59, 175, 221, 0.22);
      background: rgba(59, 175, 221, 0.08);
      color: #1f3a43;
    }

    .highlight-wrap {
      display: flex;
      justify-content: center;
      margin-top: 10px;
    }

    .highlight {
      display: inline-block;
      margin: 10px 18px 0;
      padding: 8px 12px;
      border-radius: 6px;
      background: rgba(246, 249, 251, 0.95);
      border: 1px solid #3bafdd;
      color: var(--c-teal);
      font-weight: 700;
      font-size: 13px;
      line-height: 1;
      margin-bottom: 8px;
    }

    .offer-price-inline {
      margin-top: 6px;
      margin-bottom: 20px;
      font-size: 14px;
      font-weight: 800;
      color: var(--c-muted);
    }

    .offer-price-inline strong {
      color: var(--c-teal);
      font-size: 16px;
      font-weight: 900;
    }

    /* ===== Offer price + "En savoir plus" ===== */
    .offer-price {
      margin-top: 6px;
      font-weight: 900;
      color: var(--c-teal);
      letter-spacing: -0.01em;
      font-size: 18px;
    }

    .offer-price .from {
      font-weight: 750;
      color: var(--c-muted);
      font-size: 12px;
      letter-spacing: 0;
      margin-right: 6px;
    }

    .offer-more {
      display: block;
      margin-top: 8px;
      font-size: 15px;
      font-weight: 700;
      color: var(--c-teal);
      text-decoration: none;
      border-bottom: 1px dotted rgba(0, 71, 89, 0.35);
      padding-bottom: 2px;
      opacity: 0.85;
    }

    .offer-more:hover {
      opacity: 1;
      border-bottom-style: solid;
    }

    /* ===== Comparison table ===== */
    .compare {
      overflow: auto;
      position: relative;
      border-radius: var(--radius);
      border: 1px solid var(--c-border);
      background: #fff;
      box-shadow: none;
    }

    table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      min-width: 860px;
    }

    th,
    td {
      padding: 14px 16px;
      border-bottom: 1px solid rgba(219, 230, 234, 0.85);
      vertical-align: top;
      text-align: left;
      font-size: 14px;
    }

    thead th {
      position: sticky;
      top: 0;
      z-index: 1;
      background: #3bafdd;
      color: #fff;
      font-size: 18px;
      font-weight: 600;
      border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .thead-title {
      color: #fff;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    th:first-child,
    td:first-child {
      width: 44%;
    }

    th:nth-child(2),
    td:nth-child(2),
    th:nth-child(3),
    td:nth-child(3) {
      width: 28%;
    }

    tbody tr:not(.cat-row):nth-child(even) td {
      background: rgba(246, 249, 251, 0.85);
    }

    .cat-row td {
      background: rgba(59, 175, 221, 0.18);
      color: var(--c-teal);
      font-weight: 900;
      font-size: 14.5px;
      border-bottom: 1px solid rgba(59, 175, 221, 0.35);
    }

    .yes {
      font-weight: 900;
      color: var(--c-teal);
    }

    .no {
      font-weight: 900;
      color: #7a2b2b;
    }

    /* ===== Details wrapper (table folded) ===== */
    .compare-details {
      border: 1px solid var(--c-border);
      border-radius: var(--radius);
      background: #fff;
      padding: 12px 14px;
    }

	/* Fond bleu clair UNIQUEMENT quand c'est plié */
	.compare-details:not([open]) > summary {
	  background: rgba(59, 175, 221, 0.14); /* bleu clair (c-sky) */
	  border: 1px solid rgba(59, 175, 221, 0.28);
	  border-radius: calc(var(--radius) - 2px);
	  padding: 14px 14px;
	}
	
	/* Petit hover discret */
	.compare-details:not([open]) > summary:hover {
	  background: rgba(59, 175, 221, 0.18);
	  border-color: rgba(59, 175, 221, 0.38);
	}

    .compare-details[open] > summary {
      background: transparent;
      border: 0;
      padding: 0;
    }

    .compare-details > summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      cursor: pointer;
      font-weight: 650;
      color: #1f3a43;
      list-style: none;
    }

    .compare-details > summary::-webkit-details-marker {
      display: none;
    }

    .compare-details > summary::after {
      content: "▾";
      font-size: 18px;
      line-height: 1;
      color: var(--c-teal);
      transform: translateY(-1px);
      transition: transform 0.18s ease;
    }

    .compare-details[open] > summary::after {
      transform: rotate(180deg) translateY(1px);
    }

    .compare-details .summary-hint {
      font-weight: 700;
      font-size: 13px;
      color: var(--c-muted);
    }

    .compare-details[open] .summary-hint {
      display: none;
    }

    .compare-details[open] > summary {
      margin-bottom: 12px;
    }

    /* ===== Disclaimer ===== */
    .disclaimer {
      color: var(--c-muted);
      font-size: 12px;
      line-height: 1.5;
      margin-top: 14px;
    }

    /* ===== Mobile scroll hint for table ===== */
    @media (max-width: 720px) {
      .compare::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 44px;
        height: 100%;
        background: linear-gradient(
          90deg,
          rgba(255, 255, 255, 0),
          rgba(255, 255, 255, 0.95)
        );
        pointer-events: none;
      }

      .compare::after {
        content: "↔ Faites défiler";
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.88);
        border: 1px solid var(--c-border);
        color: var(--c-teal);
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 800;
        pointer-events: none;
      }
    }

    /* ===== Responsive ===== */
    @media (max-width: 960px) {
      .offers {
        grid-template-columns: 1fr;
      }

      .trust {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 26px 0;
      }

      .hero {
        padding: 32px 0 18px;
      }
    }

    /* ✅ Tu as encore .sticky en CSS, mais pas de HTML : aucune incidence.
       Je laisse tel quel comme demandé. */
    @media (max-width: 720px) {
      .nav-actions .btn-ghost {
        display: none;
      }

      .sticky {
        display: block;
      }
    }

    /* ===== Footer ===== */
    .footer {
      margin-top: 28px;
      padding: 28px 0;
      border-top: 1px solid var(--c-border);
      background: rgba(255, 255, 255, 0.85);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--c-teal);
      font-weight: 800;
    }

    .footer-links {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
    }

    .footer-links a {
      color: var(--c-teal);
      text-decoration: none;
      font-weight: 700;
      font-size: 13px;
      border-bottom: 1px dotted rgba(0, 71, 89, 0.35);
      padding-bottom: 2px;
    }

    .footer-links a:hover {
      border-bottom-style: solid;
    }

    .footer-note {
      width: 100%;
      margin-top: 8px;
      font-size: 12px;
      color: var(--c-muted);
    }

    @media (max-width: 720px) {
      .footer {
        padding-bottom: 76px;
      }

      .footer-inner {
        flex-direction: column;
        text-align: center;
      }
    }
	
	/* Footer en mode partenaire */
	body.partner .footer{
	  background: #00314d;
	  border-top: 1px solid rgba(255,255,255,0.12);
	}

	body.partner .footer-brand,
	body.partner .footer-note{
	  color: #fff;
	}

	body.partner .footer-links a{
	  color: #fff;
	  border-bottom-color: rgba(255,255,255,0.35);
	}

	body.partner .footer-links a:hover{
	  border-bottom-color: rgba(255,255,255,0.60);
	}
