/* ==========================================================
   SEFRAC — Styles globaux
   Bootstrap 5.3.x base + design corporate
   ========================================================== */

/* ---------- VARIABLES GLOBALES ---------- */
:root {
  --ink: #0b1a2c;          /* bleu nuit principal */
  --ink-2: #0d2240;        /* bleu overlay secondaire */
  --brand: #e02626;        /* rouge SEFRAC (accent) */
  --brand-dark: #c31f1f;
  --text: #ffffff;
  --muted: #c8d2e6;
  --card: #f5f7fb;
  --shadow: 0 20px 60px rgba(4, 18, 38, .35);

  --sefrac-primary: #0F3460;
  --sefrac-secondary: #CC0000;
  --sefrac-white: #FFFFFF;
  --sefrac-light-gray: #F5F7FA;
  --sefrac-text-dark: #1A1A1A;
  --sefrac-text-gray: #6B7280;
  --sefrac-border: #E5E7EB;
}

/* ---------- BASE ---------- */
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0b1a2c;
  background-color: #ffffff;
}

a { text-decoration: none; transition: all .2s ease; }
a:hover { opacity: .85; }

h4 {
        font-size: 1.5rem;
        font-size: 18px;
        font-weight: 600;
        color: #0F3460;}
#text-black {
    font-weight: 600 !important;
    color: #000;
}

/* ---------- NAVBAR ---------- */
.navbar { box-shadow: 0 1px 3px rgba(0, 0, 0, .05); }

.navbar-nav .nav-link {
  font-weight: 600;
  color: #0b1a2c;
  margin: 0 .5rem;
  position: relative;
}
.navbar-nav .nav-link.active::after{
  content:""; position:absolute; bottom:0; left:0; right:0; height:2px;
  background-color: var(--brand); border-radius:2px;
}
.navbar-nav .nav-link:hover { color: var(--brand); }

/* ---------- Menu of canvas gauche ---------- */
.offcanvas-custom-style {
  background: #e0262638 !important; /* Utiliser !important si Bootstrap surcharge */
  padding: 6px !important;
  /* Arrondir uniquement les coins supérieurs (pour un menu qui sort du haut) */
  /* Si le menu sort de la GAUCHE, cela arrondira les coins supérieurs GAUCHE et DROIT du panneau latéral */
  border-top-left-radius: 6px !important; 
  border-top-right-radius: 6px !important;
}

/* ---------- BOUTONS ---------- */
.btn-red{
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand-dark);
  --bs-btn-hover-border-color: var(--brand-dark);
  --bs-btn-active-bg: var(--brand-dark);
  --bs-btn-active-border-color: var(--brand-dark);
  --bs-btn-color: #fff;             /* texte blanc */
  --bs-btn-hover-color: #fff;       /* texte blanc au survol */
  --bs-btn-active-color: #fff;      /* texte blanc actif */
  --bs-btn-padding-y: .8rem;
  --bs-btn-padding-x: 1.25rem;
  --bs-btn-font-weight: 700;
  border-radius: .6rem;
  box-shadow: 0 10px 24px rgba(224, 38, 38, .35);
}
.btn-red:focus-visible{
  outline: 2px solid rgba(224,38,38,.35);
  outline-offset: 2px;
}

.btn-outline-light{
  --bs-btn-color: #e8f0ff;
  --bs-btn-border-color: #e8f0ff;
  --bs-btn-hover-bg: #e8f0ff;
  --bs-btn-hover-color: #0b1a2c;
  border-width: 2px;
  border-radius: .6rem;
  padding: .8rem 1.1rem;
}

