/* ========== Tokens / Reset ========== */
:root{
  --max-w: 1280px;
  --container-pad: 1rem;

  /* colors (proches Tailwind) */
  --slate-50:#f8fafc; --slate-100:#f1f5f9; --slate-200:#e2e8f0;
  --slate-300:#cbd5e1; --slate-600:#475569; --slate-700:#334155; --slate-900:#0f172a;
  --emerald-600:#059669; --emerald-700:#047857; --emerald-200:#a7f3d0;
  --indigo-600:#4f46e5; --indigo-700:#4338ca; --indigo-200:#c7d2fe;
  --orange-600:#ea580c; --orange-700:#c2410c;

  --primary:#0f172a; /* btn principal */
  --ring:#e2e8f0;
  --bg-grad-start:#ffffff;
  --bg-grad-end:#f0f9ff;

  --col-left: 18rem; /* largeur colonne Critères */
  
  /* ajout */
  --bg: #ffffff;
  --muted: #64748b;           /* slate-500 */
  --text: #0f172a;            /* slate-900 */
  --border: #e2e8f0;          /* slate-200 */
  --card: #ffffff;
  --shadow: 0 8px 24px rgba(15, 23, 42, .06);

  /* Accent général du site (conserve vos anneaux/rings d’offres) */
  --primary: #4f46e5;         /* indigo-600 */
  --primary-50: #eef2ff;      /* indigo-50 */
  --emerald-50:#ecfdf5;       /* emerald-50 */
  --sky-50:#f0f9ff;           /* sky-50 */
  --ring: rgba(79,70,229,.12);
  
  
  --green_home:#d1fae5;

  /* Couleur des BOUTONS (noir/gris sombre) */
  --btn: #111827;             /* gray-900 */
  --btn-contrast: #ffffff;

  /* Couleurs logo/offres */
  --orange-300:#fdba74; --orange-600:#c2410c;
  --emerald-300:#6ee7b7; --emerald-600:#059669;
  --indigo-300:#a5b4fc; --indigo-600:#4f46e5;
}



*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Helvetica Neue,Arial,"Apple Color Emoji","Segoe UI Emoji";color:var(--slate-900);}

/* Utilities */
.container{max-width:var(--max-w);margin:0 auto;padding-left:var(--container-pad);padding-right:var(--container-pad)}

/* Text */
.h1{font-size:clamp(1.5rem,2.5vw,2rem);line-height:1.2;font-weight:800;margin:0 0 .5rem}
.h2{font-size:1.125rem;line-height:1.3;margin:0;font-weight:700}
.lead{color:var(--slate-600);max-width:48rem;margin:.5rem 0 0}
.text--orange{color:var(--orange-700)}
.text--emerald{color:var(--emerald-700)}
.text--indigo{color:var(--indigo-700)}

