/*!
    Theme Name: Nounou-top Override
    Description: CSS pour les pages publiques (homepage, landing…)
    Version: 2.9.5
 */


/* ================================================================
   0. NAVBAR MARKETING (#header-dynamique)
   ================================================================ */

/* --- Layout --- */
#header-dynamique .nt-mkt-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

#header-dynamique .nt-mkt-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

#header-dynamique .nt-mkt-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

#header-dynamique .nt-mkt-nav__logo img {
  height: 32px;
  width: auto;
}

#header-dynamique .nt-mkt-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

#header-dynamique .nt-mkt-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

/* --- Dropdown --- */
#header-dynamique .nt-mkt-dropdown {
  position: relative;
}

#header-dynamique .nt-mkt-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: none;
  border: 1px solid #d1d5db;
  border-radius: 24px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1b4159;
  transition: border-color 0.15s ease, background 0.15s ease;
}

#header-dynamique .nt-mkt-dropdown__toggle:hover,
#header-dynamique .nt-mkt-dropdown:hover .nt-mkt-dropdown__toggle {
  border-color: #2da3ed;
  background: #fafbfc;
}

#header-dynamique .nt-mkt-dropdown__chevron {
  font-size: 11px;
  transition: transform 0.2s ease;
}

#header-dynamique .nt-mkt-dropdown:hover .nt-mkt-dropdown__chevron,
#header-dynamique .nt-mkt-dropdown.is-open .nt-mkt-dropdown__chevron {
  transform: rotate(180deg);
}

#header-dynamique .nt-mkt-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 300px;
  padding: 16px 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  z-index: 1000;
}

#header-dynamique .nt-mkt-dropdown__menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

#header-dynamique .nt-mkt-dropdown:hover .nt-mkt-dropdown__menu,
#header-dynamique .nt-mkt-dropdown.is-open .nt-mkt-dropdown__menu {
  display: block;
}

#header-dynamique .nt-mkt-dropdown__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  text-decoration: none;
  transition: background 0.15s ease;
}

#header-dynamique .nt-mkt-dropdown__link:hover {
  background: #f8fafc;
}

#header-dynamique .nt-mkt-dropdown__link-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
  color: #2da3ed;
  align-self: flex-start;
  margin-top: 2px;
}

#header-dynamique .nt-mkt-dropdown__link-text {
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1b4159;
}

#header-dynamique .nt-mkt-dropdown__link-desc {
  font-size: 12px;
  font-weight: 400;
  color: #5f707c;
  margin-top: 2px;
}

/* --- Buttons --- */
#header-dynamique .nt-mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

#header-dynamique .nt-mkt-btn--outline {
  border: 1.5px solid #1b4159;
  color: #1b4159;
  background: transparent;
}

#header-dynamique .nt-mkt-btn--outline:hover {
  background: #1b4159;
  color: #fff;
}

#header-dynamique .nt-mkt-btn--filled {
  border: 1.5px solid #1b4159;
  background: #1b4159;
  color: #fff;
}

#header-dynamique .nt-mkt-btn--filled:hover {
  background: #0f2d3f;
  border-color: #0f2d3f;
}

/* --- Hamburger --- */
#header-dynamique .nt-mkt-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

#header-dynamique .nt-mkt-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1b4159;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#header-dynamique .nt-mkt-nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#header-dynamique .nt-mkt-nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

#header-dynamique .nt-mkt-nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile menu --- */
#header-dynamique .nt-mkt-mobile-menu {
  padding: 16px 24px 24px;
  border-top: 1px solid #e2e8f0;
  background: #fff;
}

#header-dynamique .nt-mkt-mobile-menu[hidden] {
  display: none;
}

#header-dynamique .nt-mkt-mobile-menu__label {
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #5f707c;
  margin: 16px 0 8px;
}

#header-dynamique .nt-mkt-mobile-menu__label:first-child {
  margin-top: 0;
}

#header-dynamique .nt-mkt-mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1b4159;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
}

#header-dynamique .nt-mkt-mobile-menu__link i {
  font-size: 12px;
  color: #5f707c;
}

#header-dynamique .nt-mkt-mobile-menu__buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

#header-dynamique .nt-mkt-mobile-menu__buttons .nt-mkt-btn {
  flex: 1;
  text-align: center;
}

/* --- Responsive navbar --- */
@media (max-width: 991px) {
  #header-dynamique .nt-mkt-nav__links,
  #header-dynamique .nt-mkt-nav__actions {
    display: none;
  }

  #header-dynamique .nt-mkt-nav__hamburger {
    display: flex;
  }
}


/* ================================================================
   1. TYPOGRAPHIE GLOBALE
   ================================================================ */

body h1 {
  font-size: 3rem !important;
  font-weight: 600 !important;
  color: #005B85;
}

body h2 {
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 600;
  color: #005B85;
}

body h3 {
  font-size: 1.6rem;
  color: #005B85;
}

body h4 {
  text-transform: none;
  color: #005B85;
}

body h4.text-secondary {
  text-transform: none;
  font-size: 1.2rem;
  font-weight: 400;
}

.small-title {
  font-size: 1.2rem !important;
  font-weight: 400 !important;
}

.h1-title {
  font-size: 2.7rem !important;
  font-weight: 600 !important;
  font-family: "Rubik", "Helvetica Neue", Arial, Helvetica, sans-serif;
  color: #005B85;
}


/* ================================================================
   2. UTILITAIRES
   ================================================================ */

.radius-12 {
  border-radius: 12px;
}

.radius-24 {
  border-radius: 24px;
}

.bg-blue {
  background-color: #ECFAFF;
}

.color-management {
  color: #2fcfc8;
}

.background-management {
  background-color: #2fcfc8 !important;
}

.color-marketplace {
  color: #EA93A3;
}

.background-marketplace {
  background-color: #EA93A3 !important;
}

.color-notebook {
  color: #f7b844;
}

.background-notebook {
  background-color: #f7b844 !important;
}

.illustration {
  width: 220px;
  height: 220px;
  object-fit: contain;
  display: block;
}

.image-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-check::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: .5rem;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%232da3ed' stroke-width='2' fill='none'/%3E%3Cpath d='M8 12L11 15L16 9' stroke='%232da3ed' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  margin-top: 4px;
}


/* ================================================================
   3. LAYOUT — Conteneur max-width
   ================================================================ */

@media only screen and (min-width: 1920px) {
  body.visitor #page,
  body.presentation-page #page {
    position: relative;
    margin: auto;
    max-width: 1920px;
    box-shadow: 0 0 30px #aaa;
  }
}

.visitor .section {
  margin-top: 5rem;
  margin-bottom: 5rem;
}


/* ================================================================
   4. HOMEPAGE / PRESENTATION — Sections génériques
   ================================================================ */

body.homepage section#main-functions .function .content h3,
body.presentation-page section#main-functions .function .content h3 {
  font-weight: 500;
}

body.homepage section#partners,
body.presentation-page section#partners {
  background-image: none;
}

body.homepage section#tools,
body.presentation-page section#tools {
  background-image: none;
  margin-top: -70px;
}

body.homepage section#support,
body.presentation-page section#support {
  background-image: none;
}

body.homepage section#questions,
body.presentation-page section#questions {
  background: url(./../img/public_assets/management/questions.svg);
  background-size: auto;
  background-position: center top;
  background-repeat: no-repeat;
  margin-top: -100px;
  padding-top: 120px;
  position: relative;
  z-index: 2;
  overflow: auto;
}

body.homepage section#testimonials,
body.presentation-page section#testimonials {
  padding-bottom: 260px;
  background: url(./../img/public_assets/management/background-testimonials.svg);
  background-size: auto;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 250px;
  margin-top: -100px;
  position: relative;
}

body.visitor .visitor-topsection__background-effect,
body.presentation-page .visitor-topsection__background-effect {
  background-image: url(./../img/public_assets/white-search.svg);
  position: absolute;
  bottom: 0;
  height: 60px;
  z-index: 2;
  width: 100%;
}


/* ================================================================
   5. HOMEPAGE — Variante child_management
   ================================================================ */

body.homepage.child_management section.benefit .bullets h2 span.text .underline {
  position: absolute;
  height: 4px;
  border-radius: 5px;
  background: #2fcfc8;
  bottom: -7px;
  left: 0;
  width: 0px;
}

body.homepage.child_management section#tools .segment.tool svg {
  color: #2da3ed;
}

body.homepage.child_management section#first-benefit {
  background-image: url(./../img/public_assets/management/management-activity.svg);
  background-size: cover;
  padding-top: 140px;
  padding-bottom: 140px;
}

