:root {
  --sp-primary: #06364a;
  --sp-blue: #0798c9;
  --sp-blue-dark: #047ca8;
  --sp-lime: #c9e632;

  --sp-bg: #f7fbfd;
  --sp-white: #ffffff;
  --sp-text: #102331;
  --sp-muted: #667085;
  --sp-border: #e4e7ec;
  --sp-soft-blue: #eaf8fd;
  --sp-soft-lime: #f5fbdd;

  --sp-radius: 22px;
  --sp-shadow: 0 24px 70px rgba(16, 35, 49, 0.08);
}

* {
  box-sizing: border-box;
}

body.smartplatform-site,
body.smartplatform-home {
  margin: 0;
  background: var(--sp-bg);
  color: var(--sp-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.smartplatform-site a,
body.smartplatform-home a {
  text-decoration: none;
}

.sp-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */

.sp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 231, 236, 0.8);
}

.sp-header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sp-text);
  min-width: 200px;
}

.sp-logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sp-blue), var(--sp-primary));
  color: white;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.sp-logo strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.sp-logo small {
  display: block;
  color: var(--sp-muted);
  font-size: 10px;
  margin-top: 3px;
}

.sp-nav {
  flex: 1;
}

.sp-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-menu li {
  position: relative;
}

.sp-menu a {
  color: var(--sp-text);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding: 4px 0;
  display: inline-block;
}

.sp-menu a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--sp-blue);
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.25s ease;
}

/* MENU ACTIF WORDPRESS */

.sp-menu li.current-menu-item>a,
.sp-menu li.current_page_item>a,
.sp-menu li.current_page_parent>a,
.sp-menu li.current-menu-ancestor>a,
.sp-menu a:hover {
  /*color: var(--sp-blue);*/
  color: var(--sp-lime);
  font-weight: 700;
}

.sp-menu li.current-menu-item>a::after,
.sp-menu li.current_page_item>a::after,
.sp-menu li.current_page_parent>a::after,
.sp-menu li.current-menu-ancestor>a::after,
.sp-menu a:hover::after {
  width: 100%;
}

/* FALLBACK SI WORDPRESS NE MARQUE PAS LE MENU ACTIF */

body.page-template-page-abonnements .sp-menu a[href*="abonnements"],
body.page-template-page-abonnements-php .sp-menu a[href*="abonnements"],
body[class*="abonnements"] .sp-menu a[href*="abonnements"] {
  color: var(--sp-blue) !important;
  font-weight: 700 !important;
}

body.page-template-page-abonnements .sp-menu a[href*="abonnements"]::after,
body.page-template-page-abonnements-php .sp-menu a[href*="abonnements"]::after,
body[class*="abonnements"] .sp-menu a[href*="abonnements"]::after {
  width: 100% !important;
}

body.page-template-page-services .sp-menu a[href*="services"],
body.page-template-page-services-php .sp-menu a[href*="services"],
body[class*="services"] .sp-menu a[href*="services"] {
  color: var(--sp-blue) !important;
  font-weight: 700 !important;
}

body.page-template-page-services .sp-menu a[href*="services"]::after,
body.page-template-page-services-php .sp-menu a[href*="services"]::after,
body[class*="services"] .sp-menu a[href*="services"]::after {
  width: 100% !important;
}

body.page-template-page-webinaires .sp-menu a[href*="webinaires"],
body.page-template-page-webinaires-php .sp-menu a[href*="webinaires"],
body[class*="webinaires"] .sp-menu a[href*="webinaires"] {
  color: var(--sp-blue) !important;
  font-weight: 700 !important;
}

body.page-template-page-webinaires .sp-menu a[href*="webinaires"]::after,
body.page-template-page-webinaires-php .sp-menu a[href*="webinaires"]::after,
body[class*="webinaires"] .sp-menu a[href*="webinaires"]::after {
  width: 100% !important;
}

body.page-template-page-a-propos .sp-menu a[href*="a-propos"],
body.page-template-page-a-propos-php .sp-menu a[href*="a-propos"],
body[class*="a-propos"] .sp-menu a[href*="a-propos"] {
  color: var(--sp-blue) !important;
  font-weight: 700 !important;
}