/* Icons */
.icon{width:1rem;height:1rem;display:inline-block;vertical-align:middle;color:currentColor}
.icon--yes{color:var(--emerald-600)}
.icon--no{color:#dc2626}
.icon--muted{color:var(--slate-700)}
.icon--orange{color:var(--orange-600)}
.icon--emerald{color:var(--emerald-600)}
.icon--indigo{color:var(--indigo-600)}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem .75rem;border-radius:.75rem;font-size:.875rem;font-weight:600;text-decoration:none;transition:opacity .15s, box-shadow .15s}
.btn--primary{background:var(--primary);color:#fff;box-shadow:0 1px 2px rgb(0 0 0 / 0.08)}
.btn--primary:hover{opacity:.9}
.btn--secondary{border:1px solid var(--slate-200);background:#fff;color:var(--slate-900);box-shadow:0 1px 2px rgb(0 0 0 / 0.06)}
.btn--secondary:hover{box-shadow:0 2px 6px rgb(0 0 0 / 0.08)}
.btn--block{justify-content:center;width:60%}

/* /* Pills / Rings
.pill{display:inline-flex;align-items:center;justify-content:center;width:1.5rem;height:1.5rem;border-radius:999px;border:2px solid transparent}
.ring--orange{border-color:var(--orange-600)}
.ring--emerald{border-color:var(--emerald-600)}
.ring--indigo{border-color:var(--indigo-600)} */

.badge{display:inline-flex;align-items:center;justify-content:center;border-radius:.75rem;padding:.4rem .6rem;font-size:.75rem;font-weight:700;border:1px solid transparent;width: 40%;height: -webkit-fill-available;}
.badge--emerald{background:#ecfdf5;color:var(--emerald-700);border-color:var(--emerald-200)}
.badge--indigo{background:#eef2ff;color:var(--indigo-700);border-color:var(--indigo-200)}

/* ====== Header ====== */
.header{
  position:sticky; top:0; z-index:40;
  backdrop-filter:saturate(140%) blur(6px);
  background:rgba(255,255,255,.85);
  border-bottom:1px solid var(--border);
}
.nav{display:none; gap:1.25rem; align-items:center; font-size:1.1rem}
.nav a{color:var(--text); text-decoration:none}
.nav a:hover{color:var(--primary)}
@media(min-width:768px){ .nav{display:flex} }

/* SECTIONS */
.section{padding-block:4rem}
.section-head{display:flex;align-items:flex-start;justify-content:space-between;gap:1.5rem}
.head-actions{display:none;gap:.75rem}
@media (min-width:768px){
  .section{padding-block:3.5rem}
  .head-actions{display:flex}
}

/* FOOTER */
.site-footer{border-top:1px solid var(--slate-200);background:#fff}
.footer-inner{display:flex;align-items:center;justify-content:space-between;padding:2rem 0;color:var(--slate-600);font-size:.9375rem}
.footer-brand{display:flex;align-items:center;gap:.75rem}
.page{min-height:100%}

/*utilities*/

.center-between{display:flex; align-items:center; justify-content:space-between}
.flex{display:flex; gap:.5rem; align-items:center}

/* Boutton */
.btn{
  --bg: var(--btn);
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.75rem 1rem; border-radius:.75rem; border:1px solid transparent;
  background:var(--bg); color:var(--btn-contrast); font-weight:600; text-decoration:none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  box-shadow: 0 4px 14px rgba(17,24,39,.18);
}
.btn:hover{transform: translateY(-2px)}
.btn:focus{outline:2px solid rgba(17,24,39,.2); outline-offset:2px}
.btn-lg{padding:1rem 1.25rem; border-radius:1rem; font-size:1rem}
.btn-outline{
  background:#fff; color:var(--btn);
  border-color:var(--btn); box-shadow: 0 2px 10px rgba(15,23,42,.04);
}

/* ====== Modal (Contact) ====== */
.modal{
  position:fixed; inset:0; display:none; align-items:center; justify-content:center;
  background:rgba(2,6,23,.45); z-index:50; padding:1rem;
}
.modal.open{display:flex}
.dialog{
  width:min(920px, 100%); background:#fff; border:1px solid var(--border);
  border-radius:1rem; box-shadow: 0 40px 80px rgba(15,23,42,.25);
  padding:1.25rem 1.25rem 1.5rem;
}
.dialog-header{margin-bottom:.5rem}
.dialog-title{font-weight:800; font-size:1.25rem}
.dialog-desc{color:var(--muted); font-size:.95rem}
.close-x{margin-left:auto; border:none; background:#0000; font-size:1.25rem; cursor:pointer}

.form-grid{display:grid; gap:1rem}
@media(min-width:768px){ .form-grid{grid-template-columns:1fr 1fr} }
.label{display:block; font-size:.9rem; font-weight:600; margin-bottom:.35rem}
.input,.select,.textarea{
  width:100%; border:1px solid var(--border); background:#fff; color:var(--text);
  border-radius:.5rem; padding:.65rem .75rem; font-size:1rem;
}
.textarea{min-height:120px; resize:vertical}
.checkbox-row{display:flex; align-items:flex-start; gap:.5rem; font-size:.9rem}
.actions{display:flex; justify-content:flex-end; gap:.5rem}

/* --- CSS OPTIMISÉ & NETTOYÉ by GEMINI --- */

    /* 1. Boutons Génériques (Header & Sections) */
    .btn-primary {
      background-color: #0A192F;
      color: #FFFFFF;
      border: none;
      padding: 14px 28px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 10px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
      box-shadow: 0 2px 6px rgba(0,0,0,0.20);
      transition: all 0.3s cubic-bezier(.4,0,.2,1);
    }

    .btn-primary:hover {
      background-color: #112F54;
      transform: scale(1.03);
      box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    }

    .btn-primary:active {
      transform: scale(0.98);
      box-shadow: 0 2px 4px rgba(0,0,0,0.20);
    }

    /* 2. Boutons Spécifiques Tableaux de Prix (Largeur adaptative) */
    .btn-pricing {
      background-color: #0A192F;
      color: #FFFFFF;
      border: none;
      padding: 14px 24px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 10px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
      box-shadow: 0 2px 6px rgba(0,0,0,0.20);
      transition: all 0.3s cubic-bezier(.4,0,.2,1);
      width: 100%; /* Prend toute la largeur de la colonne */
      max-width: 260px;
    }

    .btn-pricing:hover {
      background-color: #112F54;
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    }

    /* 3. Bouton Cookies (Footer) */
    .btn-cookie {
      background-color: #425b76;
      border: 1px solid #425b76;
      border-radius: 3px;
      padding: 10px 16px;
      text-decoration: none;
      color: #fff;
      font-family: inherit;
      font-size: inherit;
      font-weight: normal;
      line-height: inherit;
      text-align: left;
      text-shadow: none;
      cursor: pointer;
    }

    /* 4. Wrappers & Textes d'accompagnement */
    .pricing-cta-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 10px 0;
      width: 100%;
    }

    .cta-banner-wrapper {
      margin-top: 1.5rem;
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .audit-subtext {
      font-size: 0.8rem;
      color: #64748b;
      font-weight: 500;
      line-height: 1.4;
      max-width: 240px;
    }
    
    .pricing-cta-wrapper .audit-subtext { text-align: center; }
    .cta-banner-wrapper .audit-subtext { text-align: left; margin-left: 4px; }

    /* 5. Utilitaires de Section */
    .bg-gradient-contact {
        background: linear-gradient(135deg, var(--emerald-50), #fff 40%, var(--primary-50));
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 3vw, 2.5rem);
        font-weight: 800; 
        color: #0A192F;
    }

    .section-lead {
        font-size: 1.1rem; 
        max-width: 600px;
    }
    
    .footer-center {
        text-align: center; 
        margin-top: 1rem;
    }

    /* 6. Modales & Fixes */
    .modal.open .dialog {
      max-height: 90vh !important; 
      overflow-y: auto !important; 
      display: flex;
      flex-direction: column;
    }
    .hs-form-frame {
      padding: 0 15px 20px 15px;
    }
    .dialog-header {
      flex-shrink: 0;
    }
/* =========================
   HERO – "Nos offres"
   Scoped: #hero-offres
   ========================= */

#hero-offres {
  position: relative;
  overflow: hidden;
}

/* Si ton .hero global gère déjà le fond, tu peux garder uniquement les ::before/::after */
#hero-offres.hero {
  background: linear-gradient(135deg,#d1fae5 0%,#fff 50%,#e0e7ff 100%);
  padding:0;
}

#hero-offres .container {
  position: relative;
  padding-top: clamp(3.25rem, 6vw, 5.25rem);
  padding-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

/* On “dessine” la zone texte : largeur maîtrisée + alignement cohérent */
#hero-offres .hero-header {
  max-width: 58rem;
}

/* Accent sobre : petite barre à gauche du header */
#hero-offres .hero-header {
  padding-left: 1.1rem;
  border-left: 2px solid #e0e7ff;
}

/* H1: fort, net, premium */
#hero-offres .hero-title {
  margin: 0;
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.03;
  font-size: clamp(2.1rem, 4.6vw, 3.25rem);
  color: rgba(15, 23, 42, 0.98);
}

/* H2 : plus élégant (moins “bloc”), meilleure lecture */
#hero-offres h2 {
  margin: 0.85rem 0 0;
  max-width: 42rem;
  font-weight: 560;
  letter-spacing: -0.015em;
  line-height: 1.35;
  font-size: clamp(1.1rem, 2.25vw, 1.5rem);
  color: rgba(15, 23, 42, 0.82);
}

/* Paragraphe : plus respirant, plus “cabinet” */
#hero-offres p {
  margin: 1.25rem 0 0;
  max-width: 44rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.72);
}