body.homepage.child_management section#second-benefit {
  background-image: url(./../img/public_assets/support_white.svg);
  background-size: cover;
  padding-top: 140px;
  padding-bottom: 140px;
  margin-top: -100px;
}

body.homepage.child_management section#third-benefit {
  background-image: url(./../img/public_assets/management/management-activity.svg);
  background-size: cover;
  padding-top: 140px;
  padding-bottom: 140px;
}

body.homepage.child_management footer,
body.homepage.child_notebook footer {
  background-color: #f3f3f3;
}


/* ================================================================
   6. HOMEPAGE — Variante child_notebook
   ================================================================ */

body.homepage.child_notebook section.notebook-communication,
body.presentation-page.child_notebook section.notebook-communication {
  background-image: url(./../img/public_assets/notebook/notebook-communication.svg);
  background-size: cover;
}

body.homepage.child_notebook section.notebook-activity,
body.presentation-page.child_notebook section.notebook-activity {
  background-image: url(./../img/public_assets/notebook/notebook-activity.svg);
  background-size: cover;
}

body.homepage.child_notebook section.notebook-pictures,
body.presentation-page.child_notebook section.notebook-pictures {
  background-image: url(./../img/public_assets/notebook/notebook-pictures.svg);
  background-size: cover;
}

body.homepage.child_notebook h2,
body.presentation-page.child_notebook h2 {
  font-size: 2.5rem;
}


/* ================================================================
   7. HOMEPAGE — Section Offers
   ================================================================ */

/* body.homepage section#offers, body.presentation-page section#offers {
    padding-top: 80px;
    background-image: url(./../img/public_assets/management/offers.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center bottom;
    background-color: #2da3ed;
    position: relative;
    z-index: 10;
} */

@media (min-width: 768px) {
  body.homepage section#offers .clouds,
  body.presentation-page section#offers .clouds {
    background: url(./../img/public_assets/management/background-clouds.svg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 0 110px;
  }
}

@media (max-width: 767.98px) {
  body.homepage section#offers,
  body.presentation-page section#offers {
    background-image: none;
  }
}


/* ================================================================
   8. SUPPORT CLIENT
   ================================================================ */

#support-client-presentation .team .col .avatar {
  margin: auto;
  height: 80px;
  width: 80px;
  margin-bottom: 10px;
  background: url(./../img/public_assets/management/support.png);
  background-size: auto 100%;
  background-position: 0 0;
}


/* ================================================================
   9. CARROUSEL TÉMOIGNAGES
   ================================================================ */

.testimonials-carousel .owl-dots {
  display: flex !important;
  justify-content: center;
  margin-top: 15px;
}

.testimonials-carousel .owl-dot {
  background: none;
  border: none;
  cursor: pointer;
}

.testimonials-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  display: block;
  transition: all 0.3s;
}

.testimonials-carousel .owl-dot.active span {
  background: #2da3ed;
  transform: scale(1.2);
}


/* ================================================================
   10. HOMEPAGE MARKETPLACE — Layout & Présentation
   ================================================================ */

.homepage-marketplace {
  margin-top: 112px;
}

@media (min-width: 768px) {
  .homepage-marketplace {
    margin-top: 160px;
  }
}

.homepage-marketplace__presentation {
  border-radius: 64px;
  padding-top: 16px;
  padding-bottom: 0;
  background-image: none !important;
  background-color: unset;
  background-size: unset;
}

.homepage-marketplace__presentation .btn--huge.btn--left-icon svg {
  margin-right: 12px;
  height: 24px !important;
  width: 24px !important;
}

@media (min-width: 768px) {
  .homepage-marketplace__presentation {
    padding-top: 48px;
  }
}

.homepage-marketplace__presentation #rating {
  width: 300px;
  font-size: 1.2rem;
}

.homepage-marketplace__presentation #rating .star-rating {
  align-items: start;
  justify-content: left;
}

.homepage-marketplace__presentation .img-container {
  position: relative;
}

.homepage-marketplace__presentation .img-container .bird-yellow {
  position: absolute;
  margin-top: -32px;
  left: 0;
  margin-left: 6px;
  top: 0;
}

@media (min-width: 992px) {
  .homepage-marketplace__presentation .img-container .bird-yellow {
    left: 7.5%;
    margin-left: 0;
  }
}

.homepage-marketplace__presentation .img-container .cloud-small-left {
  position: absolute;
  left: 28%;
  bottom: 3%;
}

.homepage-marketplace__presentation .img-container .cloud--big {
  position: absolute;
  top: 0;
  left: 50%;
  margin-top: -24px;
}

.homepage-marketplace__presentation .img-container .cloud-small-right {
  position: absolute;
  right: 5%;
  top: 0;
  margin-top: -16px;
}

.homepage-marketplace__presentation .img-container .bird-red {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: -32px;
  margin-right: 6px;
}

@media (min-width: 768px) {
  .homepage-marketplace__presentation .img-container .bird-red {
    margin-top: -40px;
    margin-right: 6px;
  }
}

@media (min-width: 992px) {
  .homepage-marketplace__presentation .img-container .bird-red {
    margin-right: -60px;
    margin-top: -56px;
  }
}

@media (min-width: 768px) {
  .homepage-marketplace__presentation .mockup-image-container {
    transform: translateX(10%);
  }
}


/* ================================================================
   11. HOMEPAGE MARKETPLACE — Background modifiers
   ================================================================ */

.homepage-marketplace__back--light-pink {
  background-color: #FDF0F7;
}

.homepage-marketplace__back--light-green {
  background-color: #ebfffb;
}

.homepage-marketplace__back--green-24 {
  background-color: rgba(29, 203, 140, 0.24);
}

.homepage-marketplace__back--light-orange {
  background-color: #FCF6E8;
}

.homepage-marketplace__back--orange-24 {
  background-color: rgba(247, 184, 68, 0.24);
}

.homepage-marketplace__back--light-teal {
  background-color: #ebfffb;
}

.homepage-marketplace__back--teal-24 {
  background-color: rgba(0, 181, 173, 0.24);
}

.homepage-marketplace__pt-toolbar-spacing {
  margin-bottom: 60px;
  height: 80px;
  margin-top: -100px;
}

@media (min-width: 768px) {
  .homepage-marketplace__pt-toolbar-spacing {
    display: none;
  }
}


/* ================================================================
   12. HOMEPAGE MARKETPLACE — Find Your Nanny
   ================================================================ */

.homepage-marketplace__find-your-nanny {
  margin-top: 50px;
  padding: 16px;
  border-radius: 12px;
  padding-bottom: 42px;
  background-color: #EBFFFB;
}

@media (min-width: 768px) {
  .homepage-marketplace__find-your-nanny {
    background-image: none;
    padding-top: 28px;
    border-radius: 50px;
    margin-top: 80px;
  }
}

@media (min-width: 992px) {
  .homepage-marketplace__find-your-nanny {
    background-image: url("homepage/backgrounds/nounou_top/parent/find-your-nanny-background-logo.svg");
    background-position: 70% top;
    background-repeat: no-repeat;
    padding-top: 42px;
  }
}

@media (max-width: 767.98px) {
  .homepage-marketplace__find-your-nanny .image-left {
    width: 64%;
  }

  .homepage-marketplace__find-your-nanny .image-right {
    width: 94%;
    padding-left: 40%;
  }
}


/* ================================================================
   13. HOMEPAGE MARKETPLACE — Reviews
   ================================================================ */

.homepage-marketplace__reviews {
  border-radius: 12px;
  padding-bottom: 80px;
  padding-top: 80px;
  background-color: #F5F5F5;
}

#review-last-section {
  margin-bottom: 10rem !important;
}

@media (min-width: 768px) {
  .homepage-marketplace__reviews {
    margin-top: 80px;
    padding-bottom: 80px;
    border-radius: 50px;
  }
}

/* .homepage-marketplace__reviews .left-content {
  margin-top: 16px;
  padding-left: 32px;
}
@media (min-width: 768px) {
  .homepage-marketplace__reviews .left-content {
    margin-top: 132px;
    padding-left: 0;
  }
} */


/* ================================================================
   14. HOMEPAGE MARKETPLACE — Services & Description
   ================================================================ */

.homepage-marketplace__services-description {
  margin-top: 64px;
}

.homepage-marketplace__services-description .icon {
  height: 44px;
  width: 44px;
}

.homepage-marketplace__services-description .dark-orange-text {
  color: #a36e13;
}

.homepage-marketplace__services-description .card {
  border-radius: 20px;
}

.homepage-marketplace__parent-choise {
  background: transparent;
  margin-top: 0;
  border-radius: 0;
  padding: 48px 64px;
}

