@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: #0A0A0A;
}

body {
  color: #FFFFFF;
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.blck-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.2;
}

a {
  color: #fdd835;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #fdce03;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.blck-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding 0.4s ease, background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
.blck-header__logo img {
  height: 50px;
  transition: height 0.4s ease;
}
.blck-header__nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.blck-header__nav a {
  color: #FFFFFF;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}
.blck-header__nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fdd835;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.blck-header__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.blck-header.scrolled {
  padding: 0.8rem 2rem;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  border-bottom-color: #191919;
}
.blck-header.scrolled .blck-header__logo img {
  height: 40px;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background-color: #191919;
  z-index: 2000;
  padding: 4rem 2rem;
  transition: right 0.4s ease;
}
.sidebar.open {
  right: 0;
}
.sidebar ul {
  list-style: none;
}
.sidebar ul li {
  margin-bottom: 1.5rem;
}
.sidebar ul li a {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 700;
}
.sidebar__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #FFFFFF;
  background: none;
  border: none;
  cursor: pointer;
}

/* --- public/scss/_modal.scss --- */
/* ===== Variables locales ===== */
/* ===== Keyframes ===== */
@keyframes blckModalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes blckModalSlideUp {
  from {
    transform: translate(-50%, calc(-50% + 15px));
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes blckModalSheetUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
/* ====================================================================== */
/*                                 MODAL                                  */
/* ====================================================================== */
.blck-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}
.blck-modal[aria-hidden=false] {
  display: block;
  animation: blckModalFadeIn 300ms ease-out both;
}
.blck-modal__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 30%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 60%), rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(6px) saturate(85%);
  -webkit-backdrop-filter: blur(6px) saturate(85%);
  cursor: pointer;
}
.blck-modal__dialog {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, 94vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: #121418;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  color: #A3A3A3;
  border-radius: 24px;
  outline: none;
  overflow: hidden;
  animation: blckModalSlideUp 400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  .blck-modal__dialog {
    animation: none;
  }
}
.blck-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(120% 140% at 50% -10%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 35%, rgba(0, 0, 0, 0.35) 100%);
  background-blend-mode: overlay;
}
.blck-modal--glow .blck-modal__dialog::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(160px 160px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 55%), radial-gradient(260px 260px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(253, 216, 53, 0.05), rgba(253, 216, 53, 0) 60%);
  mix-blend-mode: screen;
  opacity: 0.55;
  transition: opacity 0.18s ease;
}
@media (prefers-reduced-motion: reduce), (pointer: coarse) {
  .blck-modal--glow .blck-modal__dialog::after {
    opacity: 0;
  }
}
.blck-modal__dialog > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .blck-modal__dialog {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-height: 85vh;
    transform: none;
    border-radius: 24px 24px 0 0;
    animation: blckModalSheetUp 300ms ease-out both;
  }
}
.blck-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
.blck-modal__header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
}
.blck-modal__content {
  padding: 24px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.blck-modal__content h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.1rem;
  color: #FFFFFF;
  font-weight: 600;
}
.blck-modal__content p, .blck-modal__content li {
  line-height: 1.65;
  font-size: 1rem;
  color: #a9a9a9;
}
.blck-modal__footer {
  padding: 20px 32px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-shrink: 0;
  background-color: transparent;
}
.blck-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #a9a9a9;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease-out;
}
.blck-modal__close:hover {
  background: #fdd835;
  color: #0A0A0A;
  transform: scale(1.1);
}
.blck-modal .modal-subtitle {
  margin-top: -16px;
  margin-bottom: 24px;
  color: #888;
  font-size: 0.95rem;
}

.blck-modal--solid .blck-modal__dialog::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.32));
}

.blck-modal--photo .blck-modal__dialog::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25)), url("/public/images/compressed/modal-underlay.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) brightness(0.9);
}

.is-modal-open {
  overflow: hidden;
  touch-action: none;
}