/* CTA: bloc clair et stable */
#hero-offres .hero-cta {
  margin-top: 1.55rem;
  margin-left: 2rem;
}

#hero-offres .cta-wrapper-left {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 
    0 20px 42px rgba(0, 0, 0, 0.09),
    0 0 0 1px rgba(15, 23, 42, 0.05);
}

/* ==========================================================================
   SECTION — Ce que comprennent toutes nos offres
   ID: #offres-socle
   ========================================================================== */

#offres-socle{
  position: relative;
}

/* ---------------------------------------
   HEADER : plus premium, mieux rythmé
   --------------------------------------- */

#offres-socle .section-head{
  max-width: 66rem;
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

#offres-socle .section-title{
  margin: 0;
  font-weight: 880;
  letter-spacing: -0.035em;
  line-height: 1.06;
  font-size: clamp(1.7rem, 2.35vw, 2.2rem);
  color: rgba(15, 23, 42, 0.98);
}

/* Le lead = “bloc éditorial”, pas juste un paragraphe */
#offres-socle .section-lead{
  margin-top: 0.5rem;
  max-width: 58rem;
  line-height: 1.1;
  font-size: 1.03rem;
  color: rgba(15, 23, 42, 0.72);
}

#offres-socle .section-lead strong{
  font-weight: 820;
  color: rgba(15, 23, 42, 0.92);
}

/* petite séparation discrète sous le lead (standing) */
#offres-socle .section-head::after{
  content:"";
  width: 100%;
  max-width: 58rem;
  height: 1px;
  margin-top: 0.35rem;
  background: linear-gradient(135deg,#e0e7ff 0%,#fff 100%)
}

/* ---------------------------------------
   GRID : meilleure composition
   --------------------------------------- */

#offres-socle .socle-grid{
  display: grid;
  grid-template-columns: 0.65fr 0.75fr;
  gap: 1.15rem;
  align-items: stretch; /* important : même “ligne” visuelle */
  margin-bottom: 3rem;
}

/* ---------------------------------------
   CARTE LISTE : plus “produit”, moins plate
   --------------------------------------- */

#offres-socle .socle-card{
  border-radius: 18px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow:
    0 18px 50px rgba(15,23,42,0.10),
    0 2px 10px rgba(15,23,42,0.05);
  padding: 1.15rem 1.25rem;

  /* relief interne (standing) */
  position: relative;
  overflow: hidden;
}

#offres-socle .socle-card::before{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  border-radius: 18px;
  background: radial-gradient(
    900px 260px at 20% -10%,
    rgba(255,255,255,0.70),
    rgba(255,255,255,0.00) 60%
  );
}

#offres-socle .socle-intro{
  margin: 0 0 0.95rem 0;
  color: rgba(15, 23, 42, 0.90);
  letter-spacing: -0.012em;
  line-height: 1.35;
}

#offres-socle .socle-intro strong{
  font-weight: 880;
}

/* liste : plus “aérée” */
#offres-socle .socle-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

#offres-socle .socle-item{
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0.75rem;
  align-items: start;
  line-height: 1.55;
  color: rgba(15,23,42,0.78);
  font-size: 1.00rem;
}

/* bullet : plus net, plus premium */
#offres-socle .socle-bullet{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d1fae5 0%, #e0e7ff 100%);
  border: 1px solid rgba(2,14,35,.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.65);
}

#offres-socle .socle-bullet .icon{
  width: 16px;
  height: 16px;
  opacity: 0.84;
}

/* =========================
   CALLOUT SÉCURITÉ — NOTE D’ENGAGEMENT LATÉRALE
   ========================= */

#offres-socle .socle-callout{
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.85rem;
  align-items: start;
  max-width: 30rem;
  padding: 0.9rem 0.25rem 0.9rem 1.1rem;
  margin: 0 2rem 14.5rem 1.2rem;
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
}

/* Ligne verticale = invariant */
#offres-socle .socle-callout::before{
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 999px;
  background:linear-gradient(135deg,#d1fae5 0%, #e0e7ff 100%);
}

/* Icône = sceau */
#offres-socle .callout-icon{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:linear-gradient(135deg,#d1fae5 0%, #e0e7ff 100%);
  border: 1px solid #9be9c1;
  margin-top: 0.5rem;
}

#offres-socle .callout-icon .icon{
  width: 16px;
  height: 16px;
  opacity: 0.75;
}

/* Titre = affirmation contractuelle */
#offres-socle .callout-title{
  margin: 0;
  font-weight: 820;
  font-size: 0.98rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.94);
}

/* Texte = précision */
#offres-socle .callout-text{
  margin: 0.3rem 0 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.68);
}