.homepage-marketplace__childminder-management {
  padding-top: 80px;
  padding-bottom: 80px;
}

.homepage-marketplace__services {
  margin-top: 80px;
}

.homepage-marketplace__services .logo {
  width: 62%;
}

@media (min-width: 768px) {
  .homepage-marketplace__services .logo {
    width: 18%;
  }
}

.homepage-marketplace__services .icon {
  height: 44px;
  width: 44px;
}

.homepage-marketplace__services .dark-orange-text {
  color: #a36e13;
}

.homepage-marketplace__services .title-section {
  border-radius: 20px;
}

.homepage-marketplace__services .services-card {
  border-radius: 20px;
  border: 8px solid rgba(5, 32, 50, 0.08);
}


/* ================================================================
   15. HOMEPAGE MARKETPLACE — How It Works (stepper)
   ================================================================ */

.homepage-marketplace__how-it-works {
  margin-top: 80px;
}

.homepage-marketplace__how-it-works .button-section {
  margin-top: 32px;
}

@media (min-width: 768px) {
  .homepage-marketplace__how-it-works .button-section {
    margin-top: 80px;
  }
}

.homepage-marketplace__how-it-works .line-row {
  width: 84%;
}

.homepage-marketplace__how-it-works .step-line-left {
  position: absolute;
  left: 36px;
  top: 40px;
  bottom: -10px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 5px, #1b4159 5px, #1b4159 10px, transparent 10px, transparent 15px);
  z-index: 1;
}

.homepage-marketplace__how-it-works .step-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.homepage-marketplace__how-it-works .step-circle-mobile {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  border: 1px solid #1b4159;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #1b4159;
  flex-shrink: 0;
  margin-right: 15px;
  z-index: 3;
  position: relative;
}

.homepage-marketplace__how-it-works .row.row-cols-1 .col:last-child .step-line-left {
  display: none;
}

.homepage-marketplace__how-it-works .step-connector-line {
  flex: 1 1 auto;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #1b4159 0px, #1b4159 8px, transparent 8px, transparent 16px);
  background-size: 16px 2px;
  background-repeat: repeat-x;
  background-position: center center;
  margin-left: 8px;
  margin-right: 8px;
  position: relative;
  top: 0;
}

.homepage-marketplace__how-it-works .step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #1b4159;
  position: relative;
  z-index: 2;
}


/* ================================================================
   16. HOMEPAGE MARKETPLACE — Zen Mode
   ================================================================ */

.homepage-marketplace__zen-mode {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .homepage-marketplace__zen-mode {
    margin-top: 80px;
  }
}

.homepage-marketplace__zen-mode .illustration-icon {
  max-height: 60px;
}

.homepage-marketplace__zen-mode .left-content {
  background-color: #ebfffb;
  border-radius: 20px;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .homepage-marketplace__zen-mode .left-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 992px) {
  .homepage-marketplace__zen-mode .left-content {
    padding-left: 62px;
    padding-right: 62px;
  }
}

.homepage-marketplace__zen-mode .right-content {
  background-color: #FCF6E8;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 20px;
}

@media (min-width: 768px) {
  .homepage-marketplace__zen-mode .right-content {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (min-width: 992px) {
  .homepage-marketplace__zen-mode .right-content {
    padding-left: 62px;
    padding-right: 62px;
  }
}


/* ================================================================
   17. HOMEPAGE MARKETPLACE — Help Section, Offers, Management Tool
   ================================================================ */

.homepage-marketplace__help-section {
  margin-top: 80px;
  background-color: #F5F5F5;
  border-radius: 20px;
}

@media (max-width: 991.98px) {
  .homepage-marketplace__help-section .right-image-section {
    padding-top: 100px;
  }

  .homepage-marketplace__help-section .right-illustration {
    max-width: min(100%, 100px);
    height: min(100%, 100px);
  }
}

.homepage-marketplace__help-section .card {
  border-radius: 20px;
}

.homepage-marketplace__offers {
  margin-top: 48px;
}

@media (min-width: 768px) {
  .homepage-marketplace__offers {
    margin-top: 80px;
  }
}

.homepage-marketplace__offers .offers-cards {
  background-color: rgba(45, 163, 237, 0.08);
  border-radius: 20px;
}

.homepage-marketplace__management-tool {
  margin-top: 80px;
}

@media (max-width: 767.98px) {
  .homepage-marketplace__management-tool .img {
    width: 40%;
  }
}

.homepage-marketplace__management-tool .d-flex {
  border-radius: 20px;
}


/* ================================================================
   18. HOMEPAGE MARKETPLACE — FAQ
   ================================================================ */

.homepage-marketplace__faq {
  margin-top: 80px;
}

#faqAccordion .emoji {
  margin-right: 10px !important;
}

#faqAccordion .accordion-button {
  font-size: 1.2rem;
}

.homepage-marketplace__faq .faq-card {
  background-color: rgba(5, 32, 50, 0.08);
  border-radius: 20px;
}


/* ================================================================
   19. LANDING MARKETPLACE
   ================================================================ */

.landing_marketplace #main-functions h3 {
  font-weight: 500 !important;
}

.landing_marketplace .homepage-marketplace__contacts {
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url(./../img/public_assets/support_pink.svg);
  background-size: cover;
}

.landing_marketplace .homepage-marketplace__messages {
  background-image: url(./../img/public_assets/support_white.svg);
  background-size: cover;
  margin-top: -100px;
  padding-top: 80px;
  padding-bottom: 120px;
}

.landing_marketplace .homepage-marketplace__topnounou {
  background-image: url(./../img/public_assets/wave_pink.svg);
  background-size: cover;
  margin-top: -100px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.landing_marketplace .homepage-marketplace__find-your-nanny {
  background: url(./../img/public_assets/support_white.svg);
  padding-top: 130px;
  padding-bottom: 130px;
  margin-top: -60px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
}

.landing_marketplace .visitor-topsection__background {
  background-repeat: no-repeat;
  position: relative;
  background-size: auto 300px;
  background-position-x: 50%;
  height: 300px;
  width: 100%;
}

.landing_marketplace .visitor-topsection__background-effect {
  background-image: url(./../img/public_assets/white-search.svg) !important;
  position: absolute;
  bottom: 0;
  height: 60px;
  z-index: 2;
  width: 100%;
}


/* ================================================================
   20. BADGES — Profil & Recommandations
   ================================================================ */

.listing-profile__certified-recommendation {
  border-radius: 12px;
  padding: 4px 10px;
  color: rgb(196, 151, 68);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.listing-profile__certified-recommendation--gold {
  background-color: #fbf8db;
  color: #cc8709;
}

.listing-profile__certified-recommendation--bronze {
  background-color: #edd9c3;
  color: #8c653d;
}

.listing-profile__certified-recommendation--silver {
  background-color: #f5f5f5;
  color: #5f707c;
}

.listing-profile__certified-recommendation img {
  width: 20px !important;
}

.status-user .tag.tag--circular {
  margin-right: 4px !important;
}


/* ================================================================
   21. ANNUAIRE — Fiches & Badges
   ================================================================ */

.badge--superassmat {
  position: absolute;
  top: 30px;
  right: 10px;
  background-color: #fff3cd;
  color: #856404;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.directory-item .card-block {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  overflow: hidden;
}

.directory-item .card-block:hover {
  transform: translateY(-3px);
}

.directory-item .cards-list .col .card-block .image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.directory-item .card__content .title {
  font-size: 1.1rem;
}

.directory-item .card-block__main .image {
  width: 80px !important;
  height: 80px !important;
}

.directory-item .comment {
  font-size: 0.5rem;
  text-align: left;
}


/* ================================================================
   22. ANNUAIRE — Autres annuaires (Other Directories)
   ================================================================ */

.otherdirectories-text {
  color: #64748b;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.otherdirectories-card {
  background-color: rgba(45, 163, 237, 0.08);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  height: 100%;
}

.otherdirectories-card:hover {
  background-color: #e6f3ff;
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.otherdirectories-card h5 {
  color: #005B85;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.otherdirectories-card a {
  display: block;
  color: #0284c7;
  text-decoration: none;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.otherdirectories-card a:hover {
  text-decoration: underline;
  color: #0369a1;
}


/* ================================================================
   23. ANNUAIRE — Autres services (Other Services)
   ================================================================ */

.otherservice-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #f0f9ff;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  height: 100%;
}

.otherservice-card a {
  display: block;
  color: #0284c7;
  text-decoration: none;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.otherservice-card a:hover {
  text-decoration: underline;
  color: #0369a1;
}

.otherservice-card:hover {
  background-color: #e0f2fe;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.otherservice-card .icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.otherservice-card h6 {
  margin: 0;
  color: #005B85;
  font-size: 0.95rem;
}

.otherservice-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #475569;
}

.otherservices-wrapper {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* .otherservices-wrapper .otherservice-card {
  flex: 1 1 300px;
  max-width: 360px;
} */


/* ================================================================
   24. LANDING DIRECTORY — Hero & Scroll Columns
   ================================================================ */

#landing-directory #hero {
  display: flex;
  align-items: center;
  overflow: hidden;
  max-height: 700px;
}

#landing-directory #hero .container-fluid {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

#landing-directory #hero #left-col {
  flex: 1;
  justify-content: center;
  height: 100%;
}

.trust-badge {
  z-index: 10;
  transition: transform 0.3s ease;
}

.trust-badge:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.scroll-columns {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.scroll-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: scroll-vertical 140s linear infinite;
}

.scroll-column.reverse {
  animation-direction: reverse;
}

.scroll-column img {
  border-radius: 20px;
  width: 100%;
  max-width: 197px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes scroll-vertical {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

#landing-directory section.homepage-marketplace__directory {
  background-image: url(./../img/public_assets/wave-blue.svg);
  background-size: cover;
  padding-top: 140px;
  padding-bottom: 140px;
}


/* ================================================================
   25. RESPONSIVE — 1600px (grands écrans)
   ================================================================ */

@media (max-width: 1600px) {
  .h1-title {
    font-size: 2.2rem;
  }

  #landing-directory #hero {
    max-height: 100vh;
    border-radius: 0;
  }

  #landing-directory #hero #left-col {
    margin-left: 20px;
    padding-left: 2rem;
  }
}


/* ================================================================
   26. RESPONSIVE — 992px (tablettes)
   ================================================================ */

@media (max-width: 991.98px) {
  #landing-directory #hero {
    height: auto;
    display: block;
    max-height: none;
    margin-top: 0;
  }

  #landing-directory #hero #left-col {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 2rem;
  }

  .track-auto-scroll {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: max-content;
    animation: scroll-horizontal 140s linear infinite;
  }

  .track-auto-scroll img {
    width: 140px;
    height: auto;
    border-radius: 12px;
    flex-shrink: 0;
    object-fit: cover;
  }

  @keyframes scroll-horizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .badge-mobile-opti {
    transform: translate(-50%, -50%) scale(0.85);
    pointer-events: none;
    white-space: nowrap;
  }

  .otherdirectories-card {
    text-align: center;
  }
}