/* ====================================================================== */
/*                               FORMULAIRES                               */
/* ====================================================================== */
.blck-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  /* ==== SELECT natif – FIX et lisible ==== */
}
.form-group label {
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 1rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: #8b8f98;
}
.form-group input:focus, .form-group input:focus-visible, .form-group textarea:focus, .form-group textarea:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: #fdd835;
  box-shadow: 0 0 0 3px rgba(253, 216, 53, 0.22);
}
.form-group select {
  width: 100%;
  padding: 14px 44px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background: rgba(255, 255, 255, 0.06) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23CFCFD6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 14px center/18px 18px !important;
}
.form-group select:required:invalid {
  color: #c9ced6;
}
.form-group select:focus, .form-group select:focus-visible {
  outline: none;
  border-color: #fdd835;
  box-shadow: 0 0 0 3px rgba(253, 216, 53, 0.22);
  background: rgba(255, 255, 255, 0.1) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23F5C400' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 14px center/18px 18px !important;
}
.form-group select::-ms-expand {
  display: none;
}
.form-group select option {
  color: #0f1115;
  background-color: #ffffff;
  font-weight: 500;
}
.form-group select option[disabled] {
  color: #9aa0a6;
  font-style: normal;
}
.form-group select option:checked {
  background-color: rgba(253, 216, 53, 0.25);
  color: #0f1115;
}

@-moz-document url-prefix() {
  .form-group select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #FFFFFF;
  }
}
.form-group .select--dense {
  padding-top: 10px;
  padding-bottom: 10px;
}

.form-group .select--spacious {
  padding-top: 16px;
  padding-bottom: 16px;
}

.honeypot {
  display: none !important;
}

/* ====================================================================== */
/*                          MESSAGES DE RÉPONSE                            */
/* ====================================================================== */
.form-response {
  padding: 14px 20px;
  margin-bottom: 16px;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
  border: 1px solid transparent;
}
.form-response.success {
  background-color: rgba(40, 167, 69, 0.15);
  border-color: rgba(40, 167, 69, 0.4);
  color: #5dd879;
}
.form-response.error {
  background-color: rgba(220, 53, 69, 0.15);
  border-color: rgba(220, 53, 69, 0.4);
  color: #eb8c95;
}

/* ====================================================================== */
/*                      BOUTON DANS LA MODALE (option)                     */
/* ====================================================================== */
.blck-modal .blck-btn, .blck-modal .cookie-consent .cookie-btn.accept, .cookie-consent .blck-modal .cookie-btn.accept {
  background: #fdd835;
  color: #0A0A0A;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 20px rgba(253, 216, 53, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.blck-modal .blck-btn:hover, .blck-modal .cookie-consent .cookie-btn.accept:hover, .cookie-consent .blck-modal .cookie-btn.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 25px rgba(253, 216, 53, 0.3);
  filter: brightness(1.05);
}

/* ====================================================================== */
/*                   CUSTOM SELECT (Progressive Enhancement)               */
/* ====================================================================== */
.blck-custom-select {
  position: relative;
  font-size: 1rem;
}

.blck-custom-select select {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.blck-custom-select__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.blck-custom-select__button:hover {
  background: rgba(255, 255, 255, 0.08);
}
.blck-custom-select__button:focus-visible {
  outline: none;
  border-color: #fdd835;
  box-shadow: 0 0 0 3px rgba(253, 216, 53, 0.22);
}

.blck-custom-select__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blck-custom-select__chevron {
  flex: none;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23CFCFD6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat center/18px 18px;
  transition: transform 0.18s ease;
}

.blck-custom-select[aria-expanded=true] .blck-custom-select__chevron {
  transform: rotate(180deg);
}

.blck-custom-select__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 3100;
  max-height: 280px;
  overflow: auto;
  background: #fff;
  color: #0f1115;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), 0 6px 16px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(15, 17, 21, 0.08);
  padding: 8px;
  display: none;
}

.blck-custom-select[aria-expanded=true] .blck-custom-select__list {
  display: block;
}

.blck-custom-select__group-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #3b3f46;
  padding: 10px 10px 6px;
}

.blck-custom-select__option {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  line-height: 1.25;
  transition: background-color 0.12s ease;
}
.blck-custom-select__option:hover {
  background: #f5f6f7;
}
.blck-custom-select__option[aria-selected=true] {
  background: rgba(253, 216, 53, 0.18);
  font-weight: 600;
}
.blck-custom-select__option[aria-disabled=true] {
  color: #9aa0a6;
  cursor: not-allowed;
}

