/* ================================================================
   BRIDGE AI — Custom styles
   ================================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

/* Responsive iframe embeds (Arcade, YouTube, Vimeo…) */
iframe {
  max-width: 100%;
}

div[style*="height: 0"][style*="padding-bottom"] {
  overflow: hidden !important;
  max-width: 100% !important;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 65px;
}

#wpforms-188-field_6 li {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
}

ul#wpforms-188-field_6 {
  padding: 0;
}

#wpforms-188-field_6 input[type="checkbox"] {
  flex: 0 0 auto;
  margin: 3px 0 0 0;
}

#wpforms-188-field_6 label {
  display: inline !important;
  margin: 0;
}

.lp-cta-banner {
  background: linear-gradient(135deg, #EFF4FF 0%, #DCE9FF 100%);
  border-top: 1px solid #D0E2FF;
  padding: 64px 0;
  text-align: center;
}

/* Elementor main wrapper prend tout l'espace disponible */
.elementor-page .elementor,
#page,
.site-main,
main {
  flex: 1;
}

.lp-step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #BDD4FC;
  box-shadow: 0 0 0 6px #EFF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #0B5ADD;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.lp-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.66% + 27px);
  right: calc(16.66% + 27px);
  height: 2px;
  background: linear-gradient(to right, #BDD4FC, #E0EAFF, #BDD4FC);
  z-index: 0;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  z-index: 1030;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background-color: #fff !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled>hr {
  display: none;
}

.navbar.bg-transparent {
  background-color: transparent !important;
  position: relative;
  width: 100%;
}

.navbar .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 1em;
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar .nav-link:hover {
  color: #0d6efd;
}

.navbar .btn-primary {
  border-radius: 0.5em;
  font-family: 'Inter', sans-serif;
  font-size: 0.88em;
  background-color: #0B5ADD;
}

.navbar .btn-primary:hover {
  background-color: transparent !important;
  color: #0B5ADD !important;
  border-color: #0B5ADD !important;
}

.navbar .btn-outline-primary:hover {
  background-color: #0B5ADD !important;
  color: #fff !important;
}

/* Logo — déposer logo.png dans assets/images/ */
.logo {
  background-image: url('../images/logo.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 6.3em;
  height: 2em;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  color: #4A4A4A;
  font-size: 14px;
  background: #fff;
  margin-top: auto;
  width: 100%;
  bottom: 0;
  position: fixed;
  z-index: 2;
}

.site-footer hr {
  border-color: #ddd;
  opacity: 1;
}

.footer-links a {
  color: #4A4A4A;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links i {
  font-size: 16px;
}

/* ================================================================
   HERO — lp-converter-wrap
   ================================================================ */
.lp-converter-wrap {
  position: relative;
  overflow: hidden;
  contain: paint;
  background: #ffffff;
  min-height: 100vh;
  padding-top: 70px;
  /* espace pour le header fixed */
}

/* Ellipses animées (fond) */
.lp-converter-wrap .lp-ellipse-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #BDD4FC;
  opacity: 0.8;
  filter: blur(160px);
  pointer-events: none;
  will-change: transform;
  animation: ellipse1Move 16s ease-in-out infinite alternate;
}

.lp-converter-wrap .lp-ellipse-2 {
  position: absolute;
  width: 968px;
  height: 968px;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #3C00C6;
  opacity: 0.3;
  filter: blur(160px);
  pointer-events: none;
  will-change: transform;
  animation: ellipse2Move 16s ease-in-out infinite alternate;
}

@keyframes ellipse1Move {
  0% {
    transform: translate(70%, -20%);
  }

  25% {
    transform: translate(80%, 10%);
  }

  50% {
    transform: translate(-10%, 70%);
  }

  75% {
    transform: translate(-20%, 40%);
  }

  100% {
    transform: translate(70%, -20%);
  }
}

@keyframes ellipse2Move {
  0% {
    transform: translate(-20%, 70%);
  }

  25% {
    transform: translate(-10%, 40%);
  }

  50% {
    transform: translate(70%, -10%);
  }

  75% {
    transform: translate(80%, 0%);
  }

  100% {
    transform: translate(-20%, 70%);
  }
}

/* ================================================================
   CONTACT FORM 7 — style dans le modal Coming Soon
   ================================================================ */
.cs-modal .wpcf7-form p {
  margin: 0 0 12px;
}

.cs-modal .wpcf7-form input[type="email"],
.cs-modal .wpcf7-form input[type="text"] {
  width: 100%;
  border: 1px solid #4A4A4A;
  border-radius: 12px;
  padding: 15px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  box-shadow: none;
}

.cs-modal .wpcf7-form input[type="email"]:focus,
.cs-modal .wpcf7-form input[type="text"]:focus {
  border-color: #0B5ADD;
  box-shadow: none;
}

.cs-modal .wpcf7-form label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #4A4A4A;
  display: block;
  margin-bottom: 4px;
}