/* ================================================================
   27. RESPONSIVE — 768px (mobile)
   ================================================================ */

@media (max-width: 768px) {
  body h1 { font-size: 2.1rem !important; }
  body h2 { font-size: 1.9rem; line-height: 2.4rem; }
  body h3 { font-size: 1.4rem; }
  body h4.text-secondary { font-size: 1rem; }

  .visitor .section { margin-top: 2.5rem; margin-bottom: 2.5rem; }

  .illustration {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  .h1-title { font-size: 2rem !important; }

  .homepage-marketplace__presentation #rating { margin-top: 2rem; }
  .landing_marketplace .homepage-marketplace__contacts { padding-top: 100px; }
  .landing_marketplace section#main-functions .function img { width: 75px; }

  #review-last-section { margin-bottom: 0 !important; }

  .directory-item .card-block__main { display: block !important; }
  .directory-item .card-block__main .image { width: 50px !important; height: 50px !important; margin-bottom: 15px; }
  .directory-item .card-block__main .image img { width: 50px !important; height: 50px !important; }

  #landing-directory .font--large { font-size: 18px; }

  .otherservices-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    flex-direction: row;
    align-items: stretch;
  }

  .otherservice-card {
    flex: 0 0 80%;
    min-width: 260px;
    scroll-snap-align: start;
    width: 100%;
    max-width: 100%;
  }
}


/* ================================================================
   28. KITFAMILY OFFER — Ecran post-annonce
   ================================================================ */

/* --- Animations --- */
@keyframes kitfamily-scale-in {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes kitfamily-float-up {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* --- Body --- */
body.nt-mkt-kitfamily {
  font-family: 'Inter', sans-serif;
  background-color: #F8FBFD;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* --- Container --- */
.kitfamily-screen {
  width: 100%;
  max-width: 400px;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

@media (min-width: 640px) {
  .kitfamily-screen {
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(15, 45, 64, 0.08);
    min-height: auto;
  }
}

.kitfamily-screen__scroll {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 112px;
}

/* --- Confetti --- */
.kitfamily-confetti {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 192px;
  opacity: 0.4;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='50' r='4' fill='%232DA3ED' /%3E%3Crect x='120' y='30' width='6' height='6' transform='rotate(45 123 33)' fill='%2321C077' /%3E%3Crect x='70' y='130' width='4' height='10' transform='rotate(-25 72 135)' fill='%23FACC15' /%3E%3Ccircle cx='160' cy='120' r='3.5' fill='%23F87171' /%3E%3Crect x='30' y='150' width='5' height='5' transform='rotate(15 32 152)' fill='%232DA3ED' /%3E%3Ccircle cx='90' cy='20' r='3' fill='%23F87171' /%3E%3Crect x='170' y='50' width='4' height='8' transform='rotate(20 172 54)' fill='%23FACC15' /%3E%3C/svg%3E");
  background-size: 130px 130px;
}

/* --- Header succes --- */
.kitfamily-header {
  padding: 40px 24px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.kitfamily-header__check {
  width: 64px;
  height: 64px;
  background: #E8F5EE;
  border: 1px solid rgba(33, 192, 119, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  animation: kitfamily-scale-in 0.5s ease-out forwards;
}

.kitfamily-header__title {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #1b4159;
  font-size: 1.5rem !important;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.3px;
  animation: kitfamily-float-up 0.6s ease-out 0.2s forwards;
  opacity: 0;
}

/* --- Benefits card --- */
.kitfamily-benefits {
  padding: 0 20px 8px;
  animation: kitfamily-float-up 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

.kitfamily-benefits__card {
  background: linear-gradient(135deg, #F0F7FC, #F8FBFD);
  border: 1px solid rgba(45, 163, 237, 0.2);
  border-radius: 16px;
  padding: 24px 20px 20px;
  position: relative;
}

.kitfamily-benefits__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #2DA3ED;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* --- Single benefit row --- */
.kitfamily-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.kitfamily-benefit + .kitfamily-benefit {
  margin-top: 16px;
}

.kitfamily-benefit__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.kitfamily-benefit__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1b4159;
  margin: 0;
}

.kitfamily-benefit__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #5f707c;
  line-height: 1.4;
  margin: 2px 0 0;
}

/* --- Social proof --- */
.kitfamily-proof {
  text-align: center;
  padding: 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1b4159;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  animation: kitfamily-float-up 0.6s ease-out 0.4s forwards;
}

/* --- Sticky CTA --- */
.kitfamily-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #e2e8f0;
  padding: 20px 20px 24px;
  z-index: 20;
}

@media (min-width: 640px) {
  .kitfamily-cta {
    border-radius: 0 0 32px 32px;
  }
}

.kitfamily-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 16px;
  background: #2DA3ED;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(45, 163, 237, 0.3);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  cursor: pointer;
}

.kitfamily-cta__btn:hover {
  background: #2188C7;
  box-shadow: 0 8px 20px rgba(33, 136, 199, 0.4);
  transform: translateY(-1px);
}

.kitfamily-cta a:hover {
  color: white;
}

.kitfamily-cta__btn:active {
  transform: translateY(0);
}

.kitfamily-thanks__cta:hover {
  color: white;
}


/* ================================================================
   29. KITFAMILY THANKS — Page de confirmation d'achat
   ================================================================ */

body.nt-mkt-kitfamily--thanks {
  background: #e5f0f6;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.kitfamily-thanks {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 24px;
}

/* --- Content card --- */
.kitfamily-thanks__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  text-align: center;
  animation: kitfamily-float-up 0.6s ease-out forwards;
}

/* --- Check circle --- */
.kitfamily-thanks__check {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #21C077, #10b981);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(33, 192, 119, 0.3);
  animation: kitfamily-scale-in 0.5s ease-out forwards;
}

/* --- Typography --- */
.kitfamily-thanks__title {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1b4159;
  margin: 0 0 8px;
}

.kitfamily-thanks__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #5f707c;
  line-height: 1.5;
  margin: 0 0 32px;
}

/* --- Benefits list --- */
.kitfamily-thanks__benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  margin-bottom: 32px;
}

.kitfamily-thanks__benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(45, 163, 237, 0.12);
  border-radius: 16px;
  padding: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.kitfamily-thanks__benefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.kitfamily-thanks__benefit-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.kitfamily-thanks__benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #eef8fe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kitfamily-thanks__benefit-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1b4159;
  display: block;
  margin-bottom: 2px;
}

