@charset "UTF-8";
:root,
body,
html {
  background-color: #93c5fd !important;
  color: #000000 !important;
  font-family: "IBM Plex Mono", "Courier New", Courier, Monaco, Consolas, monospace !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.terminal-title,
.nav-link,
.btn,
a {
  font-family: "IBM Plex Mono", "Courier New", Courier, Monaco, Consolas, monospace !important;
}

/* Protection absolue de la police d'icônes contre les surcharges d'héritage globales */
i.ion,
.ion,
.ionicons {
  font-family: "Ionicons" !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000 !important;
  scroll-margin-top: 220px;
}

.hero-title,
.terminal-title {
  color: #000000 !important;
}

a,
a:hover {
  color: #2563EB !important;
}

.nav__link,
.c-header a,
.footer a {
  color: #000000 !important;
}

section,
.section,
.main,
header,
footer,
.navbar {
  background-color: transparent !important;
  background: transparent !important;
}

/* Prevent animations spilling causing horizontal scroll, but safely placed so sticky context works */
.main {
  overflow-x: clip !important;
}

/* Specific reset for dark sections in the theme that might have a background */
.bg-light,
.bg-dark {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.btn-primary {
  background-color: #f6c013 !important;
  color: #000000 !important;
  border: 4px solid #000000 !important;
  box-shadow: 6px 6px 0px #000000 !important;
  border-radius: 0 !important;
  font-weight: bold !important;
  text-transform: uppercase;
  transition: all 0.1s ease-in-out !important;
}

.btn-primary:hover {
  background-color: #f472b6 !important; /* pink on hover */
  color: #000000 !important;
  transform: translate(3px, 3px) !important;
  box-shadow: 3px 3px 0px #000000 !important;
}

.navbar-brand {
  color: #000000 !important;
  font-weight: bold !important;
}

header,
.c-header {
  background-color: #ffffff !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  border-bottom: 4px solid #000000 !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

/* Make the header container full width so the logo goes to the far left */
.c-header .container {
  max-width: 100% !important;
  padding-left: 3vw !important;
  padding-right: 3vw !important;
}

.c-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav__list .nav__item .nav__link.active-link::after {
  display: none !important;
}

.nav__list .nav__item .nav__link.active-link {
  background-color: #f6c013 !important;
  color: #000000 !important;
  border: 4px solid #000000 !important;
  box-shadow: 6px 6px 0px #000000 !important;
  border-radius: 0 !important;
  padding: 8px 18px !important;
  font-weight: bold !important;
  letter-spacing: 1px;
  transition: all 0.1s ease !important;
}

.nav__list .nav__item .nav__link.active-link:hover {
  transform: translate(3px, 3px) !important;
  box-shadow: 3px 3px 0px #000000 !important;
}

/* Specific style for the Contact menu button */
.nav__list .nav__item .nav__link[href*="#contact"] {
  background-color: #f472b6 !important;
  border: 4px solid #000000 !important;
  color: #000000 !important;
  font-weight: bold !important;
  padding: 8px 18px !important;
  border-radius: 0 !important;
  letter-spacing: 1px;
  box-shadow: 6px 6px 0px #000000 !important;
  transition: all 0.1s ease !important;
}

.nav__list .nav__item .nav__link[href*="#contact"]:hover,
.nav__list .nav__item .nav__link[href*="#contact"].active-link {
  background-color: #db2777 !important;
  color: #000000 !important;
  transform: translate(3px, 3px) !important;
  box-shadow: 3px 3px 0px #000000 !important;
}

/* Generic Premium Outline Button */
.btn-premium-outline {
  background-color: transparent !important;
  border: 4px solid #2563EB !important;
  color: #000000 !important;
  font-weight: 500 !important;
  padding: 12px 30px !important;
  border-radius: 0px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0px 0px 0px transparent !important;
  transition: all 0.3s ease !important;
  display: inline-block;
  font-size: 1rem;
  text-decoration: none !important;
}

.btn-premium-outline:hover {
  box-shadow: 6px 6px 0px #000000;
  background-color: #2563EB !important;
  color: #000000 !important;
}

/* Footer Modern Links */
.footer-link {
  color: #000000 !important;
  text-decoration: none !important;
  font-size: 0.95rem;
  transition: color 0.3s ease !important;
}

.footer-link:hover {
  color: #2563EB !important;
  text-decoration: none !important;
}

.social__link i {
  font-size: 34px !important;
}

.social__link {
  margin-left: 15px;
}

.footer .social__link {
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  line-height: normal !important;
}

.logo__image {
  max-height: 80px !important;
  height: 80px !important;
  width: auto !important;
  object-fit: contain !important;
  object-fit: contain !important;
  /* Ensure it stays proportional if width/height are forced */
}

.slide-in-right {
  opacity: 0;
  transform: translateX(100px) rotate(-4deg) !important;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0) rotate(-4deg) !important;
}

.tw-cursor {
  border-right: 6px solid #2563EB;
  padding-right: 5px;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}
.neon-white-text {
  color: #000000;
  text-shadow: 0 0 1px #000000, 0 0 3px rgba(248, 250, 252, 0.8);
}

.text-gold {
  color: #f6c013 !important;
  text-shadow: 0 0 8px rgba(246, 192, 19, 0.5);
  font-size: 1.8rem;
}

/* Cookie Toast Styles */
.cookie-toast {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  border: 4px solid #000000;
  border-radius: 0px;
  width: 340px;
  z-index: 99999;
  box-shadow: 6px 6px 0px #000000;
  padding: 20px;
  display: none;
  /* JS will show it */
  font-family: "IBM Plex Mono", monospace;
}

.cookie-toast p {
  font-size: 0.9rem;
  color: #94A3B8;
  /* Texte Secondaire */
  margin-bottom: 20px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.cookie-actions .btn {
  font-size: 0.8rem;
  padding: 8px 12px;
  border: 4px solid;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border-radius: 0px;
}

.cookie-actions .btn-primary {
  background-color: #f6c013 !important;
  color: #000000 !important;
  border: 4px solid #000000 !important;
  box-shadow: 6px 6px 0px #000000 !important;
  border-radius: 0 !important;
  font-weight: bold !important;
  text-transform: uppercase;
  transition: all 0.1s ease-in-out !important;
}

.cookie-actions .btn-primary:hover {
  background-color: #f472b6 !important; /* pink on hover */
  color: #000000 !important;
  transform: translate(3px, 3px) !important;
  box-shadow: 3px 3px 0px #000000 !important;
}

.cookie-actions .btn-outline-light {
  background-color: transparent !important;
  color: #000000 !important;
  border-color: #000000 !important;
  flex: 1;
}

.cookie-actions .btn-outline-light:hover {
  background-color: #000000 !important;
  color: #93c5fd !important;
}

.bcn-highlight {
  background-color: #f6c013 !important;
  color: #000000 !important;
  padding: 2px 6px !important;
  border-radius: 0px !important;
  border: 2px solid #000000 !important;
  box-shadow: 2px 2px 0px #000000 !important;
}

/* Sticky profile image */
.about-artisan-image-container {
  position: sticky;
  top: 150px;
  text-align: center;
  z-index: 10;
}

/* -------------- RESPONSIVENESS OVERRIDES -------------- */
.terminal-title-about {
  font-size: 3rem;
}

.terminal-title-offres {
  font-size: 3rem;
}

.terminal-title-contact {
  font-size: 3.5rem;
}

.about-car-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border: 4px solid #000000;
  border-radius: 0px;
  box-shadow: 6px 6px 0px #000000;
  position: relative;
  top: -30px;
  left: 20px;
}

.contact-free-badge {
  font-size: 1.2rem;
  color: #000000;
  background-color: #f472b6;
  /* Pink background for extra visibility! */
  padding: 2px 8px;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0px #000000;
  border-radius: 0px;
  position: absolute;
  right: -160px;
  top: -10px;
  transform: rotate(12deg);
  font-family: "IBM Plex Mono", monospace;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .cookie-toast {
    right: 15px;
    left: 15px;
    top: auto;
    bottom: 20px;
    width: auto;
    transform: translateY(0);
    padding: 15px;
  }
  .cookie-actions {
    flex-direction: column;
  }
  .terminal-title-about {
    font-size: 2rem !important;
  }
  .terminal-title-offres {
    font-size: 2rem !important;
  }
  .terminal-title-contact {
    font-size: 2.2rem !important;
    margin-bottom: 50px !important;
  }
  .about-artisan-image-container {
    position: static !important;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .about-artisan-image-container img {
    max-width: 200px !important;
  }
  .about-car-image {
    top: 0 !important;
    left: 0 !important;
    max-width: 250px !important;
    /* Smaller on mobile */
    margin: 60px auto 60px auto !important;
    /* Huge margins to protect against rotation bleed */
    display: block !important;
  }
  .contact-free-badge {
    position: absolute !important;
    right: -20px !important;
    top: 40px !important;
    transform: rotate(5deg) !important;
    font-size: 1rem !important;
    z-index: 10;
  }
  .logo__image {
    max-height: 50px !important;
    height: 50px !important;
  }
  .c-header .container {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .nav-button {
    color: #000000 !important;
    font-size: 36px !important;
    /* Bigger hamburger */
    margin-right: 10px !important;
    /* Push slightly left */
  }
  /* Dark Theme for Mobile Menu */
  .main-nav {
    background-color: #ffffff !important;
    border-left: 4px solid #000000 !important;
  }
  .main-nav__box .nav__title {
    color: #000000 !important;
    border-bottom: 2px solid #2563EB !important;
  }
  .nav__icon-close {
    background: #2563EB !important;
    border-color: #2563EB !important;
  }
  .nav__icon-close i {
    color: #000000 !important;
  }
  /* Reduce some padding on mobile for sections */
  .section {
    padding-top: 50px !important;
    padding-bottom: 40px !important;
  }
  /* Global typography scale down */
  h1,
  .neon-white-text {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }
  h2 {
    font-size: 2rem !important;
  }
  .terminal-title {
    font-size: 2rem !important;
  }
  p {
    font-size: 1rem !important;
  }
}
/* CONFIG.TOML RECURRENT COMPONENTS */
.bcn-card-container {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  margin-bottom: 30px;
}

.bcn-card {
  position: relative;
  padding: 30px 110px 30px 30px;
  border: 4px solid #000000;
  border-radius: 0px;
  background-color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 8px 0 0 #ffffff, -8px 8px 0 4px #000000, -16px 16px 0 0 #ffffff, -16px 16px 0 4px #000000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bcn-card:hover {
  transform: translate(4px, -4px);
  box-shadow: -12px 12px 0 0 #ffffff, -12px 12px 0 4px #000000, -24px 24px 0 0 #ffffff, -24px 24px 0 4px #000000;
}

.bcn-card::before {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: #93c5fd #93c5fd transparent transparent;
  z-index: 10;
}

.bcn-card::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  width: 40px;
  height: 40px;
  background: linear-gradient(225deg, transparent 50%, #ffffff 50%);
  border-bottom: 4px solid #000000;
  border-left: 4px solid #000000;
  z-index: 11;
}

.bcn-card-title {
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: 5px;
  margin-top: 0;
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
}

.bcn-card-subtitle {
  color: #2563EB;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 0;
  text-transform: uppercase;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.8rem;
}

.bcn-card-icon-img {
  position: absolute;
  right: 45px;
  top: 25px;
  max-width: 80px;
  height: auto;
}

.bcn-card-desc {
  font-size: 0.95rem;
  color: #000000;
  margin-bottom: 25px;
  flex-grow: 1;
}

.bcn-timeline-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.bcn-timeline-dot {
  background-color: #2563EB;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 6px 6px 0px #000000;
  margin-right: 30px;
  margin-top: 5px;
  z-index: 2;
}

.bcn-value-card {
  flex: 1 1 calc(33% - 40px);
  min-width: 250px;
  padding: 25px;
  border-left: 3px solid #2563EB;
  background-color: #ffffff;
}

.bcn-value-icon {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 20px;
  display: block;
}

.bcn-value-title {
  color: #000000;
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 15px;
}

.bcn-value-desc {
  font-size: 0.95rem;
  color: #000000;
  margin-bottom: 0;
}

.btn-solid {
  color: #000000 !important;
  font-weight: bold;
  border: 2px solid #000000 !important;
  background: linear-gradient(90deg, #2563EB 0%, #FDE047 100%) !important;
  padding: 8px 20px;
  text-decoration: none;
  display: inline-block;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0px;
  box-shadow: 4px 4px 0px 0px #000000;
  transition: all 0.2s ease;
}

.btn-solid:hover {
  box-shadow: 2px 2px 0px 0px #000000;
  transform: translate(2px, 2px);
  background: linear-gradient(90deg, #1D4ED8 0%, #FACC15 100%) !important;
  color: #000000 !important;
}

/* --- Refactored Classes from config.toml --- */
.bcn-flex-grid {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}

.bcn-flex-grid.hero-cards {
  gap: 40px;
  margin-top: 60px;
}

.bcn-flex-grid.mt-40 {
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.bcn-flex-grid.gap-40 {
  gap: 40px;
  margin-bottom: 50px;
}

/* Cards */
.bcn-offer-card {
  padding: 30px 25px 25px 25px;
  border: 4px solid #000000;
  border-top: 4px solid #000000;
  border-radius: 0px;
  background-color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 6px 6px 0px #000000;
}

.bcn-offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 6px 6px 0px #000000;
}

.bcn-offer-card.bcn-premium {
  border-color: #2563EB;
  border-top-color: #2563EB;
  box-shadow: 6px 6px 0px #000000;
}

.bcn-offer-card.bcn-premium:hover {
  box-shadow: 6px 6px 0px #000000;
}

.bcn-card-iconbox {
  position: absolute;
  top: -25px;
  left: 25px;
  background-color: #93c5fd;
  border: 4px solid #000000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bcn-card-iconbox.bcn-premium {
  border-color: #2563EB;
}

.bcn-card-icon {
  font-size: 1.8rem;
  color: #000000;
}

.bcn-card-icon.bcn-premium {
  color: #2563EB;
}

.bcn-card-title {
  color: #000000;
  font-size: 1.3rem;
  margin-bottom: 5px;
  margin-top: 10px;
  font-weight: bold;
}

.bcn-card-subtitle {
  font-size: 0.8rem;
  color: #2563EB;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
  font-weight: bold;
}

.bcn-card-price {
  font-size: 1.8rem;
  color: #000000;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 4px solid #000000;
  padding-bottom: 15px;
}

.bcn-card-text {
  font-size: 0.95rem;
  color: #000000;
  margin-bottom: 0;
  flex-grow: 1;
  line-height: 1.6;
}

/* Timeline */
.bcn-timeline {
  position: relative;
  margin-bottom: 50px;
  padding-left: 10px;
}

.bcn-timeline-thread {
  position: absolute;
  left: 16px;
  top: 15px;
  bottom: 45px;
  width: 2px;
  background-color: #000000;
  z-index: 0;
}

.bcn-timeline-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.bcn-timeline-dot {
  background-color: #2563EB;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 6px 6px 0px #000000;
  margin-right: 30px;
  margin-top: 5px;
  z-index: 2;
}

/* --- FAQ Accordion --- */
.bcn-faq {
  max-width: 1000px;
  margin-top: 80px;
  margin: 60px 0 0 0;
  text-align: left;
}

.bcn-faq-title {
  color: #000000;
  margin-bottom: 35px;
  text-align: left;
}

.bcn-faq-item {
  background-color: #000000;
  border: 4px solid #000000;
  border-left: 4px solid #000000;
  border-radius: 0px;
  margin-bottom: 20px;
  text-align: left;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bcn-faq-item:hover {
  border-color: #2563EB;
  border-left-color: #2563EB;
  box-shadow: 6px 6px 0px #000000;
  transform: translateX(8px);
}

details[open].bcn-faq-item {
  border-color: #2563EB;
  border-left-color: #2563EB;
  box-shadow: 6px 6px 0px #000000;
}

.bcn-faq-summary::-webkit-details-marker,
.bcn-faq-summary::marker {
  display: none;
  content: "";
}

.bcn-faq-summary {
  padding: 25px 30px;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  list-style: none;
  outline: none;
  font-size: 1.15rem;
  transition: color 0.3s ease;
}

.bcn-faq-summary:hover {
  color: #2563EB;
}

.bcn-faq-summary::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: #2563EB;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
}

details[open] .bcn-faq-summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: #000000;
}

.bcn-faq-content {
  padding: 0 30px 25px 30px;
  color: #000000;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 0;
}

.hero-glass-card {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 4px solid rgba(37, 99, 235, 0.2);
  border-radius: 0px;
  padding: 40px;
  box-shadow: 6px 6px 0px #000000;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .hero-glass-card {
    padding: 25px 15px;
  }
}
/* Floating Icons Hero Section */
.hero-section-bg {
  position: relative;
  overflow: hidden;
}

.hero-floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-icon {
  position: absolute;
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 0px;
  animation: floatIcon 6s ease-in-out infinite;
}

.icon-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.icon-2 {
  top: 45%;
  left: 8%;
  animation-delay: 1s;
}

.icon-3 {
  top: 80%;
  left: 5%;
  animation-delay: 2s;
}

.icon-4 {
  top: 15%;
  right: 5%;
  animation-delay: 0.5s;
}

.icon-5 {
  top: 50%;
  right: 8%;
  animation-delay: 1.5s;
}

.icon-6 {
  top: 85%;
  right: 5%;
  animation-delay: 2.5s;
}

@keyframes floatIcon {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(4deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
@media (max-width: 1024px) {
  .floating-icon {
    width: 90px;
    height: 90px;
  }
}
/* Floating Hero Icons */
.hero-sidebar {
  position: absolute;
  top: 0;
  height: 100%;
  width: clamp(60px, 12vw, 150px);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px 0;
  pointer-events: none;
  z-index: 0;
}

.hero-sidebar.left {
  left: 2%;
}

.hero-sidebar.right {
  right: 2%;
}

.hero-icon {
  width: 100%;
  height: auto;
  max-height: 18vh;
  object-fit: contain;
  mix-blend-mode: lighten;
}

@media (max-width: 991px) {
  .hero-sidebar {
    width: clamp(50px, 10vw, 100px);
  }
  .hero-sidebar.left {
    left: 1%;
  }
  .hero-sidebar.right {
    right: 1%;
  }
}
@media (max-width: 576px) {
  .hero-sidebar {
    display: none;
  }
}
.hero-section-bg {
  background-color: #93c5fd !important;
}

/* Override Premium Card to Green (Ecological) */
.bcn-offer-card.bcn-premium {
  border-color: #10B981 !important;
  border-top-color: #10B981 !important;
}

.bcn-offer-card.bcn-premium:hover {
  box-shadow: 6px 6px 0px #000000;
}

.bcn-card-iconbox.bcn-premium {
  border-color: #10B981 !important;
}

.bcn-card-icon.bcn-premium {
  color: #10B981 !important;
}

.config-offer-premium-badge {
  background-color: #10B981 !important;
}

.bcn-offer-card.bcn-premium .bcn-card-subtitle {
  color: #A7F3D0 !important; /* Pale mint green for readability */
}

.bcn-offer-card.bcn-premium .bcn-highlight {
  color: #A7F3D0 !important;
  background-color: rgba(16, 185, 129, 0.25) !important;
}

.bcn-offer-card.bcn-premium {
  background-color: #064E3B !important;
}

.bcn-logo-badge {
  background-color: #2563EB !important;
  color: #F8FAFC !important;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
  padding: 4px 8px;
  border-radius: 2px;
  font-size: 1.2rem;
  margin-right: 10px;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
  border: none;
  display: inline-block;
  width: fit-content;
}

.header-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}

.bcn-logo-text {
  color: #000000 !important;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

/* --- Tech Stats Section --- */
.stats-tech-container {
  gap: 20px;
}

.stats-tech-box {
  position: relative;
  border: 1px solid #000000;
  padding: 20px 30px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 180px;
}

.stats-tech-corners {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  pointer-events: none;
}

.stats-tech-corners::before,
.stats-tech-corners::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid #000000;
}

.stats-tech-corners::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.stats-tech-corners::after {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.stats-tech-box::before,
.stats-tech-box::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid #000000;
}

.stats-tech-box::before {
  bottom: -4px;
  left: -4px;
  border-right: none;
  border-top: none;
}

.stats-tech-box::after {
  bottom: -4px;
  right: -4px;
  border-left: none;
  border-top: none;
}

.stats-tech-number-container {
  font-size: 3rem;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
  color: #000000;
  line-height: 1;
  margin-bottom: 10px;
}

.stats-tech-number {
  display: inline-block;
}

.stats-tech-text-inside {
  font-size: 0.95rem;
  color: #000000;
  text-align: left;
  line-height: 1.4;
}

/* --- About Section & Sticky Image --- */
.about-flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
  margin-bottom: 3rem;
  align-items: flex-start;
  gap: 40px;
}

.about-text-col {
  flex: 1 1 50%;
  min-width: 320px;
}

.about-img-col {
  flex: 0 0 40%;
  min-width: 300px;
  position: sticky;
  top: 100px;
  z-index: 10;
  align-self: flex-start;
}

.about-img-styled {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 0px;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0px #000000;
  object-fit: cover;
}

.about-title-white {
  color: #000000;
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-weight: bold;
}

.about-philosophy-content {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000000;
}

.about-pedigree-title {
  color: #000000;
  border-color: #10B981 !important;
}

.bcn-card-icon.bcn-premium {
  color: #10B981 !important;
}

.config-offer-premium-badge {
  background-color: #10B981 !important;
}

.bcn-offer-card.bcn-premium .bcn-card-subtitle {
  color: #A7F3D0 !important; /* Pale mint green for readability */
}

.bcn-offer-card.bcn-premium .bcn-highlight {
  color: #A7F3D0 !important;
  background-color: rgba(16, 185, 129, 0.25) !important;
}

.bcn-offer-card.bcn-premium {
  background-color: #064E3B !important;
}

.bcn-logo-badge {
  background-color: #2563EB !important;
  color: #F8FAFC !important;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
  padding: 4px 8px;
  border-radius: 2px;
  font-size: 1.2rem;
  margin-right: 10px;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
  border: none;
  display: inline-block;
  width: fit-content;
}

.header-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}

.bcn-logo-text {
  color: #000000 !important;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

/* --- Tech Stats Section --- */
.stats-tech-container {
  gap: 20px;
}

.stats-tech-box {
  position: relative;
  border: 1px solid #000000;
  padding: 20px 30px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 180px;
}

.stats-tech-corners {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  pointer-events: none;
}

.stats-tech-corners::before,
.stats-tech-corners::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid #000000;
}

.stats-tech-corners::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.stats-tech-corners::after {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.stats-tech-box::before,
.stats-tech-box::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid #000000;
}

.stats-tech-box::before {
  bottom: -4px;
  left: -4px;
  border-right: none;
  border-top: none;
}

.stats-tech-box::after {
  bottom: -4px;
  right: -4px;
  border-left: none;
  border-top: none;
}

.stats-tech-number-container {
  font-size: 3rem;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
  color: #000000;
  line-height: 1;
  margin-bottom: 10px;
}

.stats-tech-number {
  display: inline-block;
}

.stats-tech-text-inside {
  font-size: 0.95rem;
  color: #000000;
  text-align: left;
  line-height: 1.4;
}

/* --- About Section & Sticky Image --- */
.about-flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
  margin-bottom: 3rem;
  align-items: flex-start;
  gap: 40px;
}

.about-text-col {
  flex: 1 1 50%;
  min-width: 320px;
}

.about-img-col {
  flex: 0 0 40%;
  min-width: 300px;
  position: sticky;
  top: 100px;
  z-index: 10;
  align-self: flex-start;
}

.about-img-styled {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 0px;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0px #000000;
  object-fit: cover;
}

.about-title-white {
  color: #000000;
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-weight: bold;
}

.about-philosophy-content {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000000;
}

.about-pedigree-title {
  color: #000000;
  margin-bottom: 40px;
  font-size: 2.2rem;
  font-weight: bold;
}

@media (max-width: 991px) {
  .about-img-col {
    position: static;
    flex: 1 1 100%;
    margin-top: 2rem;
  }
}
/* --- Social Links Fix --- */
.social-flex-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-primary.config-contact-btn {
  font-size: 1.5rem !important;
  padding: 24px 48px !important;
  letter-spacing: 2px;
  border: 5px solid #000000 !important;
  box-shadow: 12px 12px 0px #000000 !important;
  transition: all 0.2s ease-in-out !important;
  background-color: #ff6b6b !important; /* Rouge corail vibrant */
  color: #000000 !important;
}

.btn-primary.config-contact-btn:hover {
  box-shadow: 6px 6px 0px #000000 !important;
  transform: translate(6px, 6px) !important;
  background-color: #f6c013 !important; /* Jaune au survol */
}

@media only screen and (max-width: 768px) {
  .btn-primary.config-contact-btn {
    font-size: 1.2rem !important;
    padding: 18px 32px !important;
    box-shadow: 8px 8px 0px #000000 !important;
    border-width: 4px !important;
  }
  .btn-primary.config-contact-btn:hover {
    box-shadow: 4px 4px 0px #000000 !important;
    transform: translate(4px, 4px) !important;
  }
}
/* --- Footer Section --- */
.footer-container {
  background: #ffffff !important;
  position: relative;
  z-index: 10;
  padding: 60px 0;
  border-top: 5px solid #000000;
  margin-top: 50px;
}

.footer-logo-link {
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px !important; /* Reduced padding */
}

.footer-list {
  list-style-type: none;
  padding-left: 0;
  line-height: 1.5; /* Reduced line height */
}

.footer-info-block {
  margin-bottom: 25px;
  text-align: center; /* Center the social icons */
}

.footer-contact-text {
  color: #000000;
  font-size: 0.75rem !important; /* Reduced size */
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: bold;
  text-align: center !important; /* Centered */
}

.footer-sub-text {
  display: block;
  margin-top: 15px;
  font-size: 0.7rem !important; /* Reduced size */
  color: #000000;
  font-weight: normal;
}

/* --- Refonte Neo-Brutaliste Site Web & Outils --- */

/* 1. Accompagnement Web */
.bcn-offer-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.bcn-offer-list li {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  color: #000000;
}
.bcn-offer-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563EB;
  font-weight: 900;
}

.bcn-offer-card {
  border: 4px solid #000000 !important;
  box-shadow: 8px 8px 0px #000000 !important;
  transition: all 0.2s ease !important;
}
.bcn-offer-card:hover {
  transform: translate(-4px, -4px) !important;
  box-shadow: 12px 12px 0px #000000 !important;
}

.bcn-offer-card.bcn-premium {
  background-color: #4ade80 !important; /* Green */
}
.bcn-offer-card.bcn-premium .bcn-card-iconbox {
  background-color: #ffffff !important;
  border-color: #000000 !important;
}
.bcn-offer-card.bcn-premium .bcn-card-icon {
  color: #000000 !important;
}
.bcn-offer-card.bcn-premium .bcn-card-subtitle {
  color: #000000 !important;
}
.config-offer-premium-badge {
  background-color: #f9a8d4 !important; /* Lighter Pink badge */
  color: #000000 !important;
  border: 4px solid #000000 !important;
  box-shadow: 4px 4px 0px #000000 !important;
  font-size: 0.9rem !important;
  padding: 4px 12px !important;
  top: -20px !important;
  right: 20px !important;
  font-weight: bold !important;
}

.bcn-alert {
  background: #f9a8d4 !important; /* Lighter pink */
  color: #000000 !important;
  border: 4px solid #000000 !important;
  box-shadow: 8px 8px 0px #000000 !important; /* Harmonized shadow */
  border-radius: 0 !important;
  padding: 40px !important; /* Harmonized padding */
}

.config-offer-footer-msg {
  background: #ffffff;
  border: 4px dashed #000000 !important;
  padding: 30px !important;
  margin-top: 50px !important;
  box-shadow: 8px 8px 0px #000000 !important;
}

/* 2. Outil Metier Sur-Mesure */
.bcn-value-card {
  border: 4px solid #000000 !important;
  box-shadow: 8px 8px 0px #000000 !important;
  background-color: #f6c013 !important;
  transition: all 0.2s ease !important;
}
.bcn-value-card:hover {
  transform: translate(-4px, -4px) !important;
  box-shadow: 12px 12px 0px #000000 !important;
  background-color: #f6c013 !important;
}

.bcn-timeline-item {
  margin-bottom: 40px !important;
}

/* 3. Cadres globaux des sections (Encadrer les deux gros blocs) */
.detailed-offer-box {
  background-color: #ffffff !important;
  border: 4px solid #000000 !important;
  box-shadow: 12px 12px 0px #000000 !important;
  padding: 50px 40px !important;
  margin-bottom: 80px !important;
}

@media only screen and (max-width: 768px) {
  .detailed-offer-box {
    padding: 30px 20px !important;
    box-shadow: 8px 8px 0px #000000 !important;
  }
}
.bcn-timeline-dot {
  border-radius: 0 !important; /* Square */
  border: 4px solid #000000 !important;
  width: 24px !important;
  height: 24px !important;
  box-shadow: 4px 4px 0px #000000 !important;
  margin-top: 0 !important;
  background-color: #f9a8d4 !important; /* Lighter pink */
  margin-right: 40px !important;
}
.bcn-timeline-thread {
  left: 20px !important;
  width: 4px !important;
}
.config-metier-timeline-text {
  font-weight: bold;
  font-family: 'Courier New', Courier, monospace;
}
.config-metier-timeline-title {
  background-color: #2563EB !important;
  color: #ffffff !important;
  padding: 2px 8px !important;
  border: 2px solid #000000 !important;
  display: inline-block !important;
  margin-bottom: 5px !important;
  box-shadow: 2px 2px 0px #000000 !important;
}

.config-metier-footer {
  background: #f9a8d4 !important; /* Lighter pink */
  color: #000000 !important;
  border: 4px solid #000000 !important;
  padding: 40px !important;
  box-shadow: 8px 8px 0px #000000 !important;
  margin-bottom: 40px !important;
}
.config-metier-footer-title {
  color: #000000 !important;
  font-size: 1.8rem !important;
  font-weight: bold !important;
}
.config-metier-footer-desc {
  color: #000000 !important;
  font-size: 1.1rem !important;
  font-weight: bold !important;
}

/* Corrections: Espacement des cartes et texte de la carte écolo */
.bcn-offer-col {
  flex: 1 1 calc(50% - 40px) !important;
  min-width: 280px !important;
  margin-bottom: 20px !important;
}

.bcn-flex-grid {
  gap: 40px !important;
}

.bcn-offer-card.bcn-premium .bcn-highlight {
  color: #000000 !important;
  background-color: #f6c013 !important; /* Yellow background for highlights inside green card */
  border: 2px solid #000000 !important;
  box-shadow: 2px 2px 0px #000000 !important;
  padding: 2px 6px !important;
}

.bcn-offer-card.bcn-premium .bcn-card-subtitle {
  color: #000000 !important; /* Force subtitle to black */
}

/* Force global font (police du menu) pour toutes les écritures */
*:not(.ion):not(i.ion):not(.ionicons) {
  font-family: "IBM Plex Mono", "Courier New", Courier, Monaco, Consolas, monospace !important;
}

/* Harmonisation des tailles de police */
.detailed-offer-title {
  font-size: 1.7rem !important;
}
.bcn-card-price {
  font-size: 1.5rem !important;
}
.bcn-card-title {
  font-size: 1.2rem !important;
}
.bcn-card-subtitle {
  font-size: 0.95rem !important;
}
.bcn-card-text {
  font-size: 1.05rem !important;
}
.bcn-value-title {
  font-size: 1.3rem !important;
}
.bcn-value-desc {
  font-size: 1.05rem !important;
}
.config-metier-footer-title {
  font-size: 1.2rem !important;
}
.config-metier-footer-desc {
  font-size: 0.95rem !important;
}

/* Textes libres en gras (uniquement encadrés spécifiques et intros) */
.bcn-value-desc,
.bcn-alert,
.detailed-offer-desc > p:first-of-type {
  font-weight: bold !important;
}

/* Retrait du gras sur la liste */
.bcn-offer-list li {
  font-weight: normal !important;
}

/* FAQ Néo-Brutaliste */
.bcn-faq-item {
  background-color: #ffffff !important;
  border: 4px solid #000000 !important;
  box-shadow: 4px 4px 0px #000000 !important;
  transition: all 0.2s ease !important;
  margin-bottom: 25px !important;
}

.bcn-faq-item:hover {
  background-color: #f6c013 !important; /* Jaune au survol */
  border-color: #000000 !important;
  box-shadow: 8px 8px 0px #000000 !important;
  transform: translate(-4px, -4px) !important;
}

details[open].bcn-faq-item {
  background-color: #ffffff !important;
  border-color: #000000 !important;
  box-shadow: 8px 8px 0px #000000 !important;
  transform: translate(-4px, -4px) !important;
}

.bcn-faq-summary {
  color: #000000 !important;
}

.bcn-faq-summary:hover {
  color: #000000 !important;
}

.bcn-faq-summary::after {
  content: '+' !important;
  color: #000000 !important;
  font-weight: bold !important;
}

details[open] .bcn-faq-summary::after {
  color: #f472b6 !important; /* Rose quand ouvert */
  transform: translateY(-50%) rotate(45deg) !important;
}

.bcn-faq-content {
  color: #000000 !important;
  font-weight: bold !important;
  border-top: 4px dashed #000000 !important;
  padding-top: 25px !important;
  margin-top: 10px !important;
}

/* Liens de contact (Téléphone / Email) */
.config-contact-text {
  margin-bottom: 50px !important; /* Espace avant le bouton CTA */
}

.config-contact-link {
  display: inline-block;
  background-color: #ffffff;
  color: #000000 !important;
  text-decoration: none !important;
  font-weight: bold;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0px #000000;
  padding: 6px 20px;
  margin: 10px 0 10px 10px; /* Espace avec l'emoji */
  transition: all 0.2s ease-in-out;
}

.config-contact-link:hover {
  background-color: #f9a8d4; /* Rose au survol */
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0px #000000;
}

/* Retrait des encadrés surlignés dans le texte de contact */
.config-contact-text .bcn-highlight {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/*# sourceMappingURL=custom.css.map */