/* Mobile : retour à une note pleine largeur */
@media (max-width: 960px){
  #offres-socle .socle-callout{
    max-width: 100%;
    margin-left: 0;
    margin-top: 0.6rem;
  }
}



/* ---------------------------------------
   TRANSITION : plus fine, moins “grosse”
   --------------------------------------- */

#offres-socle .socle-transition{
  margin: 1.05rem 0 0;
  max-width: 68rem;
  color: rgba(15,23,42,0.70);
  line-height: 1.75;
  font-size: 1.01rem;
  padding: 0.85rem 0.95rem;
   position: relative;
}

#offres-socle .socle-transition::before{
  content:"";
  position:absolute;
  left: 0.25rem;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg,#d1fae5 0%, #e0e7ff 100%);
}

/* ---------------------------------------
   RESPONSIVE
   --------------------------------------- */

@media (max-width: 1024px){
  #offres-socle .socle-grid{
    grid-template-columns: 1fr;
    gap: 0.95rem;
    align-items: start;
  }

  #offres-socle .socle-callout::before{
    display: none; /* évite le “double axe” sur mobile */
  }
}

@media (max-width: 640px){
  #offres-socle .section-head{
    margin-bottom: 1.1rem;
    gap: 0.65rem;
  }

  #offres-socle .section-head::after{
    max-width: 100%;
  }

  #offres-socle .socle-card,
  #offres-socle .socle-callout{
    padding: 0.95rem;
    border-radius: 16px;
  }

  #offres-socle .socle-item{
    grid-template-columns: 28px 1fr;
    gap: 0.65rem;
  }

  #offres-socle .socle-bullet{
    width: 26px;
    height: 26px;
  }

  #offres-socle .socle-transition{
    padding: 0.8rem 0.85rem;
    border-radius: 14px;
  }

  #offres-socle .socle-transition::before{
    left: 0.65rem;
    top: 0.8rem;
    bottom: 0.8rem;
  }
}

/* =========================
   SECTION OFFRES – GLOBAL
   ========================= */
#offres-pres{
  background: linear-gradient(135deg, #e0e7ff, #fff);
}

.offres-pres{
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

#offres-pres .container{
  position: relative;
}

/* =========================
   HEADER SECTION
   ========================= */
#offres-pres .offres-head{
  max-width: 68rem;
  margin-bottom: 1.6rem;
}

#offres-pres .section-title{
  margin: 0 0 0.65rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(1.65rem, 2.9vw, 2.25rem);
  color: rgba(15, 23, 42, 0.96);
}

#offres-pres .offres-intro{
  margin: 0;
  max-width: 58rem;
  line-height: 1.75;
  font-size: 1.03rem;
  color: rgba(15, 23, 42, 0.72);
}

/* =========================
   CARTE OFFRE – STRUCTURE
   ========================= */
.offre{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "text visual"
    "example example";
  gap: 2.15rem;
  align-items: start;

  background: rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  padding: 2.35rem;

  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  margin: 2rem 0;
}

/* =========================
   TEXTE
   ========================= */
.offre-text{
  grid-area: text;
  max-width: 34rem;
}

/* bloc badge + titre (stabilité & moins de wrap “sale”) */
.offre-headline{
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.95rem;
  max-width: 33rem;
}

/* Badge */
.offre-label{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.8rem;

  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1e3a8a;
  border-radius: 999px;
}

/* Marque visuelle */
.offre-starter{ border-left: 4px solid #d1fae5; }
.offre-croissance{ border-left: 4px solid #9be9c1; }
.offre-serenite{ border-left: 4px solid #a7b7ed; }

#starter .offre-label{
  background: #d1fae5;
  font-weight: 700;
}

#croissance{
	border-color: #9be9c1;
}

#croissance .offre-label{
  background: linear-gradient(135deg, #d1fae5 0%, #e0e7ff 100%);
  font-weight: 800;
  border: 1px solid #9be9c1;
}

#croissance .offre-example{
	border-color: #d1fae5b8;
    box-shadow: 0px 10px 20px #d1fae587;
}

#serenite{
	border-color: #a7b7ed;
}

#serenite .offre-label{
  background: #e0e7ff;
  font-weight: 800;
  border: 1px solid #a7b7ed;
}

#serenite .offre-example{
	border-color: #e0e7ffa8;
    box-shadow: 0px 10px 20px #e0e7ff80;
}

/* Titre */
.offre-title{
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.10;
  color: rgba(15, 23, 42, 0.95);
  text-wrap: balance;
}

/* Paragraphes */
.offre-paragraph{
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.75);
}

.offre-subtitle{
  margin: 1.55rem 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.92);
}

/* =========================
   LISTE
   ========================= */
.offre-list{
  margin-left: 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.offre-list li{
  position: relative;
  padding-left: 1.55rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.82);
}

.offre-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.9);
}

/* =========================
   VISUEL (ancrage + stabilité)
   ========================= */
.offre-visual{
  grid-area: visual;
  display: flex;
  justify-content: center;
  align-items: flex-start;

  /* plus stable : aligné au 1er paragraphe (après headline) */
  padding-top: 3.05rem;
}

.offre-visual img{
  width: min(100%, 560px);
  height: auto;
  max-height: 500px;

  object-fit: contain;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 18px;

  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 10px;

  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

/* =========================
   EXEMPLE : bandeau (pro)
   Fix principal : colonne gauche trop large / “vide”
   ========================= */
.offre-example{
  grid-area: example;

  display: grid;
  grid-template-columns: max-content 1fr; 
  align-items: center;
  column-gap: 1rem;

  margin-top: 0.15rem;
  padding: 1.05rem 1.15rem;

  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.055);

  position: relative;
  overflow: hidden;
}

#croissance .offre-example{
	border-color:
}