body.page-template-page-a-propos .sp-menu a[href*="a-propos"]::after,
body.page-template-page-a-propos-php .sp-menu a[href*="a-propos"]::after,
body[class*="a-propos"] .sp-menu a[href*="a-propos"]::after {
  width: 100% !important;
}

body.page-template-page-contact .sp-menu a[href*="contact"],
body.page-template-page-contact-php .sp-menu a[href*="contact"],
body[class*="contact"] .sp-menu a[href*="contact"] {
  color: var(--sp-blue) !important;
  font-weight: 700 !important;
}

body.page-template-page-contact .sp-menu a[href*="contact"]::after,
body.page-template-page-contact-php .sp-menu a[href*="contact"]::after,
body[class*="contact"] .sp-menu a[href*="contact"]::after {
  width: 100% !important;
}

/* MENU ACTIF ONE PAGE NAFLOO */

.sp-menu a.is-active {
  color: var(--sp-blue) !important;
  font-weight: 700 !important;
}

.sp-menu a.is-active::after {
  width: 100% !important;
}

/* ACTIONS HEADER */

.sp-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-login-link {
  color: var(--sp-text);
  font-weight: 600;
  font-size: 14px;
}

.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.sp-btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--sp-blue), var(--sp-blue-dark));
  box-shadow: 0 14px 30px rgba(21, 94, 239, 0.25);
}

.sp-btn-primary:hover {
  color: white;
  transform: translateY(-2px);
}

.sp-btn-outline {
  color: var(--sp-text);
  background: white;
  border-color: var(--sp-border);
}

.sp-btn-outline:hover {
  border-color: var(--sp-blue);
  color: var(--sp-blue);
}

.sp-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--sp-border);
  background: white;
  border-radius: 12px;
  padding: 10px;
}

.sp-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--sp-text);
  margin: 5px 0;
}


/* STRIP */

.sp-feature-strip {
  margin-top: -10px;
  position: relative;
  z-index: 5;
}

.sp-strip-card {
  background: white;
  border: 1px solid var(--sp-border);
  box-shadow: var(--sp-shadow);
  border-radius: var(--sp-radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.sp-strip-item {
  padding: 28px;
  display: flex;
  gap: 16px;
  border-right: 1px solid var(--sp-border);
}

.sp-strip-item:last-child {
  border-right: none;
}

.sp-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  background: var(--sp-soft-blue);
  color: var(--sp-blue);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 20px;
}

.sp-strip-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
}

.sp-strip-item p {
  margin: 0;
  color: var(--sp-muted);
  line-height: 1.6;
  font-size: 14px;
}

/* SECTIONS */

.sp-section {
  padding: 80px 0;
}

.sp-section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}

.sp-section-heading h2 {
  font-size: clamp(30px, 3vw, 42px);
  margin: 0 0 14px;
  letter-spacing: -1px;
}

.sp-section-heading p {
  margin: 0;
  color: var(--sp-muted);
  font-size: 17px;
}

.sp-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.sp-card {
  background: white;
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.04);
  transition: 0.25s ease;
}

.sp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sp-shadow);
}

.sp-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  border-radius: 24px;
  background: var(--sp-soft-blue);
  color: var(--sp-blue);
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 900;
}

.sp-card h3 {
  font-size: 22px;
  margin: 0 0 14px;
}

.sp-card p {
  color: var(--sp-muted);
  line-height: 1.7;
  margin: 0 0 22px;
}

.sp-card a {
  color: var(--sp-blue);
  font-weight: 800;
}

/* STATS */

.sp-stats {
  padding: 0 0 30px;
}