@media (max-width: 720px) {
  .blck-custom-select__list {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    top: auto;
    max-height: 50vh;
  }
}
input, textarea, select, button {
  font-family: inherit;
}

/* ====================================================================== */
/* FORMULAIRES                               */
/* ====================================================================== */
.blck-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "Figtree", sans-serif;
}

.form-group label {
  font-family: "Figtree", sans-serif;
}
.form-group input, .form-group textarea, .form-group select {
  font-family: "Figtree", sans-serif;
}

/* ====================================================================== */
/* CUSTOM SELECT (Progressive Enhancement)               */
/* ====================================================================== */
.blck-custom-select {
  position: relative;
  font-size: 1rem;
  font-family: "Figtree", sans-serif;
}

.blck-custom-select__button {
  font-family: "Figtree", sans-serif;
}

.blck-custom-select__option {
  font-family: "Figtree", sans-serif;
}

.blck-custom-select select.js-enhanced {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  display: none;
}

.blck-custom-select {
  display: block;
  position: relative;
}

.blck-btn, .cookie-consent .cookie-btn.accept {
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.95rem 1.75rem;
  border: 2px solid transparent;
  border-radius: 9999px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  transform: translateZ(0);
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.blck-btn i, .cookie-consent .cookie-btn.accept i {
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.blck-btn:hover, .cookie-consent .cookie-btn.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28), 0 6px 14px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}
.blck-btn:hover i, .cookie-consent .cookie-btn.accept:hover i {
  transform: translateX(4px);
}
.blck-btn:active, .cookie-consent .cookie-btn.accept:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}
.blck-btn:focus-visible, .cookie-consent .cookie-btn.accept:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(253, 216, 53, 0.25), 0 10px 24px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}
.blck-btn:disabled, .cookie-consent .cookie-btn.accept:disabled, .blck-btn.is-disabled, .cookie-consent .is-disabled.cookie-btn.accept {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}
.blck-btn.is-loading, .cookie-consent .is-loading.cookie-btn.accept {
  position: relative;
  pointer-events: none;
}
.blck-btn.is-loading::after, .cookie-consent .is-loading.cookie-btn.accept::after {
  content: "";
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-right-color: transparent;
  margin-left: 0.25rem;
  animation: blckSpin 0.8s linear infinite;
}
.blck-btn--primary, .cookie-consent .cookie-btn.accept {
  background: linear-gradient(180deg, #fdde53 0%, #fdd835 100%);
  color: #0A0A0A;
  border-color: #fdd835;
}
.blck-btn--primary:hover, .cookie-consent .cookie-btn.accept:hover {
  background: transparent;
  color: #fdd835;
  border-color: #fdd835;
}
.blck-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}
.blck-btn--secondary:hover {
  background: #FFFFFF;
  color: #0A0A0A;
  border-color: #FFFFFF;
}
.blck-btn--ghost {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.18);
}
.blck-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}
.blck-btn--lg {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}
.blck-btn--sm {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}
.blck-btn--icon {
  padding: 0.85rem;
  gap: 0;
  width: 3rem;
  height: 3rem;
}
.blck-btn--block {
  width: 100%;
}
.blck-btn i, .cookie-consent .cookie-btn.accept i {
  font-size: 1em;
  line-height: 1;
}
@media (prefers-reduced-motion: reduce) {
  .blck-btn, .cookie-consent .cookie-btn.accept {
    transition: none;
  }
  .blck-btn:hover i, .cookie-consent .cookie-btn.accept:hover i {
    transform: none;
  }
}