/* Titre exemple */
.offre-example .offre-subtitle{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;

  margin: 0;
  padding: 0;

  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
  color: #003aff;
}

.offre-example .offre-example-title{
	opacity: 0.5;
}

/* Icône puzzle (Lucide) */
.offre-example .ex-ico{
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

/* Texte exemple + séparateur vertical (plus fin / plus soft) */
.offre-example .socle-ex{
  position: relative;
  margin: 0;
  padding-left: 1.05rem;

  color: rgba(15, 23, 42, 0.76);
  line-height: 1.65;
  font-size: 1.02rem;
}

.offre-example .socle-ex::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px; /* ✅ plus fin */
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(59,130,246,0.04),
    rgba(59,130,246,0.16),
    rgba(59,130,246,0.04)
  );
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 960px){
  .offre{
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "text"
      "example";
    gap: 1.6rem;
  }

  .offre-visual{
    padding-top: 0;
    justify-content: flex-start;
  }

  .offre-visual img{
    max-height: 440px;
  }

  /* Exemple en colonne sur mobile */
  .offre-example{
    grid-template-columns: 1fr;
    row-gap: 0.45rem;
  }

  .offre-example .offre-subtitle{
    white-space: normal;
  }

  .offre-example .socle-ex{
    padding-left: 1rem;
  }

  .offre-headline{
    max-width: 100%;
  }
}

@media (max-width: 560px){
  .offre{
    padding: 1.45rem;
    border-radius: 22px;
  }

  .offre-title{
    font-size: 1.55rem;
  }

  .offre-paragraph{
    font-size: 1.02rem;
  }

  .offre-visual img{
    padding: 8px;
    border-radius: 16px;
  }

  .offre-example{
    padding: 0.95rem 0.95rem;
    border-radius: 16px;
  }

  .offre-example .ex-ico{
    width: 17px;
    height: 17px;
  }
}
/* =========================================
   COMPARATIF — TABLE + TOGGLE + CTA (CARD)
   ========================================= */
/* =========================================================
   INTRO / LEAD
   ========================================================= */
.comparatif-lead{
  max-width: 62rem;
  margin: 0 0 1rem;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.7;
}

.comparatif-lead strong{
  color: rgba(15, 23, 42, 0.90);
  font-weight: 780;
}

/* =========================================================
   PRICING TABLE — STYLES (Option A + caps THEAD par colonne)
   ========================================================= */
.pricing-compare{
  width: 100%;
  --card-radius: 18px;

  --stroke: rgba(15, 23, 42, 0.08);
  --stroke-2: rgba(15, 23, 42, 0.10);
  --stroke-3: rgba(15, 23, 42, 0.06);

  --text-1: rgba(15, 23, 42, 0.92);
  --text-2: rgba(15, 23, 42, 0.78);
  --text-3: rgba(15, 23, 42, 0.70);
  --text-4: rgba(15, 23, 42, 0.62);

  --bg-card: rgba(255, 255, 255, 0.60);
  --bg-head: rgba(255, 255, 255, 0.74);

  --row-hover: rgba(15, 23, 42, 0.028);
  --row-zebra: rgba(15, 23, 42, 0.012);

  /* tes 2 couleurs */
  --accent-mint: #d1fae5;   /* 209,250,229 */
  --accent-blue: #e0e7ff;   /* 224,231,255 */

  /* déclinaisons discrètes */
  --mint-tint: rgba(209, 250, 229, 0.38);
  --mint-tint-2: rgba(209, 250, 229, 0.22);
  --blue-tint: rgba(224, 231, 255, 0.40);
  --blue-tint-2: rgba(224, 231, 255, 0.22);

  /* caps THEAD par colonne */
  --cap-starter: rgba(15, 23, 42, 0.018);
  --cap-croissance: rgba(209, 250, 229, 0.30); /* met Croissance en valeur */
  --cap-serenite: rgba(224, 231, 255, 0.30);

  /* traits caps */
  --cap-starter-line: rgba(15, 23, 42, 0.16);
  --cap-croissance-line: rgba(16, 185, 129, 0.32);
  --cap-serenite-line: rgba(99, 102, 241, 0.52);

  /* niveau 1 : décision */
  --bg-key: rgba(224, 231, 255, 0.30);
  --bg-softkey: rgba(209, 250, 229, 0.18);

  /* status */
  --green: rgba(22, 163, 74, 0.85);
  --red: rgba(185, 28, 28, 0.80);
  --indigo: rgba(79, 70, 229, 0.85);

  --shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 10px 28px rgba(0,0,0,0.06);
}

/* Carte unique */
.pricing-compare .compare-card{
  border-radius: var(--card-radius);
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  overflow: hidden;  
}

/* =========================================================
   ACCESSIBILITÉ
   ========================================================= */
.pricing-compare .sr-only{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Zone scroll */
.pricing-compare .table-scroll{
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-compare .table-scroll:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12), 0 0 0 1px rgba(15,23,42,0.06) inset;
  border-radius: var(--card-radius);
}

/* =========================================================
   TABLE
   ========================================================= */
.pricing-compare .table-comparatif{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  min-width: 920px;
}

/* =========================================================
   THEAD sticky
   ========================================================= */
.pricing-compare .table-comparatif thead th{
  top: 0;
  padding: 1.5rem 1rem 0.75rem 1rem;
}

/* Colonne labels sticky (thead) */
.pricing-compare .table-comparatif .th-left{
  text-align: left;
  position: sticky;
  left: 0;
  z-index: 6;
  background: var(--bg-head);
}

/* Colonnes plans centrées */
.pricing-compare .table-comparatif .th{
  text-align: center;
}

/* =========================================================
   CAPS THEAD par colonne (Option A)
   -> fond ultra discret + petit trait haut + trait bas
   ========================================================= */