/* ---------- SECTION  HERO ---------- */
.hero{
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text);
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.95) 0%, rgba(15, 52, 96, 0.85) 100%),
              url('../assets/img/hero.jpg') center/cover no-repeat;
}
.hero > .container{ position: relative; z-index: 1; }
.hero h1{
  font-weight: 800; letter-spacing:.5px; text-transform:uppercase;
  line-height:1.15; margin-bottom:.6rem;
  font-size: clamp(1.8rem, 3.5vw + .8rem, 3rem);
}
.hero .sub{
  font-size: clamp(1rem, .7vw + .8rem, 1.25rem);
  color: var(--muted);
  margin-bottom: .75rem;
  font-weight: 600;
}
.hero .micro{ color:#d6deef; opacity:.95; margin-bottom:1.5rem; }

/* ---------- RECONNAISSANCE ---------- */
.section-pad{ padding: 3.5rem 0; }

.recognition{
  display:flex; align-items:center; gap:24px; padding:32px;
  background: var(--sefrac-white);
  border-radius:12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border-left:4px solid var(--sefrac-secondary);
}
.medal{
  width:44px; height:44px; border-radius:12px; display:grid; place-items:center;
  background:#fff0f0; border:1px solid #ffd5d5; color:var(--brand);
  margin-right:.85rem; flex:0 0 auto;
}

/* ---------- SECTION METHODE ORS ---------- */
.text-sefrac-primary { color: var(--sefrac-primary); }
.text-sefrac-text-gray { color: var(--sefrac-text-gray); }

.bg-sefrac-primary { background-color: var(--sefrac-primary); }

.method-card {
  transition: all .25s ease;
  background: var(--sefrac-white);
  border: 1px solid var(--sefrac-border);
}
.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(15, 52, 96, 0.15);
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

/* ---------- APPLICATIONS ORS ---------- */
.apps-wrap{ background:#f6f8fc; } /* léger gris bleuté comme sur la maquette */

.app-card{
  background: var(--sefrac-white);
  border: 1px solid var(--sefrac-border);
  box-shadow: 0 6px 16px rgba(15, 52, 96, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.app-card:hover{
  transform: translateY(-4px);
  border-color: rgba(15,52,96,.18);
  box-shadow: 0 14px 28px rgba(15, 52, 96, .12);
}

.app-icon{
  width: 56px; height: 56px; border-radius: 12px;
  display:grid; place-items:center;
  background: #fff5f5;                 /* fond clair */
  border: 1px solid #ffd5d5;
  color: var(--sefrac-secondary);       /* pictogramme rouge */
}

.app-card {
  background: var(--sefrac-white);
  border: 1px solid var(--sefrac-border);
  box-shadow: 0 6px 16px rgba(15, 52, 96, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(15, 52, 96, .12);
}

.app-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff5f5;
  border: 1px solid #ffd5d5;
  color: var(--sefrac-secondary);
}

.bg-sefrac-light-gray {
  background-color: var(--sefrac-light-gray);
}

/* ---------- Normes de Qualité ---------- */
.quality-chip{
  display:flex; align-items:center; gap:.6rem;
  padding:.9rem 1.1rem;
  background:#f8fafd;
  border:1px solid #eef2f7;
  border-radius:.8rem;
  box-shadow: 0 4px 14px rgba(15,52,96,.06);
  font-weight:600;
  color: var(--sefrac-text-dark);
}
.quality-chip .chip-ico{
  width:28px; height:28px; border-radius:.55rem;
  display:grid; place-items:center;
  background:#fff5f5; border:1px solid #ffd5d5;
  color: var(--sefrac-secondary);
}
@media (max-width: 575.98px){
  .quality-chip{ justify-content:flex-start; }
}

/* ---------- FAQ / Utilisation d'ORS (avec chevron animé) ---------- */
.faq-accordion{ margin:0 auto; max-width:900px; }
.faq-item{ border-bottom:1px solid #e7ecf4; }
.faq-item:first-child{ border-top:1px solid #e7ecf4; }

.faq-btn{
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  padding:18px 40px 18px 0;
  font-weight:700;
  color:var(--sefrac-text-dark);
  position:relative;
}
.faq-btn:focus{ outline:none; box-shadow:none; }
.faq-index{ color:var(--sefrac-primary); margin-right:.35rem; }

.faq-body{
  padding:0 0 18px 34px;
  color:#66748c;
}

/* Chevron à droite + animation */
.faq-btn .chev{
  position:absolute; right:0; top:50%; transform:translateY(-50%);
  display:inline-grid; place-items:center; width:24px; height:24px;
}
.faq-btn .chev svg{ transform: rotate(0deg); transition: transform .2s ease; opacity:.8; }
.faq-btn:not(.collapsed) .chev svg{ transform: rotate(180deg); opacity:1; }

/* Mobile */
@media (max-width:575.98px){
  .faq-body{ padding-left:28px; }
}

/* ---------- Avantages d'ORS ---------- */
.benefit-card{
  padding: 32px;
    background: var(--sefrac-light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--sefrac-secondary);
    transition: all 0.3s ease;
}

/* Accent rouge arrondi à gauche */
.benefit-card::before{
  content:"";
  position:absolute;
  left:-1px;                          /* recouvre la bordure pour un bord net */
  top:14px;
  bottom:14px;
  width:6px;
  border-radius: 10px;                /* arrondi haut/bas comme sur la capture */
}

/* Option hover subtil (peut être retiré si tu veux strictement statique) */
.benefit-card:hover{
  box-shadow: 0 12px 28px rgba(15,52,96,.12);
  transform: translateY(-2px);
  transition: .2s ease;
}

/* ---------- Hero À Propos ---------- */
.hero--about{
  min-height: 46vh;
  background: linear-gradient(135deg, rgba(15,52,96,.95) 0%, rgba(15,52,96,.85) 100%),
              url('../assets/img/hero.jpg') center/cover no-repeat;
  display:grid; place-items:center; text-align:center; color:#fff;
}

/* ---------- Carte reconnaissance (À Propos) ---------- */
.about-recognition{
  background:#fff;
  border:2px solid var(--sefrac-secondary);
  border-radius:14px;
  padding:48px 28px;
  box-shadow: 0 10px 24px rgba(15,52,96,.08);
}
.about-icon{
  width:64px; height:64px; border-radius:14px;
  display:grid; place-items:center;
  border:1px solid #ffd5d5; background:#fff5f5; color:var(--sefrac-secondary);
}
@media (max-width:575.98px){
  .about-recognition{ padding:36px 20px; }
}

/* ---------- À Propos : Mission / Vision / Objectif ---------- */
.about-card{
  background:#fff;
  border:1px solid #e8edf5;
  border-radius:14px;
  box-shadow:0 8px 18px rgba(15,52,96,.06);
}
.about-card:hover{
  box-shadow:0 14px 28px rgba(15,52,96,.10);
  transform: translateY(-2px);
  transition:.2s ease;
}

.about-ico{
  width:56px;height:56px;border-radius:14px;
  display:grid;place-items:center;
  background:#eef3fa;                 /* fond très clair bleu/gris */
  color:#0f2f54;                      /* bleu nuit pour l’icône */
  border:1px solid #e3e9f3;
}

@media (max-width:575.98px){
  .about-card{ padding:1.25rem; }
}

/* ---------- À Propos : Section Expérience ---------- */
.exp-card{
  position: relative;
  background:#fff;
  border:1px solid #e8edf5;
  box-shadow:0 8px 18px rgba(15,52,96,.06);
  border-radius:14px;
  border-left: 4px solid var(--sefrac-primary);
}

/* accent vertical bleu à gauche, arrondi comme sur la maquette */
.exp-card::before{
  content:"";
  position:absolute;
  left:-1px;                 /* recouvre la bordure gauche */
  top:14px; bottom:14px;
  width:6px;
  border-radius:10px;
}
.exp-card:hover {
  box-shadow: 0 12px 28px rgba(15, 52, 96, .12);
  transform: translateY(-2px);
  transition: .2s ease;
}

@media (max-width:575.98px){
  .exp-card{ padding:1.25rem; }
}

/* À Propos : bloc “Transport Fluvial et Maritime” */
.about-icon-xl{
  width:64px; height:64px; border-radius:16px;
  display:grid; place-items:center;
  background:#eef3fa; border:1px solid #e3e9f3; color:#0f2f54;
}

/* ---------- À Propos : L'Objectif ---------- */
.obj-card{
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  border-left: 4px solid var(--sefrac-secondary);
}

.obj-card:hover{
  box-shadow: 0 12px 28px rgba(15, 52, 96, .12);
  transform: translateY(-2px);
  transition: .2s ease;
}

/* Accent vertical rouge à gauche, arrondi comme la maquette */
.obj-card::before{
  content:"";
  position:absolute;
  left:-1px;                 /* recouvre la bordure gauche */
  top:14px; bottom:14px;
  width:6px;
  border-radius:10px;
}

@media (max-width:575.98px){
  .obj-card{ padding:1.25rem; }
}

/* ---------- À Propos : Service - Le Concept ---------- */
.section-pad{
  padding-top:5rem;
  padding-bottom:5rem;
}

.text-sefrac-text-gray{
  color:#596b82;
  line-height:1.7;
}

/* ---------- Hero Contact ---------- */
.hero--contact{
  min-height: 44vh;
  background: linear-gradient(135deg, rgba(15,52,96,.95) 0%, rgba(15,52,96,.85) 100%),
              url('../assets/img/hero.jpg') center/cover no-repeat;
  display:grid; place-items:center; text-align:center; color:#fff;
}

/* ---------- Cartes contact ---------- */
.contact-card{
  background:#fff;
  border:1px solid #e8edf5;
  border-radius:14px;
  box-shadow:0 8px 18px rgba(15,52,96,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover{
  transform: translateY(-3px);
  box-shadow:0 14px 28px rgba(15,52,96,.12);
}

.contact-ico{
  width:64px; height:64px; border-radius:14px;
  display:grid; place-items:center;
  background:#eef3fa; border:1px solid #e3e9f3;
  color:#0f2f54;
}

/* Contact : carte formulaire */
.contact-form-card{
  background:#fff;
  border:1px solid #e8edf5;
  border-radius:14px;
  box-shadow:0 10px 26px rgba(15,52,96,.08);
}

/* Inputs larges et doux */
.contact-form-card .form-control{
  border:1px solid #e3e9f3;
  border-radius:10px;
}
.contact-form-card .form-control:focus{
  border-color: #b8c7e6;
  box-shadow: 0 0 0 .2rem rgba(15,52,96,.08);
}

/* Bouton bleu nuit plein largeur */
.btn-ink{
  background:#0f3460;
  color:#fff;
  border:none;
  border-radius:10px;
  transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn-ink:hover{ opacity:.95; transform: translateY(-1px); box-shadow:0 8px 18px rgba(15,52,96,.2); }

/* -------- Contact : Formulaire Complet -------- */
.form-master-card{
  background:#fff;
  border:1px solid #e8edf5;
  border-radius:14px;
  box-shadow:0 10px 26px rgba(15,52,96,.08);
}

.form-section-title{
  position:relative;
  margin: .25rem 0 1rem 0;
  padding-bottom:.5rem;
  font-weight:700;
  color:var(--sefrac-primary, #0F3460);
}
.form-section-title::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-2px;
  height:3px; border-radius:3px;
  background: var(--sefrac-secondary, #CC0000);
  opacity:.9;
}

/* Inputs look & feel */
.form-master-card .form-control{
  border:1px solid #e3e9f3;
  border-radius:10px;
}
.form-master-card .form-control:focus{
  border-color:#b8c7e6;
  box-shadow:0 0 0 .2rem rgba(15,52,96,.08);
}

/* Alignement checkbox RGPD */
.form-check-input{
  width:1.1rem; height:1.1rem;
  border-radius:.35rem;
  border:1px solid #cfd9e8;
}
.form-check-input:checked{
  background-color:var(--sefrac-secondary);
  border-color:var(--sefrac-secondary);
}



/* ---------- CTA ORS ---------- */
.cta-ors, .cta-about {
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15,52,96,.98) 0%, rgba(15,52,96,.90) 100%),
    linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,0) 100%),
    var(--sefrac-primary);
}
.cta-ors .cta-about .lead{ color: #e6eef9; }

/* bouton blanc (comme sur la maquette) */
.btn-white{
  --bs-btn-bg: #ffffff;
  --bs-btn-border-color: #ffffff;
  --bs-btn-color: var(--sefrac-primary);
  --bs-btn-hover-bg: #f3f6fc;
  --bs-btn-hover-border-color: #f3f6fc;
  --bs-btn-hover-color: var(--sefrac-primary);
  box-shadow: 0 8px 22px rgba(255,255,255,.12);
}

/* ---------- FOOTER ---------- */
.site-footer{
  background: linear-gradient(180deg, #153a66 0%, #0f2f54 100%);
  padding: 44px 0 28px;
  color: #e8f1ff;
}
.footer-brand img{ display:block; }

.text-footer-muted{ color:#c7d4ea; }

.footer-link{
  color:#e8f1ff;
  text-decoration: none;
}
.footer-link:hover{
  text-decoration: underline;
}

.footer-sep{
  border:0;
  border-top:1px solid rgba(255,255,255,.15);
}

/* petits pictos (email/tel/pin) */
.fi{ display:inline-block; width:18px; height:18px; opacity:.9; }
.fi.fi-mail{ background: no-repeat center/contain url("../assets/icons/mail.svg"); }
.fi.fi-phone{ background: no-repeat center/contain url("../assets/icons/phone.svg"); }
.fi.fi-pin{ background: no-repeat center/contain url("../assets/icons/pin.svg"); }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991.98px){
  .site-footer{ padding-top: 36px; }
}
@media (max-width: 575.98px){
  .cta-ors{ padding: 56px 0; }
  .site-footer .list-inline-item { display: inline-block; margin: .25rem .35rem; }
}



/* NOUVELLE PAGE VENTE */
/* ====== VENTE / LANDING ====== */
.sale-hero{
  padding: 3.75rem 0 3rem;
  background: radial-gradient(1200px 400px at 50% -50%, rgba(15,52,96,.08), transparent 60%);
}
.sale-hero .display-5{ letter-spacing:.1px; }
.text-gradient{
  background: linear-gradient(90deg,#2b6cf6 0%, #2878ff 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* Pills */
.pill-badge{
  display:inline-flex; align-items:center; gap:.45rem;
  padding:.4rem .7rem; border-radius:999px; font-weight:600;
  background:#eaf0ff; border:1px solid #dbe5ff; color:#244a94; font-size:.85rem;
}
.pill-ok{
  display:inline-flex; align-items:center; gap:.45rem;
  padding:.35rem .65rem; border-radius:999px; font-weight:600;
  background:#e8f7ee; border:1px solid #cfeede; color:#186a3b; font-size:.82rem;
}

/* Outline ink button (demo) */
.btn-outline-ink{
  --bs-btn-color:#0f3460; --bs-btn-border-color:#0f3460;
  --bs-btn-hover-bg:#0f3460; --bs-btn-hover-border-color:#0f3460;
  --bs-btn-hover-color:#fff; border-width:2px; border-radius:.7rem;
}

/* Widget vérif */
.verify-card{
  background:#fff; border:1px solid #e8edf5; border-radius:16px;
  box-shadow:0 12px 30px rgba(15,52,96,.10);
  overflow:hidden;
}
.verify-head{
  display:flex; align-items:center; gap:.75rem;
  padding:1rem 1.1rem; border-bottom:1px solid #eef2f7;
}
.verify-ico{
  width:38px; height:38px; border-radius:10px; display:grid; place-items:center;
  background:#eef3fa; border:1px solid #e3e9f3; color:#0f2f54;
}

.verify-list{ padding:.6rem; }
.verify-row{
  width:100%; text-align:left; display:flex; justify-content:space-between; align-items:center;
  gap:1rem; padding:.85rem 1rem; border:1px solid #e6f3e9; border-radius:10px; background:#ecfbf2;
  color:#134b2b; font-weight:600; margin-bottom:.6rem;
}
.verify-row .check{
  width:26px; height:26px; border-radius:999px; display:grid; place-items:center;
  background:#d7f3e2; border:1px solid #c3ecd3; color:#167a3a;
}

.verify-foot{ padding:.75rem 1.1rem; border-top:1px solid #eef2f7; }

/* Responsive tweaks */
@media (max-width: 991.98px){
  .sale-hero{ padding: 2.75rem 0 2rem; }
}

/* ----- KPIs (vente) ----- */
.kpi-card{
  background:#fff;
  border:1px solid #e8edf5;
  border-radius:14px;
  box-shadow:0 10px 20px rgba(15,52,96,.06);
}

.kpi-value{
  font-weight:800;
  font-size:2.05rem;
  line-height:1;
  color:#0f2f54; /* bleu nuit */
  margin-bottom:.35rem;
}

.kpi-label{
  color:#6a7a90;
  font-weight:600;
  font-size:.98rem;
}

/* small tweak mobile */
@media (max-width:575.98px){
  .kpi-value{ font-size:1.8rem; }
}

/* === Fonctionnalités (icône au-dessus du titre, badge en haut à droite) === */
.feat-card {
  background:#fff;
  border:1px solid #e8edf5;
  border-radius:16px;
  box-shadow:0 8px 18px rgba(15,52,96,.06);
  position:relative;
  transition:transform .2s ease, box-shadow .2s ease;
}
.feat-card:hover {
   transform:translateY(-4px);
  background:#f9fbff;
  box-shadow:0 16px 32px rgba(15,52,96,.10);
  border-color:#d8e3f2;
}

.feat-badge {
  position:absolute;
  top:14px;
  right:14px;
  padding:.25rem .55rem;
  border-radius:6px;
  font-size:.75rem;
  font-weight:700;
  color:#b22020;
  background:#ffe9e9;
  border:1px solid #ffd2d2;
}

.feat-ico {
  width:48px;
  height:48px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:#0f2f54;
  color:#fff;
}

.feat-card h5 {
  color:#0f2f54;
  font-size:1.05rem;
  font-weight:600;
}

.text-sefrac-text-gray {
  color:#6a7a90;
  font-size:.95rem;
  line-height:1.5;
}

/* ====== Pricing ====== */
.price-card{
  background:#fff;
  border:1px solid #e8edf5;
  border-radius:16px;
  box-shadow:0 10px 24px rgba(15,52,96,.06);
  display:flex; flex-direction:column;
}
.price-card:hover{
 transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.price-popular{
  border-color:#e84a4a;
  box-shadow:0 14px 32px rgba(232,74,74,.15);
}
.popular-badge{
  position:absolute; left:50%; transform:translateX(-50%);
  top:-14px; background:#e02626; color:#fff; font-weight:800;
  font-size:.8rem; padding:.3rem .7rem; border-radius:999px;
  box-shadow:0 6px 14px rgba(224,38,38,.25);
}

.price .val{
  font-weight:900; font-size:2.4rem; color:#0f2f54; line-height:1;
}
.price .unit{
  margin-left:.35rem; color:#6a7a90; font-weight:700;
}
.val-custom{
  font-size:2.4rem; line-height:1.1; display:inline-block;
}

/* ====== Alignement précis des icônes tarifs ====== */
.feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feat-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed #eef2f7;
  font-weight: 600;
  font-size: 0.95rem;
  color: #25364c;
}
.feat-list li:last-child {
  border-bottom: none;
}

/* ✅ vert */
.feat-list li.ok::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 0.8rem;
  color: #1a7f45;
  background: #e4f7ec;
  border: 1px solid #c5eed9;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ❌ rouge */
.feat-list li.no::before {
  content: "✕";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 0.8rem;
  color: #b53a3a;
  background: #ffeaea;
  border: 1px solid #ffd4d4;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Grisé pour les non-disponibles */
.feat-list li.no {
  color: #9aa7b8;
}


/* Buttons already defined: .btn-red, .btn-outline-ink */
/* spacing in column */
.price-card .btn{ margin-top:auto; }

/* ----- Normes de Qualité (pills) ----- */
.norm-card{
  display:flex; align-items:center; gap:.6rem;
  padding: .95rem 1.1rem;
  background:#f7f9fe;
  border:1px solid #e8edf5;
  border-radius:12px;
  font-weight:700;
  color:#0f2f54;
  box-shadow:0 6px 16px rgba(15,52,96,.06);
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.norm-card:hover{
  transform: translateY(-2px);
  box-shadow:0 10px 22px rgba(15,52,96,.10);
  background:#f4f7fe;
}
.norm-ok{
  width:22px; height:22px; flex:0 0 22px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:999px;
  background:#e4f7ec; border:1px solid #c5eed9;
  color:#1a7f45; font-size:.85rem; font-weight:800;
}

/* ----- Témoignages ----- */
.testi-card{
  background:#fff;
  border:1px solid #e8edf5;
  border-radius:16px;
  box-shadow:0 10px 24px rgba(15,52,96,.06);
  transition:transform .2s ease, box-shadow .25s ease, background .2s ease;
}
.testi-card:hover{
  transform:translateY(-4px);
  background:#f9fbff;
  box-shadow:0 16px 32px rgba(15,52,96,.10);
  border-color:#d8e3f2;
}
.stars span{
  color:#f4b400;            /* or soutenu */
  margin-right:.15rem;
  font-size:1rem;
}
.testi-quote{
  color:#33445a;
  font-style:italic;
  line-height:1.7;
  margin:0 0 .75rem 0;
}
.testi-sep{
  border:0; border-top:1px solid #eef2f7; margin:.75rem 0;
}
.testi-author .text-muted{ font-size:.9rem; }
.testi-company{
  font-weight:700; color:#0f2f54; font-size:.92rem;
}


/* ===== CTA Final ===== */
.bg-sefrac-dark {
  background: linear-gradient(145deg, #0b274a, #143b6b);
  color: #fff;
}

.cta-box {
  background: #fff;
  color: #0f2f54;
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15,52,96,.15);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cta-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(15,52,96,.25);
}

.text-highlight {
  color: #0f2f54;
}

.btn-sefrac-danger {
  background: #d00000;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  transition: background .2s ease, transform .15s ease;
}
.btn-sefrac-danger:hover {
  background: #b00000;
  transform: translateY(-2px);
}

.cta-phone {
  font-size: 1.1rem;
  color: #0f2f54;
  text-decoration: none;
}
.cta-phone:hover {
  color: #d00000;
}

.bi-telephone::before {
  font-family: bootstrap-icons;
  font-style: normal;
}

/* inscription modal formulaire */
.modal-body {padding: 2.5rem !important;}
.progress {--bs-progress-height: 2rem !important;}

/* pages CGV */ 
.cgv-bullet {
  position: relative;
  padding-left: 1.2rem; /* espace avant le texte */
  margin-bottom: .5rem;
}

.cgv-bullet::before {
  content: "•"; /* le point */
  position: absolute;
  left: 0;
  top: 0;
  color: #10284a;        /* couleur corporate SEFRAC */
  font-size: 1.1rem;
  line-height: 1;
}
.title-underline {
  position: relative;
  display: inline-block;
  padding-bottom: .4rem;
  font-weight: 600;
}

.title-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;                 /* longueur de la ligne */
  height: 3px;                 /* épaisseur */
  background: #10284a;         /* couleur SEFRAC */
  border-radius: 2px;
}
.strong-highlight {
  font-weight: 600 !important;      /* plus fort que le strong natif */
  color: #0F3460;                 /* bleu SEFRAC */
  /* background: rgba(16, 40, 74, 0.08); léger fond bleu 
  padding: 0.15rem 0.35rem;
  border-radius: 4px;*/
  display: inline-block;
}

/* PDF BOUTON */
.cgv-downloads .btn {
  white-space: normal;
  font-weight: 600;
  padding: 1rem 1.2rem;
}