.back-to-top {
  border-radius: 9999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Animations */
@keyframes blckSpin {
  to {
    transform: rotate(360deg);
  }
}
.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1500;
  background-color: #FFFFFF;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
  padding: 1rem 1.5rem 1.5rem;
  transform: translateY(100%);
  opacity: 0.8;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  transition: transform 0.3s ease-out;
}
.bottom-sheet.active {
  transform: translateY(0);
  opacity: 1;
}
.bottom-sheet__handle {
  width: 40px;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 10px;
  margin: 0 auto 1.5rem;
}
.bottom-sheet__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.bottom-sheet__nav li {
  margin-bottom: 0.25rem;
}
.bottom-sheet__nav a {
  display: block;
  padding: 0.9rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0A0A0A;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.bottom-sheet__nav a:hover {
  background-color: #f5f5f5;
}
.bottom-sheet__nav a.is-active {
  background-color: #fdd835;
  color: #0A0A0A;
}
.bottom-sheet__nav a:focus-visible {
  outline: 2px solid #fdd835;
  outline-offset: 2px;
}

.site-container {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-container.sheet-open {
  transform: scale(0.94) translateY(-15px);
  filter: blur(3px);
  border-radius: 20px;
  overflow: hidden;
  pointer-events: none;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #fdd835;
  color: #0A0A0A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 1000;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background-color: #fdce03;
  color: #191919;
}

.loader-overlay {
  position: fixed;
  inset: 0;
  background-color: #0A0A0A;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #2D2D2D;
  border-top-color: #fdd835;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ==========================================================================
   Bouton Burger Amélioré (Fond rond + Style 3 états)
   ========================================================================== */
.burger-icon {
  background-color: rgba(0, 0, 0, 0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: background-color 0.3s ease;
}

.burger-icon__bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 3px;
  position: absolute;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.3s ease-in-out, width 0.3s ease-in-out;
}

/* --- ÉTAT INITIAL --- */
.burger-icon__bar:nth-child(1) {
  transform: translateY(-6px);
}

.burger-icon__bar:nth-child(2) {
  opacity: 0;
}

.burger-icon__bar:nth-child(3) {
  transform: translateY(6px);
}

/* --- ÉTAT DE SURVOL (HOVER) --- */
.burger-icon:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.burger-icon:hover .burger-icon__bar:nth-child(3) {
  width: 14px;
}

/* --- ÉTAT ACTIF / OUVERT (LA CROIX 'X') --- */
.burger-icon.active {
  background-color: #2c3e50;
}

.burger-icon.active .burger-icon__bar:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.burger-icon.active .burger-icon__bar:nth-child(2) {
  opacity: 0;
}

.burger-icon.active .burger-icon__bar:nth-child(3) {
  width: 24px;
  transform: translateY(0) rotate(-45deg);
}

.burger-icon.active:hover .burger-icon__bar:nth-child(3) {
  width: 24px;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  background-color: #191919;
  border-top: 1px solid #2D2D2D;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.cookie-consent p {
  margin: 0;
  color: #A3A3A3;
}
.cookie-consent .cookie-link {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 500;
}
.cookie-consent .cookie-btn.accept {
  padding: 8px 20px;
}

/* ==========================================================================
   Séparateur Citation - Version Finale Polie et Corrigée
   ========================================================================== */
.blck-quote-divider {
  background-image: radial-gradient(circle at center, #fdfaf6, #f9f5ed);
  padding: 40px 0;
  color: #343a40;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.blck-quote-divider blockquote {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}
.blck-quote-divider p {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 25px 0;
  background: linear-gradient(180deg, #212529, #495057);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  padding: 0 40px;
}
.blck-quote-divider p::before, .blck-quote-divider p::after {
  content: "“";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #343a40;
  background: none;
  opacity: 0.7;
  font-family: serif;
}
.blck-quote-divider p::before {
  left: 0;
}
.blck-quote-divider p::after {
  content: "”";
  right: 0;
}
.blck-quote-divider footer {
  font-size: 0.9rem;
  font-style: normal;
  color: #6c757d;
  position: relative;
  padding-top: 25px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blck-quote-divider footer cite {
  font-style: normal;
  text-transform: none;
  letter-spacing: normal;
}
.blck-quote-divider footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  border-radius: 2px;
  background-image: linear-gradient(90deg, #fdd835, #fbc02d);
}
@media (max-width: 768px) {
  .blck-quote-divider {
    padding: 30px 20px;
  }
  .blck-quote-divider p {
    font-size: 1.3rem;
    padding: 0 30px;
  }
  .blck-quote-divider p::before, .blck-quote-divider p::after {
    font-size: 2.5rem;
  }
}

.blck-hero {
  position: relative;
  height: 85vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
  background-image: linear-gradient(rgba(10, 10, 10, 0.37), rgba(10, 10, 10, 0.49)), url("/public/images/compressed/small/hero-bg-min.webp");
  background-size: cover;
  background-position: center;
}
.blck-hero__content h1 {
  font-size: clamp(3rem, 6vw, 3.5rem);
  line-height: 1.1;
  font-weight: 800;
  text-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
}
.blck-hero__content h1 span {
  color: #fdd835;
}
.blck-hero__content p {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin: 1.5rem 0 2.5rem;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.blck-hero .blck-container {
  position: relative;
  z-index: 2;
}

.blck-services {
  padding: 100px 0;
}
.blck-services .service-pole {
  margin-bottom: 80px;
}
.blck-services .service-pole:last-child {
  margin-bottom: 0;
}
.blck-services .pole-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 50px;
  font-weight: 700;
}
.blck-services__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blck-service-card {
  background-color: #0A0A0A;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blck-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, #2D2D2D, #191919);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.3s ease;
}
.blck-service-card .card-icon {
  font-size: 2.2rem;
  color: #fdd835;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.blck-service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}
.blck-service-card p {
  color: #A3A3A3;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.blck-service-card .card-cta {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  color: #fdd835;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.blck-service-card .card-cta i {
  font-size: 0.8em;
  margin-left: 0.5rem;
}
.blck-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 20px 40px rgba(253, 216, 53, 0.15);
}
.blck-service-card:hover::before {
  background: linear-gradient(145deg, #fdd835, #caa502);
}
.blck-service-card:hover .card-cta {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .blck-services .pole-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
}
@keyframes clientsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.blck-clients {
  position: relative;
  isolation: isolate;
  padding: clamp(1rem, 2vw, 0rem) 0;
  background: radial-gradient(70% 60% at 50% 0%, rgba(253, 216, 53, 0.05), transparent 60%), linear-gradient(180deg, #050505 0%, #0A0A0A 100%);
}
.blck-clients::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 22px 22px, 22px 22px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
  z-index: -1;
}
.blck-clients::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/public/images/compressed/identite-visuelle-waves.webp");
  background-size: cover;
  background-position: center center;
  opacity: 0.7;
}
.blck-clients__content {
  --card-bg: rgba(10, 10, 10, 0.25);
  --card-brd: rgba(255, 255, 255, 0.12);
  --card-shadow: 0 25px 60px rgba(0,0,0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.08);
  max-width: min(980px, 92vw);
  margin: 0 auto;
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.25rem, 3vw, 2.25rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
  background: var(--card-bg);
  border: 1px solid var(--card-brd);
  box-shadow: var(--card-shadow);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}
.blck-clients__content .quote-icon {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 0.7;
  color: #fdd835;
  filter: drop-shadow(0 6px 18px rgba(253, 216, 53, 0.25));
  transform: translateY(-2px);
  user-select: none;
}
.blck-clients__content .client-avatar {
  width: clamp(52px, 7vw, 72px);
  height: clamp(52px, 7vw, 72px);
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.blck-clients__content .client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blck-clients__content .client-body {
  display: grid;
  gap: 0.6rem;
}
.blck-clients__content p {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  font-style: italic;
  color: #A3A3A3;
}
.blck-clients__content p strong {
  font-style: normal;
  font-weight: 700;
  color: #FFFFFF;
}
.blck-clients__content .client-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
  margin-top: 0.25rem;
}
.blck-clients__content .client-meta .client-name {
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.blck-clients__content .client-meta .client-role {
  color: #2D2D2D;
  font-size: 0.95rem;
}
.blck-clients__content .client-meta .client-rating {
  display: inline-flex;
  gap: 4px;
  margin-left: auto;
}
.blck-clients__content .client-meta .client-rating .star {
  font-size: 1rem;
  color: #fdd835;
  text-shadow: 0 2px 8px rgba(253, 216, 53, 0.25);
}
.blck-clients__logos {
  margin: clamp(1.25rem, 3vw, 2rem) auto 0;
  max-width: min(1100px, 94vw);
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.blck-clients__logos .logos-track {
  display: flex;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  min-width: 200%;
  animation: clientsMarquee 22s linear infinite;
}
.blck-clients__logos .logos-track:hover {
  animation-play-state: paused;
}
.blck-clients__logos .logos-track img, .blck-clients__logos .logos-track svg {
  height: clamp(22px, 3.2vw, 34px);
  opacity: 0.7;
  transition: opacity 0.2s ease;
  filter: grayscale(100%) contrast(110%);
}
.blck-clients__logos .logos-track img:hover, .blck-clients__logos .logos-track svg:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@media (prefers-reduced-motion: reduce) {
  .blck-clients__logos .logos-track {
    animation: none;
  }
}
.blck-clients.is-compact {
  padding: 1.25rem 0;
}
.blck-clients.is-compact__content {
  border-radius: 12px;
  padding: 1rem 1.25rem;
}
.blck-clients.is-compact__content .quote-icon {
  font-size: 3rem;
}
.blck-clients.is-compact__content p {
  font-size: 1rem;
}
.blck-clients.is-compact__logos {
  margin-top: 1rem;
}
@media (max-width: 640px) {
  .blck-clients__content {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .blck-clients__content .quote-icon {
    order: -1;
  }
  .blck-clients__content .client-meta {
    gap: 0.4rem 0.75rem;
  }
}

/* ==========================================================================
   Portfolio Interactif (Version 2 colonnes)
   ========================================================================== */
.blck-portfolio {
  background-color: #0a0a0a;
  padding: 100px 0;
}
.blck-portfolio__head {
  text-align: center;
  margin-bottom: 50px;
}
.blck-portfolio__head h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #ffffff;
}
.blck-portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.blck-portfolio .portfolio-filters .filter-btn {
  background-color: rgba(255, 255, 255, 0.05);
  color: #a9a9a9;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}
.blck-portfolio .portfolio-filters .filter-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.blck-portfolio .portfolio-filters .filter-btn.is-active {
  background-color: #fdd835;
  color: #0a0a0a;
  border-color: #fdd835;
}
.blck-portfolio__gallery {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .blck-portfolio__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blck-portfolio__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  aspect-ratio: 4/3;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.blck-portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blck-portfolio__item.is-hidden {
  display: none;
}
.blck-portfolio .portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transform: translateZ(40px);
  transition: opacity 0.4s ease;
}
.blck-portfolio .portfolio-overlay__content {
  transform: translateY(15px);
  transition: transform 0.4s ease;
  width: 100%;
}
.blck-portfolio .portfolio-overlay h3 {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin: 0 0 10px 0;
}
.blck-portfolio .portfolio-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.blck-portfolio .portfolio-tags span {
  background-color: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}
.blck-portfolio__item:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.blck-portfolio__item:hover img {
  transform: scale(1.1);
}
.blck-portfolio__item:hover .portfolio-overlay {
  opacity: 1;
}
.blck-portfolio__item:hover .portfolio-overlay__content {
  transform: translateY(0);
}

.blck-contact {
  padding: 100px 0;
  position: relative;
  background-image: linear-gradient(rgba(10, 10, 10, 0.68), rgba(10, 10, 10, 0.795)), url("/public/images/compressed/small/contact-bg-min.webp");
  background-size: cover;
  background-position: center;
}
.blck-contact__wrapper {
  background-color: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}
.blck-contact .contact-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #fdd835;
  object-fit: cover;
}
.blck-contact h2 {
  font-size: 2.5rem;
}
.blck-contact p {
  color: #FFFFFF;
  margin: 1rem 0 2rem;
  font-size: 1.1rem;
}

/* ====== Section Trust / Clients (blck-trust) ====== */
.blck-trust {
  padding: clamp(48px, 6vw, 88px) 0;
  background: linear-gradient(180deg, rgba(17, 18, 23, 0.02), transparent);
  /* Responsive spans */
  /* Bandeau strip */
}
.blck-trust .blck-trust__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 44px);
}
.blck-trust .blck-trust__head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.blck-trust .blck-trust__head p {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
}
.blck-trust .blck-trust__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 22px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.blck-trust .blck-trust-card {
  grid-column: span 12;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  will-change: transform;
}
.blck-trust .blck-trust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.blck-trust .blck-trust-card__media {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f4f6;
  display: grid;
  place-items: center;
}
.blck-trust .blck-trust-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blck-trust .blck-trust-card__body {
  min-width: 0;
}
.blck-trust .blck-trust-card__title {
  font-size: 1.05rem;
  line-height: 1.2;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blck-trust .blck-trust-card__subtitle {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.25;
  margin: 0;
}
.blck-trust .blck-trust-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}
@media (min-width: 700px) {
  .blck-trust .blck-trust-card {
    grid-column: span 6;
  }
}
@media (min-width: 1024px) {
  .blck-trust .blck-trust-card {
    grid-column: span 4;
  }
}
.blck-trust .blck-trust__strip {
  margin-top: clamp(24px, 3.5vw, 40px);
  border: 1px dashed rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #6b7280;
  background: #fafafa;
}

/* Bouton ghost icon (réutilisable) */
.blck-btn--ghost {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #111827;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.blck-btn--ghost:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}
.blck-btn--ghost:active {
  transform: translateY(0);
}

/* Variante icône compacte */
.blck-btn--icon {
  padding: 10px 12px;
}
.blck-btn--icon svg {
  display: block;
}

/* A11y */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Section Bannière Solutions IA
   ========================================================================== */
@keyframes pulse-glow {
  0% {
    text-shadow: 0 0 30px rgba(253, 216, 53, 0.4);
  }
  50% {
    text-shadow: 0 0 50px rgba(253, 216, 53, 0.7);
  }
  100% {
    text-shadow: 0 0 30px rgba(253, 216, 53, 0.4);
  }
}
.blck-ia-banner {
  background-image: url("/public/images/ia-background.jpg");
  background-size: cover;
  background-position: center center;
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  z-index: 4;
}
.blck-ia-banner::before, .blck-ia-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blck-ia-banner::before {
  background: radial-gradient(circle at 15% 50%, rgba(18, 93, 222, 0.2), transparent 40%);
  opacity: 0.8;
  z-index: 2;
}
.blck-ia-banner::after {
  background-color: rgba(10, 10, 10, 0.85);
  z-index: 1;
}
.blck-ia-banner__wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 3;
}
.blck-ia-banner__icon {
  flex-shrink: 0;
}
.blck-ia-banner__icon .fa-brain {
  font-size: 120px;
  color: #fdd835;
  opacity: 0.8;
  animation: pulse-glow 4s ease-in-out infinite;
}
.blck-ia-banner__content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.blck-ia-banner__content h2 span {
  background: linear-gradient(45deg, #fdd835, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.blck-ia-banner__content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  max-width: 650px;
  margin-bottom: 30px;
}
.blck-ia-banner__content .ia-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.blck-ia-banner__content .ia-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid rgba(253, 216, 53, 0.5);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.blck-ia-banner__content .ia-features-list li:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-left-color: #fdd835;
}
.blck-ia-banner__content .ia-features-list .fa-check {
  color: #fdd835;
  margin-top: 4px;
}
.blck-ia-banner__content .ia-features-list .fa-leaf {
  color: #4de3a1;
  margin-top: 4px;
}
.blck-ia-banner__content .ia-features-list li:last-child {
  border-left-color: rgba(77, 227, 161, 0.5);
}
.blck-ia-banner__content .ia-features-list li:last-child:hover {
  border-left-color: #4de3a1;
}
@media (max-width: 992px) {
  .blck-ia-banner__wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .blck-ia-banner__icon .fa-brain {
    font-size: 80px;
  }
  .blck-ia-banner__content h2 {
    font-size: 2rem;
  }
  .blck-ia-banner__content .ia-features-list {
    text-align: left;
  }
}

/* ==========================================================================
   Section Processus
   ========================================================================== */
.blck-process {
  --card-bg: linear-gradient(135deg, rgba(20, 20, 20, 0.398), rgba(10, 10, 10, 0.8));
  --card-border-color: rgba(255, 255, 255, 0.15);
  --card-border-hover: #FFC107;
  --card-glow-color: rgba(#FFC107, 0.3);
  --connector-color: rgba(255, 255, 255, 0.2);
  padding: 120px 0;
  position: relative;
  background-color: #080808;
}
.blck-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 193, 7, 0.08), transparent 40%), radial-gradient(circle at 90% 80%, rgba(255, 193, 7, 0.05), transparent 50%), url("/public/images/illustration-gradient-process.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  z-index: 1;
}
.blck-process .blck-container {
  position: relative;
  z-index: 2;
}
.blck-process__head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.blck-process__head h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
  color: #FFFFFF;
  font-weight: 700;
}
.blck-process__head p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  display: block;
}
.blck-process__steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  counter-reset: process-counter;
}
.blck-process__step {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border-color);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  counter-increment: process-counter;
}
.blck-process__step::before {
  content: "0" counter(process-counter);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: #FFC107;
  z-index: 0;
}
.blck-process__step:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-8px);
  box-shadow: 0 0 40px -10px var(--card-glow-color);
}
.blck-process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 45px;
  left: 100%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  filter: blur(10px);
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.blck-process__icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.4), rgba(10, 10, 10, 0.2));
  border: 1px solid var(--card-border-color);
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.blck-process__step:hover .blck-process__icon {
  border-color: var(--card-border-hover);
  color: #FFC107;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 20px -5px var(--card-glow-color);
}
.blck-process__text {
  position: relative;
  z-index: 1;
}
.blck-process__text h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  color: #FFFFFF;
  font-weight: 600;
}
.blck-process__text span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .blck-process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
  .blck-process__step:nth-child(2)::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .blck-process {
    padding: 80px 0;
  }
  .blck-process__steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .blck-process__step::after {
    display: none !important;
  }
}
/* ==========================================================================
   Section Témoignages
   ========================================================================== */