.pricing-compare .table-comparatif thead .th{
  position: sticky;
}

.pricing-compare .table-comparatif thead .th.th--starter,
.pricing-compare .table-comparatif thead .th.th--croissance,
.pricing-compare .table-comparatif thead .th.th--serenite{
  position: sticky;
  top: 0;
  z-index: 5;
}

/* .pricing-compare .table-comparatif thead .th.th--starter::before,
.pricing-compare .table-comparatif thead .th.th--croissance::before,
.pricing-compare .table-comparatif thead .th.th--serenite::before{
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  pointer-events: none;
} */

/* Starter cap */
.pricing-compare .table-comparatif thead .th.th--starter{
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.0) 0%,
    var(--cap-starter) 100%);
}
.pricing-compare .table-comparatif thead .th.th--starter::after,
.pricing-compare .table-comparatif thead .th.th--croissance::after,
.pricing-compare .table-comparatif thead .th.th--serenite::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 999px;
  pointer-events: none;
}

.pricing-compare .table-comparatif thead .th.th--starter::after{
  background: var(--cap-starter-line);
  opacity: 0.45;
}

/* Croissance cap (mise en valeur discrète) */
.pricing-compare .table-comparatif thead .th.th--croissance{
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.0) 0%,
    var(--cap-croissance) 100%);
}

.pricing-compare .table-comparatif thead .th.th--croissance::after{
  background: var(--cap-croissance-line);
  opacity: 0.70;
}

/* Sérénité cap */
.pricing-compare .table-comparatif thead .th.th--serenite{
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.0) 0%,
    var(--cap-serenite) 100%);
}

.pricing-compare .table-comparatif thead .th.th--serenite::after{
  background: var(--cap-serenite-line);
  opacity: 0.68;
}

/* Petit “socle” bas Croissance (très subtil) */
.pricing-compare .table-comparatif thead .th.th--croissance{
  box-shadow: inset 0 -2px 0 rgba(16, 185, 129, 0.10);
}

/* =========================================================
   BODY CELLS
   ========================================================= */
.pricing-compare .table-comparatif .td{
  text-align: center;
  color: var(--text-2);
  font-weight: 650;
}

/* Padding lignes */
.pricing-compare .table-comparatif .tr th,
.pricing-compare .table-comparatif .tr td{
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--stroke-3);
  vertical-align: middle;
}

/* Zebra + hover */
.pricing-compare .table-comparatif tbody .tr:nth-child(even) th,
.pricing-compare .table-comparatif tbody .tr:nth-child(even) td{
  background: var(--row-zebra);
}

/* .pricing-compare .table-comparatif tbody .tr:hover td{
  background: var(--row-hover);
}
 */
/* Sticky 1ère colonne (rows) */
.pricing-compare .table-comparatif .th-left--row{
  position: sticky;
  left: 0;
  z-index: 4;
  background: rgba(255, 255, 255, 0.80);
  font-weight: 700;
  color: rgba(15, 23, 42, 0.88);
}

/* =========================================================
   HEADERS DES PLANS
   ========================================================= */
.pricing-compare .th-plan{
  display: grid;
  align-items: center;
  gap: 0.65rem;
  justify-content: center;
  color: var(--text-1);
}

.pricing-compare .th-plan__text{
  display: grid;
  gap: 0.15rem;
  text-align: center;
}

.pricing-compare .th-plan__name{
  font-weight: 900;
  letter-spacing: -0.012em;
  line-height: 1.1;
}

.pricing-compare .th-plan__hint{
  font-size: 0.86rem;
  color: var(--text-4);
  font-weight: 650;
  line-height: 1.2;
}

/* renforce Croissance très légèrement via typo */
.pricing-compare .table-comparatif thead .th.th--croissance .th-plan__name{
  letter-spacing: -0.014em;
}

/* Pastilles */
.pricing-compare .pill{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pricing-compare .pill-start{
  background: #d1fae5;
  color: #1e3a8a;
}

.pricing-compare .pill-crois{
  background: linear-gradient(135deg, #d1fae5 0%, #e0e7ff 100%);
  border: 1px solid #9be9c1;
}

.pricing-compare .pill-seren{
  background: #e0e7ff;
  border: 1px solid #a7b7ed;
}

/* Icônes */
.pricing-compare .icon{
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

/* =========================================================
   GROUP HEADERS (sections) — barre gauche + fond léger
   ========================================================= */
.pricing-compare .tr-group .th-group{
  padding: 0.78rem 1rem;
  text-align: left;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.92);

  background: rgba(15, 23, 42, 0.035);
  border-top: 1px solid var(--stroke-2);
  border-bottom: 1px solid var(--stroke-2);

  position: relative;
}

.pricing-compare .tr-group .th-group::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 3px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.14);
}

/* Alternance par bloc */
.pricing-compare .tbody-key .tr-group .th-group{
  background: var(--mint-tint-2);
}
.pricing-compare .tbody-key .tr-group .th-group::before{
  background: rgba(99, 102, 241, 0.32);
}

.pricing-compare .tbody-secondary .tr-group .th-group{
  background: var(--blue-tint-2);  
}
.pricing-compare .tbody-secondary .tr-group .th-group::before{
  background: rgba(16, 185, 129, 0.30);
}

.pricing-compare .tbody-support .tr-group .th-group{
  background: var(--blue-tint-2);
}
.pricing-compare .tbody-support .tr-group .th-group::before{
  background: rgba(99, 102, 241, 0.28);
}

.pricing-compare .tbody-details .tr-group .th-group{
  background: var(--mint-tint-2);
}
.pricing-compare .tbody-details .tr-group .th-group::before{
  background: rgba(16, 185, 129, 0.26);
}

/* =========================================================
   NIVEAU 1 — LIGNES CLÉS (décision)
   ========================================================= */