.cs-modal .wpcf7-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #0B5ADD;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(11, 90, 221, 0.25);
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
}

.cs-modal .wpcf7-form input[type="submit"]:hover {
  background: #0947b8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 90, 221, 0.3);
}

.cs-modal .wpcf7-acceptance .wpcf7-list-item-label,
.cs-modal .wpcf7-acceptance label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #4A4A4A;
  line-height: 1.5;
}

.cs-modal .wpcf7-acceptance .wpcf7-list-item-label a {
  color: #0B5ADD;
  text-decoration: none;
}

.cs-modal .wpcf7-acceptance .wpcf7-list-item-label a:hover {
  text-decoration: underline;
}

.cs-modal .wpcf7-response-output {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  border-radius: 6px;
  padding: 8px 12px;
  margin: 8px 0 0;
}

.cs-modal .wpcf7-mail-sent-ok {
  background: #EFF4FF;
  color: #0B5ADD;
  border: 1px solid #C7D9FF;
}

.cs-modal .wpcf7-mail-sent-ng,
.cs-modal .wpcf7-validation-errors,
.cs-modal .wpcf7-spam-blocked {
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
}

.cs-modal .wpcf7-not-valid-tip {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #DC2626;
}


/* ================================================================
   COMING SOON MODAL — backdrop + card
   ================================================================ */
.cs-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 39, 52, 0.45);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cs-modal-backdrop.is-open {
  display: flex;
}

.cs-modal {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
  animation: csModalIn 0.2s ease;
}

@keyframes csModalIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cs-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.cs-modal-close:hover {
  background: #f5f5f5;
}

.cs-modal-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #4A4A4A;
  margin-bottom: 16px;
}

.cs-modal-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #4A4A4A;
  line-height: 1.5;
  margin-bottom: 24px;
}

.cs-form-label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #4A4A4A;
  display: block;
  margin-bottom: 4px;
}

.cs-email-input {
  width: 100%;
  border: 1px solid #4A4A4A;
  border-radius: 12px;
  padding: 15px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 16px;
}

.cs-email-input::placeholder {
  color: #A4A4A4;
}

.cs-email-input:focus {
  border-color: #0B5ADD;
}

.cs-checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.cs-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #0B5ADD;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.cs-checkbox-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #4A4A4A;
  line-height: 1.5;
}

.cs-checkbox-text a {
  color: #0B5ADD;
  text-decoration: none;
}

.cs-checkbox-text a:hover {
  text-decoration: underline;
}

.btn-lp-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0B5ADD;
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 4px 14px rgba(11, 90, 221, 0.25);
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.btn-lp-primary:hover {
  background: #0947b8;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 90, 221, 0.3);
}

@media (max-width: 768px) {
  .cs-modal {
    padding: 24px 20px;
  }
}

/* Par défaut — grisé (déjà en place) */
.imgfilter {
  filter: grayscale(100%) opacity(0.65) !important;
  transition: filter 0.25s ease, transform 0.25s ease;
}

/* Image active (converter disponible) — toujours en couleur */
.imgfilter.img-converter-active:hover {
  filter: none !important;
}

/* ================================================================
   CS-TRIGGER — Hover overlay (injecté via JS sur le parent de l'img)
   ================================================================ */
.cs-trigger {
  cursor: pointer;
}

.cs-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);  color: #fff;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 99;
}

.cs-hover-overlay strong {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-family: "Bricolage Grotesque", Sans-serif;
       line-height: 0.8;

    color: #333333;
}

.cs-hover-overlay span {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.9;
  text-decoration: underline;
  text-underline-offset: 3px; font-family: "Bricolage Grotesque", Sans-serif;
   
    color: #333333;
}

/* ================================================================
   WPFORMS 304 — Subscribe form (inline input + button)
   ================================================================ */
#wpforms-form-304 {
  display: flex !important;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    width: 100%;
    
}
#wpforms-304 .wpforms-field-container {
  flex: 1;
  margin: 0 !important;
  padding: 0 !important;
}