.sp-stats-card {
  background: linear-gradient(135deg, #06182d, #0b1f3a);
  color: white;
  border-radius: var(--sp-radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--sp-shadow);
  overflow: hidden;
}

.sp-stats-card div {
  padding: 34px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.sp-stats-card div:last-child {
  border-right: none;
}

.sp-stats-card strong {
  display: block;
  font-size: 38px;
  margin-bottom: 6px;
}

.sp-stats-card span {
  color: rgba(255, 255, 255, 0.72);
}

/* CTA */

.sp-cta {
  padding: 25px 0 70px;
}

.sp-cta-card {
  background: var(--sp-soft-blue);
  border: 1px solid #d6e4ff;
  border-radius: var(--sp-radius);
  padding: 34px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.sp-cta-icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: var(--sp-blue);
  color: white;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 900;
}

.sp-cta-card h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.sp-cta-card p {
  margin: 0;
  color: var(--sp-muted);
}

/* TESTIMONIALS */

.sp-testimonials {
  padding-top: 40px;
}

.sp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sp-testimonial {
  background: white;
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  padding: 30px;
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.04);
}

.sp-testimonial p {
  color: var(--sp-muted);
  line-height: 1.8;
  margin: 0 0 24px;
}

.sp-testimonial strong {
  display: block;
  margin-bottom: 4px;
}

.sp-testimonial span {
  color: var(--sp-muted);
  font-size: 14px;
}

/* FOOTER VERSION WHITE CLEAN */

.sp-footer {
  background: #000000;
  color: #ffffff;
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sp-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
}

/* Texte */
.sp-footer p {
  color: var(--sp-muted);
  line-height: 1.7;
  margin: 0 0 10px;
}


/* Bas footer */
.sp-footer-bottom {
  border-top: 1px solid var(--sp-border);
  padding: 20px 0;
}

.sp-footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}


/* RESPONSIVE */

@media (max-width: 980px) {

  .sp-hero-grid,
  .sp-card-grid,
  .sp-strip-card,
  .sp-stats-card,
  .sp-testimonial-grid,
  .sp-footer-grid {
    grid-template-columns: 1fr;
  }

  .sp-strip-item,
  .sp-stats-card div {
    border-right: none;
    border-bottom: 1px solid var(--sp-border);
  }

  .sp-stats-card div {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .sp-cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sp-cta-icon {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .sp-container {
    width: min(100% - 24px, 1180px);
  }

  .sp-btn {
    width: 100%;
  }
}

/* =========================================================
   LOGO NAFLOO - VERSION UNIQUE PROPRE
========================================================= */

.custom-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  width: auto !important;
  height: auto !important;
}

.custom-logo {
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  filter: none !important;
}

/* Header desktop */
.sp-header .custom-logo {
  max-width: 170px !important;
  max-height: 58px !important;
}

/* Dashboard */
.sp-dashboard-logo .custom-logo {
  max-width: 165px !important;
  max-height: 58px !important;
}

/* Footer */
.sp-footer .custom-logo {
  max-width: 220px !important;
  max-height: 82px !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.sp-logo-wrap,
.sp-footer-logo-wrap,
.sp-dashboard-logo {
  display: flex !important;
  align-items: center !important;
}

/* Mobile */
@media (max-width: 760px) {

  .sp-logo-wrap,
  .sp-logo-wrap .custom-logo-link {
    max-width: 175px !important;
  }

  .sp-header .custom-logo {
    max-width: 155px !important;
    max-height: 60px !important;
  }

  .sp-menu-toggle {
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;
    margin-left: auto !important;
  }

  .sp-footer .custom-logo {
    max-width: 190px !important;
    max-height: 72px !important;
  }
}

@media (max-width: 420px) {
  .sp-header .custom-logo {
    max-width: 145px !important;
    max-height: 56px !important;
  }

  .sp-logo-wrap,
  .sp-logo-wrap .custom-logo-link {
    max-width: 155px !important;
  }
}

/* =========================================================
   FIX MENU MOBILE NAFLOO
========================================================= */

@media (max-width: 980px) {
  .sp-header-inner {
    position: relative !important;
    min-height: 82px !important;
    height: auto !important;
    flex-wrap: wrap !important;
    align-items: center !important;
  }

  .sp-logo-wrap {
    flex: 1 1 auto !important;
  }

  .sp-menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    margin-left: auto !important;
    z-index: 20 !important;
  }

  .sp-nav,
  .sp-header-actions {
    display: none !important;
    width: 100% !important;
    flex: 0 0 100% !important;
  }

  .sp-nav.is-open,
  .sp-header-actions.is-open {
    display: block !important;
  }

  .sp-nav.is-open {
    margin-top: 14px !important;
    padding: 14px 0 4px !important;
    border-top: 1px solid var(--sp-border) !important;
  }

  .sp-menu {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
  }

  .sp-menu li {
    width: 100% !important;
  }

  .sp-menu a {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    min-height: 46px !important;
    padding: 0 4px !important;
    font-size: 15px !important;
  }

  .sp-menu a::after {
    display: none !important;
  }

  .sp-header-actions.is-open {
    padding: 12px 0 18px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .sp-header-actions.is-open a {
    width: 100% !important;
    text-align: center !important;
  }

  .sp-login-link {
    min-height: 46px !important;
    border: 1px solid var(--sp-border) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
  }
}

/* FIX ICON HAMBURGER */

.sp-menu-toggle {
  position: relative !important;
  background: var(--sp-blue) !important;
  border: none !important;
}

.sp-menu-toggle span {
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  background: #ffffff !important;
  /* 🔥 couleur visible */
  margin: 4px 0 !important;
  border-radius: 2px !important;
}

/* HERO VIDEO FULL WIDTH */

.nf-hero-video-layout {
  padding: 90px 0;
}

.nf-hero-video-layout .sp-container {
  max-width: 1180px;
}

.nf-hero-video-screen {
  position: relative;
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #061d33, var(--sp-blue));
  box-shadow: 0 30px 80px rgba(16, 35, 49, 0.18);
}

.nf-hero-video-bg {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(3, 16, 31, 0.55), rgba(7, 152, 201, 0.35)),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.22), transparent 35%);
}