.kitfamily-thanks__benefit-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #5f707c;
  line-height: 1.4;
  margin: 0;
}

/* --- CTA --- */
.kitfamily-thanks__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: #2DA3ED;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(45, 163, 237, 0.3);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  cursor: pointer;
}

.kitfamily-thanks__cta:hover {
  background: #2188C7;
  box-shadow: 0 8px 24px rgba(33, 136, 199, 0.4);
  transform: translateY(-2px);
}

.kitfamily-thanks__cta:active {
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 480px) {
  .kitfamily-thanks {
    padding: 16px;
  }

  .kitfamily-thanks__title {
    font-size: 24px;
  }

  .kitfamily-thanks__subtitle {
    font-size: 14px;
  }

  .kitfamily-thanks__benefit {
    padding: 14px;
  }
}


/* ================================================================
   LANDING KIT DECOUVERTE (.nt-lk-*)
   ================================================================ */

/* NAV NT */
.navigation_menu--desktop-only { display: none !important; }
.container-lg:has(.nt-kit-family) { max-width: 100% !important; }

/* ---- HERO ---- */
.nt-lk-hero { padding: 64px 0 48px; background: #fff; overflow: hidden; }
.nt-lk-hero__badge { display: inline-block; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; color: #fff; background: #1b4159; padding: 6px 18px; border-radius: 50px; margin-bottom: 24px; }
.nt-lk-hero__title { font-family: 'Rubik', sans-serif !important; font-size: clamp(1.8rem, 4.5vw, 2.6rem); font-weight: 700; color: #1b4159; line-height: 1.15; margin-bottom: 16px; }
.nt-lk-hero__title-accent { color: #2da3ed; display: block; }
@media (min-width: 992px) { .nt-lk-hero__title-accent { display: inline; } }
.nt-lk-hero__subtitle { font-family: 'Inter', sans-serif; font-size: 17px; color: #5f707c; line-height: 1.6; margin-bottom: 40px; max-width: 440px; }

/* Hero CTA */
.nt-lk-hero__cta { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; border-radius: 50px; background: #2da3ed; color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; text-decoration: none; border: none; cursor: pointer; transition: opacity 0.18s ease, transform 0.15s ease; }
.nt-lk-hero__cta:hover { opacity: 0.88; transform: translateY(-1px); color: #fff; text-decoration: none; }
.nt-lk-hero__price-note { display: block; font-size: 14px; color: #5f707c; margin-top: 8px; }

/* Hero video button */
.nt-lk-hero__video-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; background: #2da3ed; color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; border: none; cursor: pointer; margin-top: 24px; transition: opacity 0.18s ease, transform 0.15s ease; }
.nt-lk-hero__video-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.nt-lk-hero__video-btn i { font-size: 20px; }

/* Hero checklist */
.nt-lk-hero__checklist { list-style: none; padding: 0; margin: 0 0 40px; }
.nt-lk-hero__checklist li { display: flex; align-items: center; gap: 10px; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 500; color: #1b4159; padding: 6px 0; line-height: 1.5; }
.nt-lk-hero__checklist li i { color: #2da3ed; font-size: 18px; flex-shrink: 0; }

/* Hero phone scene + chips */
.nt-lk-hero__phone-scene { position: relative; display: flex; justify-content: center; align-items: center; padding: 40px 24px; }
.nt-lk-hero--video .nt-lk-hero__chip { position: absolute; z-index: 2; transition: opacity 0.3s ease, transform 0.3s ease; }
.nt-lk-hero__chip--secure { left: -5%; top: 45%; }
.nt-lk-hero__chip--stress { right: -2%; top: 8%; }
.nt-lk-hero__chip--payment { right: -4%; bottom: 12%; }
.nt-lk-hero__chip-icon--check { background: #e0f5ec; color: #059669; }
.nt-lk-hero__chip-icon--coin { background: #fef3c7; color: #d97706; }
.nt-lk-hero__mascot { position: absolute; top: -2%; right: 8%; z-index: 2; transition: opacity 0.3s ease; }

@media (max-width: 991px) {
  .nt-lk-hero__phone-scene { padding: 40px 16px; margin-top: 16px; }
  .nt-lk-hero__chip--secure { left: 0; top: 30%; }
  .nt-lk-hero__chip--stress { right: 0; top: 5%; }
  .nt-lk-hero__chip--payment { right: 0; bottom: 8%; }
  .nt-lk-hero__mascot { right: 4%; top: -4%; }
}
@media (max-width: 575px) {
  .nt-lk-hero__phone-scene { padding: 8px 4px; }
  .nt-lk-hero--video .nt-lk-hero__chip { padding: 6px 10px; }
  .nt-lk-hero--video .nt-lk-hero__chip-icon { width: 28px; height: 28px; font-size: 13px; }
  .nt-lk-hero--video .nt-lk-hero__chip-label { font-size: 11px; }
  .nt-lk-hero__chip--secure { left: -2%; }
  .nt-lk-hero__chip--stress { right: -2%; }
  .nt-lk-hero__chip--payment { right: -2%; }
  .nt-lk-hero__mascot { top: -6%; right: 2%; }
  .nt-lk-hero__mascot svg { width: 36px; height: 36px; }
}

/* Hero video wrapper */
.nt-lk-hero__video-wrap { display: flex; justify-content: center; align-items: center; }
.nt-lk-hero__video-facade { position: relative; display: block; width: 100%; max-width: 320px; border: none; padding: 0; background: none; cursor: pointer; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.nt-lk-hero__video-facade:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 48px rgba(45, 163, 237, 0.2); }
.nt-lk-hero__video-thumb { width: 100%; max-height: 350px; aspect-ratio: 9 / 16; object-fit: cover; display: block; }
.nt-lk-hero__video-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; border-radius: 50%; background: rgba(45, 163, 237, 0.95); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 40px; box-shadow: 0 0 0 0 rgba(45, 163, 237, 0.5); animation: nt-lk-pulse 1s ease-out infinite; transition: transform 0.2s ease, background 0.2s ease; }
@keyframes nt-lk-pulse { 0% { box-shadow: 0 0 0 0 rgba(45, 163, 237, 0.5); } 70% { box-shadow: 0 0 0 20px rgba(45, 163, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(45, 163, 237, 0); } }
.nt-lk-hero__video-facade:hover .nt-lk-hero__video-play { transform: translate(-50%, -50%) scale(1.12); background: rgba(45, 163, 237, 1); animation: none; box-shadow: 0 6px 24px rgba(45, 163, 237, 0.5); }
.nt-lk-hero__video-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%); color: #fff; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 6px; }
.nt-lk-hero__video-iframe { width: 100%; max-width: 320px; aspect-ratio: 9 / 16; border-radius: 20px; border: none; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); }

@media (max-width: 991px) { .nt-lk-hero__video-facade, .nt-lk-hero__video-iframe { max-width: 280px; } }
@media (max-width: 575px) { .nt-lk-hero__video-facade, .nt-lk-hero__video-iframe { max-width: 260px; } .nt-lk-hero__video-play { width: 64px; height: 64px; font-size: 32px; } }

/* Hero image + floating chips */
.nt-lk-hero__visual { position: relative; display: flex; justify-content: center; align-items: center; }
.nt-lk-hero__img { width: 100%; max-width: 460px; border-radius: 20px; object-fit: cover; aspect-ratio: 4 / 3; }
.nt-lk-hero__chip { position: absolute; display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 12px; padding: 10px 16px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); white-space: nowrap; z-index: 2; }
.nt-lk-hero__chip-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.nt-lk-hero__chip-icon--phone { background: #e0f5ec; color: #059669; }
.nt-lk-hero__chip-icon--contract { background: #eef8fe; color: #2da3ed; }
.nt-lk-hero__chip-icon--chat { background: #f0e6ff; color: #7c3aed; }
.nt-lk-hero__chip-label { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: #1b4159; line-height: 1.3; }
.nt-lk-hero__chip-label small { display: block; font-weight: 400; font-size: 11px; color: #5f707c; }
.nt-lk-hero__chip--phone { top: -5%; left: 5%; }
.nt-lk-hero__chip--contract { top: 5%; right: -5%; }
.nt-lk-hero__chip--chat { bottom: 10%; right: -8%; }

@media (max-width: 991px) {
  .nt-lk-hero { padding: 40px 0; text-align: center; }
  .nt-lk-hero__subtitle { max-width: 100%; }
  .nt-lk-hero__visual { margin-top: 40px; }
  .nt-lk-hero__chip--phone { top: -4%; left: 0; }
  .nt-lk-hero__chip--contract { top: 2%; right: -2%; }
  .nt-lk-hero__chip--chat { bottom: 5%; right: 0; }
}
@media (max-width: 575px) {
  .nt-lk-hero__chip { padding: 8px 12px; font-size: 12px; }
  .nt-lk-hero__chip-icon { width: 30px; height: 30px; font-size: 14px; }
}

/* ---- SOCIAL PROOF ---- */
.nt-lk-proof { padding: 16px 0; background: #fff; border-top: 1px solid #e8e8e8; }
.nt-lk-proof__stat-value { font-family: 'Rubik', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; color: #2da3ed; line-height: 1.1; }
.nt-lk-proof__stat-label { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; color: #1b4159; }
.nt-lk-proof__trust-score { font-family: 'Rubik', sans-serif; font-size: 1.6rem; font-weight: 700; color: #1b4159; }
.nt-lk-proof__trust-stars { display: flex; gap: 3px; }
.nt-lk-proof__trust-star { width: 28px; height: 28px; background: #00b67a; display: flex; align-items: center; justify-content: center; border-radius: 3px; }
.nt-lk-proof__trust-star i { color: #fff; font-size: 14px; }
.nt-lk-proof__trust-star--half { background: linear-gradient(90deg, #00b67a 50%, #dcdce6 50%); }
.nt-lk-proof__trust-label { font-size: 14px; font-weight: 600; color: #1b4159; line-height: 1.3; }
.nt-lk-proof__trust-label small { display: block; font-weight: 400; color: #5f707c; }

/* ---- STEPS ---- */
.nt-lk-steps { padding: 80px 0; background: #eef8fe; }
.nt-lk-steps__title { font-family: 'Rubik', sans-serif; font-size: 28px; font-weight: 700; color: #1b4159; text-align: center; margin-bottom: 64px; }
.nt-lk-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto 30px; }
.nt-lk-step { text-align: center; background: #fff; border-radius: 16px; padding: 24px 16px 16px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); border: 1px solid rgba(0, 0, 0, 0.04); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.nt-lk-step:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(45, 163, 237, 0.12); }
.nt-lk-step__icon { width: 56px; height: 56px; border-radius: 50%; background: #2da3ed; color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 22px; box-shadow: 0 4px 14px rgba(45, 163, 237, 0.3); }
.nt-lk-step__heading { font-family: 'Rubik', sans-serif; font-size: 17px; font-weight: 700; color: #1b4159; margin-bottom: 8px; }
.nt-lk-step__text { font-family: 'Inter', sans-serif; font-size: 14px; color: #5f707c; line-height: 1.65; margin: 0; }
@media (max-width: 767px) { .nt-lk-steps__grid { grid-template-columns: 1fr; max-width: 400px; } }

/* ---- BONUS ---- */
.nt-lk-bonus { max-width: 760px; margin: 0 auto; }
.nt-lk-bonus__arrow { text-align: center; margin-bottom: 16px; color: #2da3ed; font-size: 24px; opacity: 0.45; animation: nt-lk-bounce 2s ease infinite; }
@keyframes nt-lk-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
.nt-lk-bonus__card { display: flex; align-items: center; gap: 40px; background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); border: 1px solid rgba(0, 0, 0, 0.04); }
.nt-lk-bonus__left { flex: 1; }
.nt-lk-bonus__badge { display: inline-block; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; color: #059669; background: #ecfdf5; padding: 4px 12px; border-radius: 50px; margin-bottom: 16px; }
.nt-lk-bonus__heading { font-family: 'Rubik', sans-serif; font-size: 22px; font-weight: 700; color: #1b4159; margin-bottom: 8px; }
.nt-lk-bonus__text { font-family: 'Inter', sans-serif; font-size: 16px; color: #5f707c; line-height: 1.6; margin: 0; }
.nt-lk-bonus__right { flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%; background: #eef8fe; color: #2da3ed; display: flex; align-items: center; justify-content: center; font-size: 32px; }
@media (max-width: 575px) { .nt-lk-bonus__card { flex-direction: column; text-align: center; gap: 16px; padding: 24px; } .nt-lk-bonus__right { order: -1; } }

/* ---- PRICING ---- */
.nt-lk-pricing { padding: 64px 0; background: #fff; }
.nt-lk-pricing__title { font-family: 'Rubik', sans-serif; font-size: 28px; font-weight: 700; color: #1b4159; text-align: center; margin-bottom: 48px; }
.nt-lk-card { background: #fff; border: 1.5px solid #e8e8e8; border-radius: 20px; overflow: hidden; max-width: 760px; margin: 0 auto; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06); }
.nt-lk-card__features { padding: 40px; }
.nt-lk-card__name { font-family: 'Rubik', sans-serif; font-size: 22px; font-weight: 700; color: #2da3ed; margin-bottom: 4px; }
.nt-lk-card__tagline { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; font-style: italic; color: #2da3ed; margin-bottom: 24px; }
.nt-lk-card__list { list-style: none; padding: 0; margin: 0 0 24px; }
.nt-lk-card__list li { display: flex; align-items: flex-start; gap: 10px; font-family: 'Inter', sans-serif; font-size: 16px; color: #1b4159; padding: 6px 0; line-height: 1.5; }
.nt-lk-card__list li i { color: #2da3ed; font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.nt-lk-card__bonus { display: inline-flex; align-items: center; gap: 8px; background: #e0f5ec; color: #059669; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; padding: 10px 20px; border-radius: 50px; }
.nt-lk-card__price-col { background: #f5f8fa; padding: 40px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.nt-lk-card__old-price { font-family: 'Inter', sans-serif; font-size: 16px; color: #5f707c; text-decoration: line-through; margin-bottom: 4px; }
.nt-lk-card__price { font-family: 'Rubik', sans-serif; font-size: 3.2rem; font-weight: 700; color: #1b4159; line-height: 1; margin-bottom: 4px; }
.nt-lk-card__price sup { font-size: 1.4rem; top: -0.8em; }
.nt-lk-card__price-detail { font-family: 'Inter', sans-serif; font-size: 14px; color: #5f707c; margin-bottom: 24px; }
.nt-lk-card__cta { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; background: #2da3ed; color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; text-decoration: none; border: none; cursor: pointer; transition: opacity 0.18s ease, transform 0.15s ease; }
.nt-lk-card__cta:hover { opacity: 0.88; transform: translateY(-1px); color: #fff; text-decoration: none; }
.nt-lk-card__secure { font-size: 12px; color: #5f707c; margin-top: 8px; }
.nt-lk-card__secure i { font-size: 11px; }
@media (max-width: 767px) { .nt-lk-card__features { padding: 24px; } .nt-lk-card__price-col { padding: 24px; } }

/* ---- FAQ ---- */
.nt-lk-faq { padding: 8px 0 40px 0; background: #fff; }
.nt-lk-faq__heading { font-family: 'Rubik', sans-serif; font-size: 28px; font-weight: 700; color: #1b4159; margin-bottom: 8px; }
.nt-lk-faq__subheading { font-family: 'Inter', sans-serif; font-size: 16px; color: #5f707c; line-height: 1.6; }
.nt-lk-faq .accordion-item { border: 1.5px solid #e8e8e8; border-radius: 12px !important; margin-bottom: 8px; overflow: hidden; }
.nt-lk-faq .accordion-button { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; color: #1b4159; padding: 16px 20px; background: #fff; box-shadow: none; }
.nt-lk-faq .accordion-button:not(.collapsed) { background: #fff; color: #1b4159; box-shadow: none; }
.nt-lk-faq .accordion-button::after { color: #5f707c; }
.nt-lk-faq .accordion-body { font-family: 'Inter', sans-serif; font-size: 14px; color: #5f707c; line-height: 1.7; padding: 0 20px 16px; }

/* ---- BOTTOM CTA ---- */
.nt-lk-bottom-cta { padding: 48px 0; background: #eef8fe; text-align: center; }
.nt-lk-bottom-cta__title { font-family: 'Rubik', sans-serif; font-size: 22px; font-weight: 700; color: #1b4159; margin-bottom: 16px; }

/* ---- VIDEO FULLSCREEN OVERLAY ---- */
.nt-lk-video-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(0, 0, 0, 0.92); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.nt-lk-video-overlay.is-active { opacity: 1; visibility: visible; }
.nt-lk-video-overlay__close { position: absolute; top: 16px; right: 16px; width: 48px; height: 48px; border-radius: 50%; border: none; background: rgba(255, 255, 255, 0.15); color: #fff; font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s ease; z-index: 1; }
.nt-lk-video-overlay__close:hover { background: rgba(255, 255, 255, 0.3); }
.nt-lk-video-overlay__inner { width: 90vw; max-width: 400px; aspect-ratio: 9 / 16; }
.nt-lk-video-overlay__iframe { width: 100%; height: 100%; border: none; border-radius: 16px; }


/* ================================================================
   LANDING PAGES — Composants partag&eacute;s (lp-)
   Utilis&eacute;s par les pages Annonces, Gestion, et futures landings.
   Chaque page surcharge --lp-accent via son propre fichier CSS.
   ================================================================ */

:root {
  --lp-accent: #2DA3ED;
  --lp-accent-glow: rgba(45,163,237,.22);
  --lp-accent-border: #D1E9F7;
  --lp-title: #005B85;
  --lp-eyebrow: #0e6ba6;
  --lp-text: #1B4159;
  --lp-text-muted: #36596F;
  --lp-text-light: #5f707c;
  --lp-tint: #f6fafd;
  --lp-card-border: #E3EDF5;
  --lp-card-shadow: 0 1px 2px rgba(16,24,40,.04), 0 10px 28px rgba(16,24,40,.06);
  --lp-card-shadow-hover: 0 16px 40px rgba(16,24,40,.12);
}

.lp-page { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--lp-text); }
.lp-page * { box-sizing: border-box; }

/* ---------- HERO ---------- */
.lp-hero { position: relative; padding: 80px 24px 96px; background: #FFFFFF; overflow: hidden; }
.lp-hero__bird-yellow,
.lp-hero__bird-red { position: absolute; width: 64px; height: auto; pointer-events: none; opacity: 0.9; }
.lp-hero__bird-yellow { top: 40px; left: 4%; transform: rotate(-8deg); }
.lp-hero__bird-red   { top: 80px; right: 5%; width: 56px; transform: rotate(12deg); }

.lp-hero__inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.lp-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FFFFFF; color: var(--lp-eyebrow);
  border-radius: 999px; padding: 6px 14px;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  box-shadow: 0 2px 12px rgba(16,24,40,.18); margin-bottom: 24px;
}
.lp-hero__eyebrow::before { content: "\2605"; color: var(--lp-eyebrow); }

.lp-hero__title {
  font-family: 'Rubik', sans-serif; font-weight: 600;
  font-size: clamp(36px, 5vw, 56px); line-height: 1.05;
  color: var(--lp-title); margin: 0 0 20px; letter-spacing: -0.01em;
}
.lp-hero__title em {
  color: var(--lp-accent); font-style: normal;
  position: relative; display: inline-block;
}
.lp-hero__title em::after {
  content: ""; position: absolute;
  bottom: 4px; left: -2px; right: -2px; height: 10px;
  background: var(--lp-accent-glow); border-radius: 4px; z-index: -1;
}
.lp-hero__desc { font-size: 19px; line-height: 1.55; color: var(--lp-text-muted); margin: 0 0 32px; max-width: 520px; }
.lp-hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.lp-hero__trust { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--lp-text-muted); }
.lp-hero__trust-stars { display: inline-flex; gap: 2px; color: #FBBF24; font-size: 16px; }

/* ---------- BOUTONS ---------- */
.lp-btn-primary, .lp-btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 40px; padding: 12px 24px; min-height: 40px;
  font-size: 15px; line-height: 1.2; font-weight: 700; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 2px solid transparent; cursor: pointer;
}
.lp-btn--huge { min-height: 60px; padding: 14px 32px; font-size: 18px; }
.lp-btn-primary { background: var(--lp-accent); color: #FFF; box-shadow: 0 4px 16px rgba(16,24,40,.34); }
.lp-btn-primary:hover { background: var(--lp-text); color: #FFF; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(16,24,40,.28); text-decoration: none; }
.lp-btn-secondary { background: #FFF; color: var(--lp-text); border-color: var(--lp-accent-border); }
.lp-btn-secondary:hover { border-color: var(--lp-accent); color: var(--lp-text); text-decoration: none; }

/* ---------- WAVE ---------- */
.lp-wave { display: block; width: 100%; height: 48px; line-height: 0; }
.lp-wave svg { display: block; width: 100%; height: 100%; }
.lp-wave--on-tint { background: var(--lp-tint); }

/* ---------- SECTIONS ---------- */
.lp-section { padding: 96px 24px; }
.lp-section__inner { max-width: 1180px; margin: 0 auto; }
.lp-tint-section { background: var(--lp-tint); }
.lp-section__eyebrow {
  color: var(--lp-eyebrow); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  margin: 0 0 12px; text-align: center;
}
.lp-section__title {
  font-family: 'Rubik', sans-serif; font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 2.5rem); line-height: 1.15;
  color: var(--lp-title); margin: 0 0 16px; text-align: center;
}
.lp-section__title em { color: var(--lp-accent); font-style: normal; }
.lp-section__desc {
  font-size: 17px; line-height: 1.55; color: var(--lp-text-light);
  text-align: center; margin: 0 auto 48px; max-width: 660px;
}

/* ---------- FEATURES (3 cartes) ---------- */
.lp-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.lp-feature {
  background: #fff; border-radius: 24px; padding: 34px 30px 30px;
  border: 1px solid var(--lp-card-border); text-align: left;
  box-shadow: var(--lp-card-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.lp-feature:hover { transform: translateY(-7px); box-shadow: var(--lp-card-shadow-hover); }
.lp-feature__img { height: auto; margin: 0 0 20px; display: block; }
.lp-feature__img .icon3d { width: 72px; height: 72px; display: block; filter: drop-shadow(0 8px 14px rgba(16,24,40,.12)); animation: lp-floaty 5s ease-in-out infinite; }
.lp-feature:nth-child(2) .lp-feature__img .icon3d { animation-delay: .8s; }
.lp-feature:nth-child(3) .lp-feature__img .icon3d { animation-delay: 1.6s; }
.lp-feature__title { font-family: 'Rubik', sans-serif; font-weight: 600; font-size: 20px; color: var(--lp-text); margin: 0 0 10px; }
.lp-feature__desc { font-size: 15px; line-height: 1.6; color: var(--lp-text-light); margin: 0; }

/* ---------- CHIPS ---------- */
.lp-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; }
.lp-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: #CDE9FB; color: var(--lp-eyebrow); border: 1px solid transparent;
  border-radius: 8px; padding: 6px 14px; font-size: 16px; font-weight: 700;
}
.lp-chip i { color: var(--lp-eyebrow); font-size: 15px; }
.lp-tint-section .lp-chip { background: #CDE9FB; }

/* ---------- BENEFITS ---------- */
.lp-benefit {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  max-width: 1180px; margin: 0 auto;
}
.lp-benefit--reverse .lp-benefit__text { order: 2; }
.lp-benefit__step {
  display: inline-flex; align-items: center; gap: 8px;
  background: #eef8fe; color: var(--lp-eyebrow); border-radius: 999px;
  padding: 5px 14px; font-size: 13px; font-weight: 700; margin-bottom: 14px;
}
.lp-benefit__title { font-family: 'Rubik', sans-serif; font-weight: 600; font-size: clamp(2.2rem, 4vw, 2.5rem); line-height: 1.2; color: var(--lp-title); margin: 0 0 16px; }
.lp-benefit__title em { color: var(--lp-accent); font-style: normal; }
.lp-benefit__text { font-size: 16px; line-height: 1.65; color: var(--lp-text-muted); margin: 0 0 16px; }
.lp-benefit__list { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; }
.lp-benefit__list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 18px; color: var(--lp-text); font-weight: 600; margin-bottom: 16px;
  text-align: left;
}
.lp-benefit__list li::before {
  content: ""; flex: none; width: 30px; height: 30px; margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2036%2036%27%3E%3Cdefs%3E%3ClinearGradient%20id%3D%27g%27%20x1%3D%270%27%20y1%3D%270%27%20x2%3D%270%27%20y2%3D%271%27%3E%3Cstop%20offset%3D%270%27%20stop-color%3D%27%236FE0B0%27%2F%3E%3Cstop%20offset%3D%271%27%20stop-color%3D%27%231FA45B%27%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20x%3D%273%27%20y%3D%273%27%20width%3D%2730%27%20height%3D%2730%27%20rx%3D%2711%27%20fill%3D%27url%28%23g%29%27%2F%3E%3Crect%20x%3D%273.5%27%20y%3D%273.5%27%20width%3D%2729%27%20height%3D%2713%27%20rx%3D%2710%27%20fill%3D%27%23ffffff%27%20opacity%3D%27.20%27%2F%3E%3Cpath%20d%3D%27M11%2018.6l4.6%204.6L26%2012.4%27%20fill%3D%27none%27%20stroke%3D%27%23ffffff%27%20stroke-width%3D%273.3%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%2F%3E%3C%2Fsvg%3E") center/contain no-repeat;
  filter: drop-shadow(0 3px 5px rgba(16,24,40,.16));
}
.lp-benefit__media { text-align: center; }
.lp-benefit__media img { width: 100%; max-width: 460px; height: auto; }
.lp-benefit-section { background: var(--lp-tint); }

.gp-benefit__list { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; }
/* text-align:left explicite : .lp-benefit__media est centre, sinon le texte des
   puces qui passe sur 2 lignes se retrouve centre au lieu d'etre ferre a gauche. */
.gp-benefit__list li { display: flex; align-items: center; gap: 18px; font-size: 20px; color: #1B4159; font-weight: 600; line-height: 1.35; margin-bottom: 22px; text-align: left; }
.gp-benefit__list li .icon3d { width: 54px; height: 54px; flex: none; filter: drop-shadow(0 5px 9px rgba(16,24,40,.14)); }

/* ---------- SUPPORT ---------- */
.lp-support-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 900px; margin: 8px auto 0; }
.lp-support-card {
  background: #fff; border-radius: 24px; padding: 38px 34px; border: 1px solid var(--lp-card-border); text-align: left;
  box-shadow: var(--lp-card-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.lp-support-card:hover { transform: translateY(-7px); box-shadow: var(--lp-card-shadow-hover); }
.lp-support-card__icon { margin: 0 0 20px; background: none; width: auto; height: auto; border-radius: 0; display: block; }
.lp-support-card__icon .icon3d { width: 76px; height: 76px; display: block; filter: drop-shadow(0 8px 14px rgba(16,24,40,.12)); animation: lp-floaty 5s ease-in-out infinite; }
.lp-support-card:nth-child(2) .lp-support-card__icon .icon3d { animation-delay: .8s; }
.lp-support-card__title { font-family: 'Rubik', sans-serif; font-weight: 600; font-size: 22px; color: var(--lp-text); margin: 0 0 12px; }
.lp-support-card__text { font-size: 15.5px; line-height: 1.65; color: var(--lp-text-light); margin: 0; }
.lp-support-card__text b { color: var(--lp-text); font-weight: 700; }

/* ---------- FAQ ---------- */
.lp-faq { max-width: 820px; margin: 0 auto; }
.lp-faq-item {
  background: #fff; border: 1px solid #e6eef3; border-radius: 18px;
  margin-bottom: 14px; overflow: hidden;
  box-shadow: var(--lp-card-shadow); transition: box-shadow .25s ease;
}
.lp-faq-item[open] { box-shadow: 0 16px 40px rgba(45,163,237,.14); }
.lp-faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  font-family: 'Rubik', sans-serif; font-weight: 500; font-size: 1.05rem; color: var(--lp-text);
  display: flex; align-items: center; gap: 14px;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: ""; flex-shrink: 0; margin-left: auto; width: 10px; height: 10px;
  border-right: 2px solid #2da3ed; border-bottom: 2px solid #2da3ed;
  transform: rotate(45deg); transition: transform .25s ease;
}
.lp-faq-item[open] summary::after { transform: rotate(-135deg); }
.lp-faq-item__body { padding: 0 22px 20px; font-size: .98rem; line-height: 1.6; color: var(--lp-text-light); }
.lp-faq-item__body p { margin: 0 0 10px; }
.lp-faq-item__body p:last-child { margin-bottom: 0; }
.lp-faq-item__body ul { margin: 0; padding-left: 20px; }
.lp-faq-item__body li { margin-bottom: 6px; }
.lp-faq-item__body a { color: var(--lp-eyebrow); font-weight: 700; }

/* ---------- FINAL CTA ---------- */
.lp-final-cta { padding: 96px 24px; text-align: center; }
.lp-final-cta__title { font-family: 'Rubik', sans-serif; font-weight: 600; font-size: clamp(28px, 4vw, 44px); color: var(--lp-title); margin: 0 0 16px; line-height: 1.15; }
.lp-final-cta__desc { font-size: 18px; line-height: 1.55; color: var(--lp-text-muted); margin: 0 auto 36px; max-width: 560px; }

/* ---------- ANIMATION ---------- */
@keyframes lp-floaty { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-7px) rotate(-2deg); } }
@media (prefers-reduced-motion: reduce) {
  .lp-feature__img .icon3d, .lp-support-card__icon .icon3d { animation: none; }
}

/* ---------- SCROLL REVEAL ---------- */
.lp-reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.lp-reveal.is-visible { opacity: 1; transform: translateY(0); }

.lp-reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.lp-reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.lp-reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.lp-reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.lp-reveal-scale {
  opacity: 0; transform: scale(.92);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.lp-reveal-scale.is-visible { opacity: 1; transform: scale(1); }

.lp-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.lp-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.lp-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.lp-stagger.is-visible > *:nth-child(2) { transition-delay: .1s; }
.lp-stagger.is-visible > *:nth-child(3) { transition-delay: .2s; }
.lp-stagger.is-visible > *:nth-child(4) { transition-delay: .3s; }
.lp-stagger.is-visible > *:nth-child(5) { transition-delay: .4s; }
.lp-stagger.is-visible > *:nth-child(6) { transition-delay: .5s; }

.lp-section__title em,
.lp-benefit__title em,
.lp-hero__title em,
.hp-ul em {
  position: relative; display: inline-block; font-style: normal;
}
.lp-section__title em::after,
.lp-benefit__title em::after,
.hp-ul em::after {
  content: ""; position: absolute;
  bottom: 2px; left: -2px; right: -2px; height: 10px;
  background: var(--lp-accent-glow); border-radius: 4px; z-index: -1;
  transform: scaleX(var(--ul, 1)); transform-origin: left;
}

.lp-benefit__list li,
.gp-benefit__list li {
  opacity: 0; transform: translateX(-20px);
  transition: opacity .45s ease, transform .45s ease;
}
.is-visible .lp-benefit__list li,
.is-visible .gp-benefit__list li { opacity: 1; transform: translateX(0); }
.is-visible .lp-benefit__list li:nth-child(1),
.is-visible .gp-benefit__list li:nth-child(1) { transition-delay: .05s; }
.is-visible .lp-benefit__list li:nth-child(2),
.is-visible .gp-benefit__list li:nth-child(2) { transition-delay: .15s; }
.is-visible .lp-benefit__list li:nth-child(3),
.is-visible .gp-benefit__list li:nth-child(3) { transition-delay: .25s; }
.is-visible .lp-benefit__list li:nth-child(4),
.is-visible .gp-benefit__list li:nth-child(4) { transition-delay: .35s; }
.is-visible .lp-benefit__list li:nth-child(5),
.is-visible .gp-benefit__list li:nth-child(5) { transition-delay: .45s; }

@media (prefers-reduced-motion: reduce) {
  .lp-reveal, .lp-reveal-left, .lp-reveal-right, .lp-reveal-scale,
  .lp-stagger > *,
  .lp-benefit__list li, .gp-benefit__list li {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .lp-section__title em::after, .lp-benefit__title em::after {
    transform: scaleX(1) !important; transition: none !important;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .lp-hero { padding: 56px 20px 72px; }
  .lp-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-section { padding: 64px 20px; }
  .lp-features { grid-template-columns: 1fr; }
  .lp-benefit { grid-template-columns: 1fr; gap: 28px; }
  .lp-benefit--reverse .lp-benefit__text { order: 0; }
  .lp-support-grid { grid-template-columns: 1fr; }
  .lp-hero__bird-yellow, .lp-hero__bird-red { width: 48px; }
}
@media (max-width: 600px) {
  .lp-hero__cta-row { flex-direction: column; align-items: stretch; }
  .lp-btn-primary, .lp-btn-secondary { justify-content: center; }
}

/* ============================================================
   Aide-au-top — Overrides variables (homepages family/prestataire)
   ============================================================ */
body.homepage {
  --universe-color: #EA93A3;
  --av-accent: #005B85;
}
body.homepage .font--blue { color: var(--av-accent) !important; }
body.homepage .tag--blue { border-color: var(--av-accent) !important; color: var(--av-accent) !important; }
body.homepage .text-primary { color: var(--av-accent) !important; }

body.homepage .accordion-collapse {
  display: none;
  overflow: hidden;
  transition: all 0.3s ease;
}
body.homepage .accordion-collapse.show { display: block; }
body.homepage .accordion-button.collapsed::after { transform: rotate(0deg); }
body.homepage .accordion-item--active .accordion-button::after { transform: rotate(90deg); }