#wpforms-304-field_1-container {
  flex: 1;
  margin: 0 !important;
  padding: 0 !important;
}

#wpforms-304-field_1-container label {
  display: none !important;
}

#wpforms-304-field_1 {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #333;
  width: 100%;
  padding: 8px 0 !important;
}

#wpforms-304-field_1::placeholder {
  color: #A0AEC0;
}

#wpforms-304 .wpforms-submit-container {
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0;
}

#wpforms-submit-304 {
  background: #0B5ADD;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
}

#wpforms-submit-304:hover {
  background: #0B5ADD;
}

/* Cacher les champs honeypot et erreurs inline */
#wpforms-304-field_2-container,
#wpforms-304-field_3-container {
  display: none !important;
}

#wpforms-304 .wpforms-field-label {
  display: none !important;
}

#wpforms-304 .wpforms-error-container {
  padding: 8px 20px;
  font-size: 0.8rem;
  color: #DC2626;
}

.no-animation-bg {
  background: linear-gradient(#DCE9FF 5%, #FFFFFF 40%);
  background-size: cover;
  background-repeat: no-repeat;
}

.pricing-hero {
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(220, 233, 255, 1) 100%);
  padding: 96px 0 40px;
  text-align: center;
}

/* ================================================================
   CF7 554 — Contact / Book a demo form
   ================================================================ */
[data-wpcf7-id="554"] {
  background: #F0F5FF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(15, 37, 93, 0.1);
}

[data-wpcf7-id="554"] form p {
  margin: 0 0 16px 0;
}

[data-wpcf7-id="554"] form p:last-of-type {
  margin-bottom: 0;
}

[data-wpcf7-id="554"] label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A4A4A;
  display: block;
  margin-bottom: 6px;
}

[data-wpcf7-id="554"] .wpcf7-text,
[data-wpcf7-id="554"] .wpcf7-email,
[data-wpcf7-id="554"] .wpcf7-textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #D8E4F5;
  border-radius: 10px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  box-shadow: none;
  box-sizing: border-box;
}

[data-wpcf7-id="554"] .wpcf7-text:focus,
[data-wpcf7-id="554"] .wpcf7-email:focus,
[data-wpcf7-id="554"] .wpcf7-textarea:focus {
  border-color: #0B5ADD;
  box-shadow: 0 0 0 3px rgba(11, 90, 221, 0.08);
}

[data-wpcf7-id="554"] .wpcf7-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit button */
[data-wpcf7-id="554"] .wpcf7-submit {
  width: auto;
  white-space: nowrap;
  background: #0B5ADD;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(11, 90, 221, 0.25);
  transition: background 0.18s, transform 0.15s;
}

[data-wpcf7-id="554"] .wpcf7-submit:hover {
  background: #0947b8;
  transform: translateY(-2px);
}

/* Messages de réponse */
[data-wpcf7-id="554"] .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  border: 1px solid transparent;
}

[data-wpcf7-id="554"] .wpcf7-mail-sent-ok {
  border-color: #C7D9FF;
  background: #EFF4FF;
  color: #0B5ADD;
}

[data-wpcf7-id="554"] .wpcf7-mail-sent-ng,
[data-wpcf7-id="554"] .wpcf7-validation-errors,
[data-wpcf7-id="554"] .wpcf7-spam-blocked {
  border-color: #FECACA;
  background: #FEF2F2;
  color: #DC2626;
}

/* ── Liste de features ── */
.features-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 27px;
  font-weight: 600;
  color: #4a4a4a;
  margin: 0;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

/* Icône check: cercle bleu clair + SVG checkmark ── */
.feature-check-icon {
  background: #bdd4fc;
  border-radius: 30px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icône grise: feature non incluse ── */
.feature-dash-icon {
  background: #f0f0f0;
  border-radius: 30px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-dash-icon span {
  width: 8px;
  height: 2px;
  background: #ccc;
  border-radius: 1px;
  display: block;
}

.feature-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 27px;
  font-weight: 400;
  color: #4a4a4a;
}

.feature-label.muted {
  color: #aaa;
}

.pricing-benefit-section {
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(222, 232, 253, 1) 100%);
  padding: 96px 0 32px;
}

.rt-img-holder img {
  height: 220px;
  width: 100%;
}
.rt-detail .read-more a {
    border: 0px solid hsla(0, 0%, 80%, .4);}





    