.nf-hero-video-overlay {
  position: relative;
  z-index: 2;
  min-height: 620px;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  color: #ffffff;
}

.nf-hero-video-overlay h1 {
  color: #ffffff;
}

.nf-hero-video-overlay h1 span {
  color: var(--sp-lime);
}

.nf-hero-video-overlay p {
  color: rgba(255, 255, 255, 0.84);
}

.nf-hero-video-overlay .sp-eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.nf-play {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--sp-blue);
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
}

.nf-btn-light {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

/* ABOUT VALUES INSIDE CARD */

.nf-values-inside {
  margin-top: 34px;
}

.nf-about-card .nf-values-grid {
  padding-top: 28px;
  border-top: 1px solid var(--sp-border);
}

@media (max-width: 768px) {
  .nf-hero-video-layout {
    padding: 50px 0;
  }

  .nf-hero-video-screen,
  .nf-hero-video-overlay {
    min-height: 560px;
  }

  .nf-hero-video-overlay {
    padding: 34px 24px;
  }

  .nf-play {
    width: 74px;
    height: 74px;
    font-size: 26px;
  }
}

.nf-about-transition {
  margin-top: 30px;
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--sp-text);
}

.nf-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nf-hero-actions .sp-btn {
  min-width: 280px;
}

@media (max-width: 768px) {
  .nf-hero-actions .sp-btn {
    width: 100%;
    min-width: 100%;
  }
}

/* Quote*/
.nf-disclaimer .sp-container blockquote {
  margin: 0 0 0;
  padding: 0 26px;
  border-left: 4px solid var(--sp-blue);
  background: var(--sp-soft-blue);
  border-radius: 16px;
  color: var(--sp-text);
  font-size: 42px !important;
  font-weight: 800;
}

/* =========================================================
   COULEUR VERTE UNIFIÉE NAFLOO
========================================================= */

/*.sp-plan-icon,
.sp-card-icon,
.sp-icon,
.nf-values-grid article span {
  background: var(--sp-lime) !important;
  color: #102331 !important;
}

/* Hero texte vert 
.nf-hero-video-overlay h1 span {
  color: var(--sp-lime) !important;
}

/* Hover boutons outline 
.sp-btn-outline:hover {
  border-color: var(--sp-lime) !important;
  color: var(--sp-lime) !important;
}*/