/* 
.pricing-compare .tbody-key .tr-key .th-left--row{
  color: rgba(15, 23, 42, 0.94);
} */
/* 
.pricing-compare .tbody-key .tr-key td{
  font-weight: 900;
  color: rgba(15, 23, 42, 0.90);
} */

.pricing-compare .tbody-key .tr-key:first-of-type th,
.pricing-compare .tbody-key .tr-key:first-of-type td{
  border-top: 2px solid rgba(99, 102, 241, 0.16);
}

.pricing-compare .tbody-key .tr-key:last-of-type th,
.pricing-compare .tbody-key .tr-key:last-of-type td{
  border-bottom: 2px solid rgba(99, 102, 241, 0.14);
}

/* =========================================================
   PROCESSUS CRITIQUES
   ========================================================= */
.pricing-compare .yn{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-weight: 800;
  line-height: 1.2;
}

.pricing-compare .yn .icon{
  width: 18px;
  height: 18px;
}

.pricing-compare .yn--no{ color: var(--red); }
.pricing-compare .yn--yes{ color: var(--green); }
.pricing-compare .yn--rec{ color: var(--indigo); }

/* =========================================================
   NIVEAU 2 — SOFTKEY
   ========================================================= */
.pricing-compare .tr-softkey th{
  background: var(--bg-softkey);
}

.pricing-compare .icon--yes{ color: var(--green); }
.pricing-compare .icon--no{ color: var(--red); opacity: 0.95; }

/* =========================================================
   CONTACT CELL
   ========================================================= */
.pricing-compare .contact{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  justify-content: center;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.78);
}

.pricing-compare .contact .icon{
  width: 16px;
  height: 16px;
  opacity: 0.85;
}

/* =========================================================
   FIN TABLE
   ========================================================= */
.pricing-compare .table-comparatif tbody tr:last-child th,
.pricing-compare .table-comparatif tbody tr:last-child td{
  border-bottom: none;
}

/* =========================================================
   TOGGLE
   ========================================================= */
.pricing-compare .table-details-toggle{
  display: flex;
  justify-content: center;
  padding: 0.95rem 1rem 0.2rem;
}

.pricing-compare .btn-table-toggle{
  appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  color: rgba(15, 23, 42, 0.88);
  font-weight: 820;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.pricing-compare .btn-table-toggle:hover{
  border-color: rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
  background: rgba(255, 255, 255, 0.70);
}

.pricing-compare .btn-table-toggle:active{
  transform: translateY(0);
}

.pricing-compare .btn-table-toggle:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.14), 0 12px 30px rgba(0,0,0,0.07);
}

.pricing-compare .btn-table-toggle__icon{
  width: 18px;
  height: 18px;
  opacity: 0.85;
  transition: transform 180ms ease;
}

.pricing-compare .btn-table-toggle[aria-expanded="true"] .btn-table-toggle__icon{
  transform: rotate(180deg);
}

/* =========================================================
   FOOTER + CTA
   ========================================================= */
.pricing-compare .table-footer{
  padding: 0.95rem 1rem 1.15rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  text-align: center;
}

.pricing-compare .table-footer__note{
  margin: 0;
  max-width: 62rem;
  color: var(--green);
  font-weight: 600;
  line-height: 1.65;
  font-size: 1.02rem;
}

.pricing-compare .table-footer__cta{
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-compare .audit-subtext{
  display: inline-block;
  color: rgba(15, 23, 42, 0.65);
  font-size: 0.95rem;
  line-height: 1.35;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .pricing-compare .table-comparatif{
    min-width: 860px;
  }
}

@media (max-width: 860px){
  .pricing-compare .table-comparatif thead th{
    padding: 0.9rem 0.75rem;
  }

  .pricing-compare .table-comparatif .tr td{
    padding: 0.75rem 0.75rem;
  }

  .pricing-compare .table-comparatif .td{
    font-weight: 650;
  }

  .pricing-compare .th-plan__hint{
    display: none;
  }

  .pricing-compare .table-details-toggle{
    padding-top: 0.85rem;
  }
}

/* =========================================================
   LABEL + DRAPEAU
   ========================================================= */
.pricing-compare .row-label{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.pricing-compare .flag-icon{
  width: 16px;
  height: 16px;
  display: inline-block;
  transform: translateY(1px);
  opacity: 0.95;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}

/* =========================================================
   OPTIONS — Option B (Sélecteur par besoin)
   Scope: #options uniquement
   ========================================================= */

#options{
  position: relative;
}

#options .options{
  /* palette */
  --opt-ink: rgba(15, 23, 42, 0.92);
  --opt-muted: rgba(15, 23, 42, 0.72);
  --opt-dim: rgba(15, 23, 42, 0.62);
  --opt-stroke: rgba(15, 23, 42, 0.10);
  --opt-stroke-2: rgba(15, 23, 42, 0.08);

  /* tes couleurs */
  --opt-mint: #d1fae5;
  --opt-indigo: #e0e7ff;

  /* encres */
  --opt-mint-ink: rgba(16, 185, 129, 0.85);
  --opt-indigo-ink: rgba(79, 70, 229, 0.85);

  /* surfaces */
  --opt-card: rgba(255, 255, 255, 0.72);
  --opt-card-2: rgba(255, 255, 255, 0.60);

  /* shadow */
  --opt-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  --opt-shadow-hover: 0 22px 58px rgba(0, 0, 0, 0.10);
}

/* -----------------------------
   Head
------------------------------ */
#options .options__head{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

#options .options__head .icon--muted{
  opacity: 0.55;
}

#options .options__lead{
  max-width: 66rem;
  color: var(--opt-muted);
  line-height: 1.7;
  margin: 1.5rem 0 1rem;
}