.blck-testimonials {
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow-x: hidden;
}
.blck-testimonials::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.8);
}
.blck-testimonials .blck-container {
  position: relative;
  z-index: 2;
}
.blck-testimonials .blck-testimonials__slider,
.blck-testimonials .swiper {
  overflow: visible;
  padding-bottom: 50px;
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
}
.blck-testimonials__head {
  margin-bottom: 60px;
}
.blck-testimonials__head h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.blck-testimonials__head p {
  font-size: 1.1rem;
  color: #e0e0e0;
  max-width: 600px;
  margin: 0 auto;
}
.blck-testimonials .testimonial-card {
  background: rgba(30, 32, 40, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.blck-testimonials .card-content {
  position: relative;
  z-index: 2;
}
.blck-testimonials .card-content::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 8rem;
  font-family: serif;
  color: rgba(255, 255, 255, 0.05);
  z-index: -1;
  line-height: 1;
}
.blck-testimonials .card-content blockquote p {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
}
.blck-testimonials .testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}
.blck-testimonials .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}
.blck-testimonials .testimonial-author h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #fdd835;
}
.blck-testimonials .testimonial-author span {
  font-size: 0.9rem;
  color: #a9a9a9;
}
.blck-testimonials .swiper-pagination-bullet-active {
  background-color: #fdd835;
}
.blck-testimonials .swiper-button-next, .blck-testimonials .swiper-button-prev {
  color: #ffffff;
  transition: color 0.3s ease;
}
.blck-testimonials .swiper-button-next:hover, .blck-testimonials .swiper-button-prev:hover {
  color: #fdd835;
}
.blck-testimonials .swiper-pagination {
  display: block;
  bottom: 0 !important;
}

.blck-footer {
  padding: 2.5rem 0;
  margin-top: 0px;
  border-top: 1px solid #191919;
  background-color: #0A0A0A;
}
.blck-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #A3A3A3;
  font-size: 0.9rem;
}
.blck-footer .footer-content a {
  color: #A3A3A3;
}
.blck-footer .footer-content a:hover {
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .blck-header__nav {
    display: none;
  }
  .menu-icon {
    display: block;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 2rem;
  }
  .blck-contact__wrapper {
    flex-direction: column;
    text-align: center;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .blck-header__nav {
    display: none;
  }
  .burger-icon {
    display: flex;
  }
}

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