/* =========================================================
   LISTES OFFRES STARLET / ELANTRA
========================================================= */

/*.nf-offer-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.nf-offer-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
  color: var(--sp-text);
  line-height: 1.6;
}

.nf-offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sp-lime);
  color: #102331;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}*/

/* FAQ NAFLOO */

.nf-faq-section {
  padding: 90px 0;
  background: #ffffff;
}

.nf-faq-group {
  margin-bottom: 34px;
}

.nf-faq-group h3,
.nf-faq-contact h3 {
  margin: 0 0 18px;
  font-size: 24px;
  color: var(--sp-text);
}

.nf-faq-group details {
  background: var(--sp-bg);
  border: 1px solid var(--sp-border);
  border-radius: 18px;
  padding: 20px 24px;
  margin-bottom: 14px;
}

.nf-faq-group summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--sp-text);
}

.nf-faq-group p {
  margin: 14px 0 0;
  color: var(--sp-muted);
  line-height: 1.8;
}

.nf-faq-contact {
  background: var(--sp-soft-blue);
  border: 1px solid var(--sp-border);
  border-radius: 24px;
  padding: 30px;
}

.nf-faq-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.nf-faq-form input,
.nf-faq-form textarea {
  width: 100%;
  border: 1px solid var(--sp-border);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
}

.nf-faq-form button {
  width: fit-content;
  border: none;
  cursor: pointer;
}

.nf-faq-alert {
  padding: 14px 16px;
  border-radius: 14px;
  margin: 18px 0;
  font-size: 14px;
  font-weight: 700;
}

.nf-faq-alert.success {
  background: #ecfdf3;
  color: #027a48;
  border: 1px solid #abefc6;
}

.nf-faq-alert.error {
  background: #fef3f2;
  color: #b42318;
  border: 1px solid #fecdca;
}

@media (max-width: 640px) {
  .nf-faq-form button {
    width: 100%;
  }
}

/* FOOTER FULL DISCLAIMER */

.sp-footer-full {
  width: 100%;
}

.sp-footer-disclaimer {
  margin-top: 28px;
  max-width: 100%;
}

.sp-footer-disclaimer p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 18px;
}

.sp-footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================================================
   ICÔNES LISTES TARIFICATION STARLET / ELANTRA
========================================================= */

.nf-pricing-card ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.nf-pricing-card ul li {
  position: relative !important;
  padding-left: 34px !important;
}

.nf-pricing-card ul li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 2px !important;

  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;

  background: var(--sp-lime) !important;
  color: #102331 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

/* =========================================================
   HERO BUTTONS ALIGNEMENT
========================================================= */

.sp-hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  gap: 18px;

  margin-top: 42px;

  width: 100%;
}

.sp-hero-actions .sp-btn {
  min-width: 420px;
  min-height: 64px;

  justify-content: center;
  align-items: center;

  white-space: nowrap;

  font-size: 18px;
  padding: 0 32px;
}



/* =========================================================
   FIX HERO BUTTONS MOBILE
========================================================= */

@media (max-width: 768px) {

  .nf-hero-actions,
  .sp-hero-actions {
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    margin-top: 34px !important;
  }

  .nf-hero-actions .sp-btn,
  .sp-hero-actions .sp-btn {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 58px !important;
    padding: 0 16px !important;

    font-size: 16px !important;
    line-height: 1.25 !important;
    text-align: center !important;

    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }
}

@media (max-width: 420px) {

  .nf-hero-actions .sp-btn,
  .sp-hero-actions .sp-btn {
    font-size: 15px !important;
    padding: 0 12px !important;
  }
}

/* PAGE D’ACCUEIL — PRIX DYNAMIQUES */

.nf-pricing-card {
  position: relative;
}

.nf-price small {
  display: block;
  width: 100%;
  margin-top: 5px;
  color: var(--sp-muted);
  font-size: 12px;
  font-weight: 650;
}