/* -----------------------------
   Filters
------------------------------ */
#options .options__filters{
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin: 0.65rem 0 0.35rem;
}

#options .filter-pill{
  appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.60);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  font-weight: 780;
  font-size: 0.95rem;
  color: rgba(15, 23, 42, 0.86);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
  user-select: none;
}

#options .filter-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.07);
}

#options .filter-pill:active{
  transform: translateY(0);
}

#options .filter-pill:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.14), 0 14px 28px rgba(0, 0, 0, 0.07);
}

/* actif */
#options .filter-pill.is-active{
  border-color: rgba(79, 70, 229, 0.22);
  background: linear-gradient(90deg, rgba(209, 250, 229, 0.55), rgba(224, 231, 255, 0.55));
  color: var(--opt-ink);
}

#options .options__hint{
  margin: 0 0 1.1rem;
  color: var(--opt-dim);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 66rem;
}

#options .options__empty{
  margin: 0.5rem 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  color: rgba(15, 23, 42, 0.70);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

/* -----------------------------
   Grid
------------------------------ */
#options .tiles{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin-top: 0.3rem;
}

/* -----------------------------
   Tile base
------------------------------ */
#options .tile{
  position: relative;
  border-radius: 18px;
  background: var(--opt-card);
  border: 1px solid var(--opt-stroke-2);
  box-shadow: var(--opt-shadow);
  padding: 1.05rem 1.05rem 1rem;
  display: grid;
  gap: 0.7rem;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

/* accents par type (1 seule source de vérité) */
#options .tile--ia{
  --tile-accent: var(--opt-indigo);
  --tile-accent-ink: var(--opt-indigo-ink);
}
#options .tile--addon{
  --tile-accent: var(--opt-mint);
  --tile-accent-ink: var(--opt-mint-ink);
}
#options .tile--support{
  --tile-accent: rgba(224, 231, 255, 0.72);
  --tile-accent-ink: rgba(67, 56, 202, 0.82);
}

/* signature en haut (unique) */
#options .tile::before{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  top: 10px;
  height: 2px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.10);
  opacity: 0.9;
}

/* si color-mix supporté : rendu plus fin */
@supports (background: color-mix(in srgb, white 50%, transparent)){
  #options .tile::before{
    background: color-mix(in srgb, var(--tile-accent) 55%, transparent);
  }
}

#options .tile:hover{
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: var(--opt-shadow-hover);
}

#options .tile:focus-within{
  border-color: rgba(79, 70, 229, 0.20);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.10), var(--opt-shadow-hover);
}

/* -----------------------------
   Tile content
------------------------------ */
#options .tile__title{
  margin-top: 0.35rem; /* respire sous la signature */
  font-weight: 880;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--opt-ink);
  font-size: 1.02rem;
}

#options .tile__price{
  justify-self: start;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  font-weight: 780;
  font-size: 0.88rem;
  line-height: 1.1;
  color: rgba(15, 23, 42, 0.75);
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(15, 23, 42, 0.10);
}

/* price colorisée (discrète) */
@supports (background: color-mix(in srgb, white 50%, transparent)){
  #options .tile__price{
    background: color-mix(in srgb, var(--tile-accent) 35%, rgba(255,255,255,0.85));
    border-color: color-mix(in srgb, var(--tile-accent) 55%, rgba(15,23,42,0.10));
  }
}

#options .tile__mid{
  display: grid;
  gap: 0.7rem;
}

#options .tile__desc{
  color: var(--opt-muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

#options .tile__desc strong{
  display: inline-block;
  margin-top: 0.15rem;
  font-weight: 820;
  color: rgba(15, 23, 42, 0.88);
  letter-spacing: -0.008em;
}

#options .tile__ideal{
  position: relative;
  margin-top: 0.2rem;
  padding: 5px 5px 5px 1.2rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: rgba(15, 23, 42, 0.74);
  line-height: 1.45;
  font-size: 0.92rem;
}

/* idéal “teinté” par type (pas par data-tags) */
@supports (background: color-mix(in srgb, white 50%, transparent)){
  #options .tile__ideal{
    background: color-mix(in srgb, var(--tile-accent) 28%, rgba(255,255,255,0.90));
    border-color: color-mix(in srgb, var(--tile-accent) 55%, rgba(15,23,42,0.10));
  }
}

/* accent vertical (léger, premium) */
#options .tile__ideal::before{
  content:"";
  position:absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.10);
  opacity: 0.55;
}

@supports (background: color-mix(in srgb, white 50%, transparent)){
  #options .tile__ideal::before{
    background: color-mix(in srgb, var(--tile-accent-ink) 55%, transparent);
  }
}

.pricing-compare .tip-link__icon{
  width: 16px;
  height: 16px;
  opacity: 0.65;
  color: rgba(15, 23, 42, 0.70);
  transition: opacity 160ms ease, transform 160ms ease;
}

/* Note bas de section */
#options .options__note{
  margin-top: 1rem;
  color: rgba(15, 23, 42, 0.58);
  font-size: 0.92rem;
}

/* -----------------------------
   Filtrage (JS)
------------------------------ */
#options .tile.is-hidden{
  display: none !important;
}

#options .tile.is-visible{
  animation: optionsTileIn 220ms ease-out both;
}

@keyframes optionsTileIn{
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -----------------------------
   Responsive
------------------------------ */
@media (max-width: 1060px){
  #options .tiles{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px){
  #options .tile{
    padding: 0.95rem;
  }
  #options .tile__title{ font-size: 1rem; }
  #options .tile__desc{ font-size: 0.95rem; }
}

@media (max-width: 640px){
  #options .tiles{
    grid-template-columns: 1fr;
  }
  #options .filter-pill{
    font-size: 0.92rem;
    padding: 0.52rem 0.78rem;
  }
}