.nf-price del,
.nf-year-price del {
  color: var(--sp-muted);
  font-size: 0.75em;
  font-weight: 600;
  opacity: 0.8;
}

.nf-price ins,
.nf-year-price ins {
  color: inherit;
  text-decoration: none;
}

.nf-year-price span {
  margin-left: 4px;
  font-size: 0.85em;
}

.nf-recommended {
  position: absolute;
  top: -12px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--sp-blue);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(21, 94, 239, 0.22);
}

/* Champ anti-spam du formulaire FAQ */

.nf-honeypot-field {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* PAGE D’ACCUEIL — PLANS DYNAMIQUES */

.nf-pricing-grid-dynamic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.nf-pricing-grid-dynamic .nf-pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nf-pricing-grid-dynamic .nf-pricing-card>.sp-btn {
  margin-top: auto;
}

.nf-pricing-plan-image {
  height: 180px;
  overflow: hidden;
  margin: -1px -1px 20px;
  border-radius: 18px 18px 0 0;
  background: #eef4ff;
}

.nf-pricing-plan-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nf-plan-short-description {
  min-height: 48px;
  color: var(--sp-muted);
  font-size: 13px;
  line-height: 1.55;
}

.nf-pricing-grid-dynamic .nf-price small {
  display: block;
  margin-top: 5px;
  color: var(--sp-muted);
  font-size: 12px;
  font-weight: 650;
}

.nf-pricing-grid-dynamic .nf-year-price span {
  margin-left: 4px;
  font-size: 0.85em;
}

@media (max-width: 850px) {
  .nf-pricing-grid-dynamic {
    grid-template-columns: 1fr;
  }

  .nf-plan-short-description {
    min-height: 0;
  }
}

/* =========================================================
   NAFLOO — TEMPLATE D’OFFRE DYNAMIQUE
========================================================= */

.nf-offer-target {
  margin-bottom: 10px;
}

.nf-offer-short-description {
  font-size: 18px;
  line-height: 1.6;
}

.nf-offer-long-description p {
  margin: 0 0 14px;
}

.nf-offer-conclusion {
  margin-top: 22px;
  font-weight: 700;
}

.nf-offer-hero-image {
  overflow: hidden;
  margin-top: 24px;
  border-radius: 18px;
}

.nf-offer-hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.nf-offer-state-box {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 14px;
}

.nf-offer-state-box .nf-offer-state-icon {
  display: inline-flex;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 900;
}

.nf-offer-state-box strong {
  display: block;
  margin-bottom: 4px;
}

.nf-offer-state-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.nf-offer-state-box.active {
  color: #05603a;
  background: #ecfdf3;
  border: 1px solid #abefc6;
}

.nf-offer-state-box.active .nf-offer-state-icon {
  color: #ffffff;
  background: #079455;
}

.nf-offer-state-box.blocked {
  color: #912018;
  background: #fef3f2;
  border: 1px solid #fecdca;
}

.nf-offer-state-box.blocked .nf-offer-state-icon {
  color: #ffffff;
  background: #d92d20;
}

.nf-offer-access-button {
  width: 100%;
  margin-bottom: 18px;
  text-align: center;
}

.nf-offer-products {
  display: grid;
  gap: 14px;
}

.nf-offer-help {
  display: block;
  margin-top: 18px;
  line-height: 1.55;
}

.nf-btn-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  color: #98a2b3;
  background: #f2f4f7;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

.nf-hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.nf-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nf-hero-video-bg.no-video {
  background-size: cover;
  background-position: center;
}

/* Vidéo du hero configurable depuis WordPress */
.nf-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .nf-hero-video-mobile-disabled {
    display: none;
  }

  .nf-hero-video-bg:has(.nf-hero-video-mobile-disabled) {
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 767px) {
  .nf-hero-video-bg.video-disabled-mobile .nf-hero-video {
    display: none;
  }

  .nf-hero-video-bg.video-disabled-mobile {
    background-size: cover;
    background-position: center;
  }
}