:root {
  --primary: #5694ff;
  --secondary: #FDFAF9;
  --accent: #FF9966; 
  --primary-invert: #fff;
  --secondary-invert: #fff;

  --gradient-primary: linear-gradient(230deg, #7445ff, #520df4);
  --gradient-secondary: linear-gradient(230deg, #0a1f44, #020024);

  /* DEFAULT COLOR OF TEXTS */
  --text-primary: #747474;
  --text-heading: #080605;

  /* FOR BUTTONS & INPUTS */
  --elements-roundness: 10rem;

  --space-between-blocks: 5.3rem;
  --space-between-blocks-small-screens: 3rem;
}

/* BASE STYLES */
body {
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: "PT Serif", serif;
  color: var(--text-heading);
  font-weight: 900;
}

a {
  color: var(--text-heading);
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  color: var(--text-heading);
  text-decoration: none;
}

.space-between-blocks {
  padding-top: var(--space-between-blocks-small-screens);
  padding-bottom: var(--space-between-blocks-small-screens);
}

/* UTILITY CLASSES */
.highlight {
  color: var(--primary);
}

.highlight2 {
  color: var(--accent);
}

/* BUTTONS */
button {
  color: inherit;
  padding: 0;
  background: none;
  border: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

.btn {
  font-size: 0.87rem;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  transition: 0.2s all;
}

.btn, .btn:hover, .btn:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

.btn:hover, .btn:focus {
  transform: scale(1.05);
}

.btn-primary, .btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: var(--primary-invert);
}

.btn-secondary, .btn-secondary:hover, .btn-secondary:focus {
  background: var(--accent);
  color: var(--secondary-invert);
}

.btn-primary--empty, .btn-primary--empty:hover, .btn-primary--empty:focus {
  color: var(--primary);
}

.btn-sm {
  padding: 0.8rem;
}

/* ICONS */
.fr-icon {
  position: relative;
  text-align: center;
  font-size: 1.2rem;
  color: var(--primary);
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 5px;
  background: rgba(255, 153, 102, 0.08);
  transition: 0.3s transform, 0.3s box-shadow, 0.3s background-color;
}

.fr-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fr-icon.accent {
  color: var(--accent);
}

.card-1:hover .fr-icon {
  transform: scale(1.1);
  background-color: var(--primary);
  color: white;
  box-shadow: 0 0 15px rgba(86, 148, 255, 0.4);
}

.card-1:hover .fr-icon.accent {
  background-color: var(--accent);
  box-shadow: 0 0 15px rgba(255, 153, 102, 0.4);
}

/* BLOCK HEADER */
.block__header {
  margin-bottom: 4rem;
}

.block__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
}

.block__paragraph {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: .9;
}

.block__pre-title {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

/* HEADER/HERO SECTION */
.hero {
  --hero-nav-height: 100px;
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--secondary);
  color: var(--block-text-color);
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-nav {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--hero-nav-height);
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-nav__item {
  margin: auto;
  font-size: 1.1rem;
}

.hero-nav__item a {
  color: #7c7c7c;
}

.hero-nav__logo {
  height: 45px;
  margin-bottom: 10px;
}

.hero-nav__link {
  color: inherit;
  opacity: .9;
  text-decoration: none;
  display: flex;
  align-items: center;
  outline: 0 !important;
}

.hero-nav__link:focus, .hero-nav__link:hover {
  color: inherit;
  text-decoration: none;
  opacity: 1;
}

.hero__content {
  text-align: initial;
}

.hero__body {
  padding-top: 2rem;
  padding-bottom: 3rem;
  padding-left: 0;
  padding-right: 2rem;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: 3.8rem;
  font-weight: 900;
}

.hero__paragraph {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.7;
  max-width: 500px;
}

.hero__btns-container {
  margin-left: -.5rem;
  margin-right: -.5rem;
}

.hero__row {
  height: 300px;
  position: static;
}

.hero_empty-column {
  height: 100%;
}

.hero__image-column {
  height: 100%;
  background-position: center;
  background-size: cover;
}

.switch-lang {
  position: relative;
  z-index: 999;
  font-weight: 400;
  font-size: 14px;
  color: #999;
  top: 15px;
}

/* FIXED MENU */
.fixed-nav-container {
  height: var(--hero-nav-height);
}

.hero-nav--is-sticky {
  --block-background: white;
  color: var(--block-text-color);
  background: var(--block-background);
  position: fixed !important;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  padding: 1rem !important;
  height: 60px;
  transition: .2s height;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: slideInDown;
}

.hero-nav--is-sticky .ft-menu__slider {
  color: var(--text-primary);
}

.hero-nav--is-sticky .btn {
  background: var(--gradient-primary, var(--primary));
  color: var(--primary-invert);
}

/* DROPDOWN NAVIGATION */
.ft-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2000;
  animation-name: fadeOut;
  animation-duration: .5s;
  animation-fill-mode: both;
}

.ft-menu .hero-nav__item {
  width: 100%;
  margin-top: .75rem;
  margin-bottom: .75rem;
}

.ft-menu--js-show {
  animation-name: fadeIn;
  animation-duration: .5s;
}

.ft-menu::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: var(--primary);
  opacity: .9;
  z-index: -1;
}

.ft-menu__slider {
  --block-background: white;
  --block-text-color: var(--text-primary);
  color: var(--block-text-color);
  background: var(--block-background);
  width: 80%;
  height: 100%;
  overflow: hidden;
  transform: translateX(-100%);
  transition: .5s transform;
  overflow-x: hidden;
  overflow-y: auto;
}

.ft-menu--js-show .ft-menu__slider {
  transform: translateX(0);
}

.ft-menu__close-btn {
  color: var(--primary-invert);
  position: absolute;
  right: 0;
  top: 0;
  font-size: 2rem;
  margin: 1rem;
  transform: translateX(100%);
  transition: .5s transform;
}

.ft-menu--js-show .ft-menu__close-btn {
  transform: translateX(0);
}

.ft-menu__close-btn:focus, .ft-menu__close-btn:hover {
  color: var(--primary-invert);
}

.ft-menu__slider .hero-nav__item {
  font-size: 1.1rem;
  padding: 0 1rem;
}

/* HERO NAV DROPDOWN */
.hero-nav__item--with-dropdown {
  position: relative;
  cursor: pointer;
}

.hero-nav__dropdown {
  position: static;
  width: 100%;
  height: auto;
  font-size: .9rem;
  border-top: 1px solid rgba(0, 0, 0, .1);
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: .3s all;
  color: var(--text-primary);
  text-align: initial;
  cursor: auto;
}

.dropdown--important {
  position: absolute;
  width: auto !important;
  top: 176%;
  left: 0;
  margin-top: 0;
  border-radius: 10px;
  border-top: none;
  box-shadow: 0 14px 50px 0 rgba(0, 0, 0, .1);
  background-color: #fff;
  z-index: 2;
  max-height: 0;
  padding: 2rem;
  padding-right: 3rem;
  overflow: visible;
  transition: .3s all;
}

.hero-nav__item--show-dropdown .hero-nav__dropdown {
  margin-top: 1rem;
  visibility: visible;
  opacity: 1;
  max-height: 9999px;
  padding-top: 1rem;
}

.hero-nav__item-chevron {
  transition: .3s all;
}

.hero-nav__item--show-dropdown .hero-nav__item-chevron {
  transform: rotate(180deg);
}

.hero-nav__item--dropdown-left .hero-nav__dropdown {
  transform: translateX(-15px) !important;
}

.hero-nav__item--dropdown-left .hero-nav__dropdown::before {
  left: 15%;
  right: auto;
}

.hero-nav__item--dropdown-right .hero-nav__dropdown {
  transform: translateX(15px) !important;
  left: auto;
  right: 0;
}

.hero-nav__item--dropdown-right .hero-nav__dropdown::before {
  left: auto;
  right: 15%;
}

.dropdown--important::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6.85px 8.1px 6.85px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  margin: auto;
}

.dropdown__title {
  color: var(--text-primary);
  opacity: .7;
  font-weight: 600;
  font-size: .9rem;
  display: block;
  margin-top: .5rem;
  margin-bottom: 1.18rem;
}

.dropdown__link {
  display: flex;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
  margin-bottom: 1.3rem;
  color: inherit;
  text-decoration: none;
}

.dropdown__link:focus, .dropdown__link:hover {
  color: inherit;
  text-decoration: none;
}

[javascript-language-selector] .dropdown__link {
  border-radius: .5rem;
  padding: .7rem;
  margin-bottom: 3px;
}

.dropdown__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dropdown__link:last-child {
  margin: 0;
}

[javascript-language-selector] .dropdown__link--selected,
[javascript-language-selector] .dropdown__link:focus,
[javascript-language-selector] .dropdown__link:hover {
  background: rgba(0, 0, 0, .06);
}

.dropdown__icon {
  width: 35px;
  height: 35px;
  background: var(--gradient-primary, var(--primary));
  color: var(--primary-invert);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  font-size: 13px;
}

.dropdown__item {
  max-width: 250px;
}

.dropdown__item-title {
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  z-index: -1;
}

.dropdown__item-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  width: 100%;
  background: var(--secondary);
  transform: translateY(2px);
  opacity: 0;
  transition: .2s;
}

[javascript-language-selector] .dropdown__item-title {
  white-space: nowrap;
}

[javascript-language-selector] .dropdown__item-title::before {
  display: none;
}

.dropdown__link:focus .dropdown__item-title::before,
.dropdown__link:hover .dropdown__item-title::before {
  height: 30%;
  transform: translateY(0);
  opacity: .4;
}

.dropdown__item-description {
  font-size: .9rem;
  opacity: .9;
  margin-top: .3rem;
  margin-bottom: 0;
}

.dropdown__item-description, .dropdown__item-title {
  width: 95%;
}

/* WELCOME SECTION */
.welcome-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.image-container {
  flex: 1;
  min-width: 300px;
  max-width: 45%;
  display: flex;
  gap: 30px;
}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: calc(50% - 15px);
}

.left-column {
  margin-top: -20px;
}

.right-column {
  margin-top: 20px;
}

.grid-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 230px;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content {
  flex: 1;
  min-width: 300px;
  padding-top: 20px;
}

.welcome-tag {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.welcome-section h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #222;
}

.description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
  max-width: 90%;
}

.cta-video {
  font-size: 0.87rem;
  padding: 0.8rem 0;
  transition: 0.2s all;
  border: none;
  box-shadow: none;
  outline: none;
  font-weight: 400;
  color: var(--text-primary);
  display: block;
  margin-top: 20px;
}

.cta-video span, .cta-video i {
  display: inline-block;
  vertical-align: middle;
}

.cta-video i {
  margin-right: 10px;
  color: var(--accent);
  font-size: 28px;
  transition: all 0.3s ease;
}

.cta-video:hover i {
  transform: scale(1.2); 
  margin-right: 14px;
}

/* STEPS BLOCK (POURQUOI NOUVEAU BATIMENT) */
.steps-block {
  background: var(--secondary);
  --block-text-color: var(--text-primary);
  color: var(--block-text-color);
  padding: 40px 0;
  padding-top: 80px;
}

.the-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
  position: relative;
  transition: transform 0.3s ease !important;
}

.the-step:hover {
  transform: translateY(-10px);
}

.the-step__content {
  padding: 0 1.4rem;
  text-align: center;
}

.the-step__symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.25rem;
  width: 4.25rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  background: rgba(0, 0, 0, .08);
}

.the-step__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.the-step__paragraph {
  font-size: 14px;
  line-height: 1.5;
  opacity: .95;
  margin: 0;
}

.the-step__arrow {
  display: none;
}

.the-step__img {
  margin: 0 auto 15px auto;
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 8px;
}

.the-step__img img {
  width: 100%;
  height: auto;
}

/* FEATURE BLOCK VIDEO */
.feature-block-video {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
  background-position: bottom right;
  background-repeat: no-repeat;
}

.feature-block-video__video {
  width: 100%;
  min-height: 200px;
  border-radius: 15px;
  box-shadow: 0 10px 36px 0 rgba(0, 0, 0, .1);
  background: 0 0;
  border: 1px solid #eee;
  border-top: none;
}

/* BRUXELLES SECTION */
.bruxelles-section {
  padding: 60px 0;
  padding-bottom: 90px;
  background-color: var(--secondary);
}

.trust-layout {
  display: flex;
  gap: 40px;
  position: relative;
}

.text-column {
  flex: 0 0 50%;
  padding-right: 20px;
  z-index: 2;
  padding-top: 80px;
}

.stats-column {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-left: -10%;
}

.stats-row {
  display: flex;
  gap: 15px;
  height: 200px;
}

.row-1 {
  justify-content: flex-end;
}

.row-1 .stat-item {
  flex: 0 0 33.33%;
  max-width: 200px;
}

.row-2 {
  justify-content: flex-end;
}

.row-2 .stat-item {
  flex: 0 0 calc(33% - 8px);
  height: 200px;
}

.row-3 {
  justify-content: space-between;
}

.row-3 .stat-item {
  flex: 0 0 calc(33.33% - 10px);
}

.stat-item {
  border-radius: 8px;
  overflow: hidden;
}

.stat-item.light-blue {
  background-color: #e8eef8;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
}

.stat-item.primary-color {
  background-color: #0d6efd;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
}

.stat-item.accent-color {
  background-color: var(--accent);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.light-blue .stat-number {
  color: #5694ff;
}

.stat-label {
  font-size: 0.9rem;
  margin-top: 5px;
}

.stat-item.image {
  position: relative;
}

.stat-item.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NOTRE PROJET-CHIFFRES */
.block-7 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
  background-image: radial-gradient(circle at 90% 10%, #FDFAF9 0%, transparent 60%);
  position: relative;
}

.projet-right .projet-desc {
  padding: 15px 0;
}

.chiffres-single {
  padding: 16px 25px;
  background: var(--secondary);
  border-radius: 8px;
  margin-bottom: 10px;
  max-width: 450px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chiffres-single:hover {
  transform: scale(1.03);
  cursor: default;
}

.chiffres-highlight1 {
  background: var(--text-heading);
  color: #fff;
}

.chiffres-highlight2 {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  margin-top: 20px;
  margin-bottom: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chiffres-highlight2:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.chiffres-libelle {
  font-weight: bold;
  float: left;
}

.chiffres-prix {
  text-align: right;
  float: right;
}

/* HISTORIQUE PROJET */
.block-2 {
  margin-bottom: 60px;
} 

.card-2 {
  margin-top: 30px;
}

.card-2:first-child {
  margin-top: 60px;
}

.card-2__img, .card-2__content {
  display: inline-block;
  vertical-align: text-top;
}

.card-2__img {
  width: 19%;
  border-radius: 6px;
  overflow: hidden;
}

.card-2__img img {
  width: 100%;
  height: auto;
}

.card-2__content {
  width: 80%;
  padding-left: 15px;
}

.card-2__content p {
  font-size: 14px;
  line-height: 1.4;
}

.block-2__dots-svg--left {
  color: var(--primary);
  top: 0;
  width: 250px;
  height: 100px;
  position: absolute;
  transform: translate(-15rem, 2rem) rotate(90deg);
  z-index: 2;
}

.block-2__dots-svg--right {
  color: var(--primary);
  bottom: 0;
  right: 0;
  width: 250px;
  height: 100px;
  position: absolute;
  transform: translate(14.5rem, -8rem) rotate(90deg);
  z-index: 2;
}

/* PARTICIPER */
.block-11 {
  padding-top: 60px;
  background: var(--secondary);
  padding-bottom: 100px;
}

.block-11 .block__title {
  margin-bottom: 50px;
}

.card-1__title {
  margin-left: 10px;
}

.block-11 .fr-icon, .block-11 .card-1__title {
  display: inline-block;
  vertical-align: middle;
}

.card-1__paragraph {
  margin-top: 12px;
  margin-bottom: 30px;
}

.card-1 .cta-input {
  max-width: 450px;
  margin-top: 8px;
}

/* Form email */
.cta-input {
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 14px;
  border-radius: 5px;
}

.cta-input__input {
  border: none;
  padding: 1rem 1rem;
  border: 1px solid #ccc;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  transition: all 0.3s ease-out;
  background: var(--secondary);
}

.cta-input__input:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--text-heading);
}

.cta-input__btn {
  font-size: 14px;
  padding: 1rem 1.3rem;
  color: #fff;
  background: var(--primary);
  border-radius: 0 5px 5px 0;
}

.cta-input__input, .cta-input__btn {
  display: inline-block;
}

/* Effet loading btn */
.btn--loading {
  opacity: 1;
  cursor: progress;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn--loading::after, .btn--loading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.btn--loading::before {
  background: var(--primary);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.btn--loading::after {
  margin: auto;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top: 2px solid var(--primary-invert);
  width: 1.5rem;
  height: 1.5rem;
  animation: spin .5s linear infinite;
  z-index: 2;
}

/* ACCORDION DON */
.accordion-wrap {
  min-height: 290px;
}
.block-7 .accordion-wrap,
.block-2 .accordion-wrap {
  min-height: auto;
}

.accordion-don {
  padding: 0 25px;
  border-radius: 0 6px 6px 0;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--accent);
  transition: all 0.3s ease;
}

.accordion-don:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.accordion-don .accordion-header {
  width: 100%;
  padding: 20px 0;
}

.accordion-don .accordion-header p {
  margin: 0;
  color: var(--text-heading);
}

.accordion-don .accordion-header i {
  color: var(--text-primary);
}

.accordion-don .accordion-content {
  padding: 0;
}
.accordion ul {
  font-size: 14px;
}

/* PROGRESS BAR */
.progress-container {
  padding: 50px 40px;
  margin-top: -150px;
  transition: all 0.3s ease;
}

.progress-container .container {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 15px 50px rgba(0, 0, 0, 0.03);
  padding: 40px 70px;
  border-radius: 8px;
  background: #fff;
  transition: all 0.5s ease;
}

.progress-container .container:hover {
  transform: scale(1.02);
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.progress-number {
  position: relative;
  font-size: 48px;
  font-weight: bold;
  color: var(--accent);
}

.progress-number-pledges {
  font-size: 24px;
  font-weight: bold;
  color: #FFB38A;
}

.progress-label {
  display: block;
  font-size: 16px;
  font-weight: normal;
  margin-top: -5px;
  color: var(--text-primary);
}

.progress-total {
  font-family: "PT Serif", serif;
  font-size: 22px;
  text-align: right;
  padding-bottom: 5px;
}

.progress-total span {
  font-weight: bold;
  color: var(--accent);
}

/* Barre de progression et pourcentage aligné */
.progress-bar {
  background-color: #f1f1f1;
  border-radius: 6px;
  height: 30px;
  width: 100%;
  position: relative;
  overflow: visible;
}

.progress-fill {
  background-color: var(--accent);
  height: 100%;
  width: 0%;
  border-radius: 6px 0 0 6px;
  transition: width 1.5s ease-out;
  position: relative;
  z-index: 2;
}

.progress-fill2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #FFB38A;
  width: 0%;
  border-radius: 6px;
  transition: width 1.5s ease-out;
  z-index: 1;
}

/* Container pour le pourcentage qui suit la barre */
.progress-percentage-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: 3;
}

/* Le pourcentage lui-même */
.progress-percentage {
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--text-primary);
  font-weight: bold;
  font-size: 14px;
  transition: left 1.5s ease-out;
  left: 12%;
  margin-left: 10px;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  align-items: center;
}

.target {
  font-family: "PT Serif", serif;
  font-size: 22px;
  color: var(--text-heading);
}

.target span {
  font-weight: bold;
}

/* TEMOIGNAGES MEMBRES - Swiper Carousel */
.block-20 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
  overflow: hidden; 
}

.testimonials-swiper {
  padding: 20px 60px 60px 60px;
  overflow: visible; 
}

/* TEMOIGNAGES MEMBRES - Style original avec Swiper */
.testimonial-card {
  display: flex;
  margin: 20px auto;
  align-items: flex-start;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  min-height: 280px;
  width: 100%;
}

.testimonial-photo {
  max-width: 29%;
  overflow: hidden;
  border-radius: 8px;
  display: inline-block;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  align-self: center;
}

.testimonial-photo img {
  width: 100%;
  height: auto;
}

.testimonial-content {
  width: 70%;
  display: inline-block;
  padding: 40px 40px;
  background: var(--secondary);
  border-radius: 8px;
  margin-left: -35px;
  padding-left: 65px;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-name {
  font-family: "PT Serif", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 15px 0;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0;
}

/* Swiper customization */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  color: var(--primary);
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -25px;
}

.testimonials-swiper .swiper-button-next:after,
.testimonials-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
  background: var(--primary);
  color: white;
}

.testimonials-swiper .swiper-pagination {
  bottom: 10px;
}

.testimonials-swiper .swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.3;
  width: 12px;
  height: 12px;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent);
}
.swiper-slide {
  opacity: 0.4; /* AJOUTER - slides non actifs en opacité basse */
  transition: opacity 0.3s ease; /* AJOUTER - transition douce */
}
.swiper-slide-active {
  opacity: 1; /* AJOUTER - slide actif en pleine opacité */
}

/* Responsive mobile */
@media (max-width: 992px) {
  .testimonial-card {
    flex-direction: column;
    margin: 20px 10px;
    text-align: center;
  }
  
  .testimonial-photo {
    max-width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
  }
  
  .testimonial-content {
    width: 100%;
    margin-left: 0;
    border-radius: 8px;
    padding: 20px;
    min-height: auto;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .testimonials-swiper {
    padding: 10px 10px 50px 10px;
  }
  
  .testimonial-card {
    margin: 10px 5px;
    padding: 20px;
  }
  
  .testimonials-swiper .swiper-button-next,
  .testimonials-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  
  .testimonials-swiper .swiper-button-next:after,
  .testimonials-swiper .swiper-button-prev:after {
    font-size: 16px;
  }
}

/* NEWSLETTER */
.block-29 {
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
}

.block-29__title {
  color: #fff;
}

.block-29__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  opacity: .7;
}

.block-29__paragraph, .block-29__title {
  text-align: center;
}

.newsletter .cta-input {
  display: inline-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: .87rem;
  padding: .4rem;
  --elements-roundness: 3px;
  border-radius: var(--elements-roundness);
  background: #fff;
}

.newsletter .cta-input__input {
  border: none;
  background: 0 0;
  padding: .8rem 1.5rem;
}

.newsletter .cta-input__input:focus {
  border: none;
  outline: 0;
  box-shadow: none;
}

.newsletter .cta-input__btn {
  width: 100%;
  font-size: .87rem;
  padding: .8rem 2.5rem;
  color: var(--primary-invert);
  background: var(--text-heading);
  border-radius: var(--elements-roundness);
}

.cta-p {
  text-align: center;
  font-size: .92rem;
  font-weight: 300;
  margin-top: 10px;
}

/* FOOTER */
.block-44 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  --text-primary: var(--block-text-color);
  background: var(--block-background);
  color: var(--block-text-color);
  font-size: 1rem;
  text-align: center;
}

.block-44__logo-container {
  width: 100%;
  margin-bottom: 2.5rem;
}

.block-44__logo {
  height: 36px;
}

.block-44__list {
  display: flex;
  flex-wrap: wrap;
}

.block-44__li-1 {
  font-weight: 600;
  margin-bottom: .6rem;
  margin: .9rem;
}

.block-44__li-1::after {
  content: '';
  display: inline-block;
  width: 0;
}

.block-44__link {
  color: var(--block-text-color);
}

.block-44__link:focus, .block-44__link:hover {
  color: inherit;
  text-decoration: underline;
}

.block-44__divider {
  margin: 2.4rem 0;
}

.block-44__extra-links {
  justify-content: center;
}

.block-44__copyrights {
  font-size: 14px;
  line-height: 1.6;
  max-width: 800px;
  text-align: center;
}

/* ACCORDIONS */
.accordion {
  overflow: hidden;
}

.accordion-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
  padding: 6px 0;
  color: #fff;
}

.accordion-header span {
  margin-left: 7px;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.accordion-header i {
  color: var(--primary);
}

.accordion-header:hover span {
  margin-right: 25px;
  margin-left: 12px;
}

.accordion-header .bi.bi-chevron-right {
  transition: all 0.3s ease;
  display: inline-block;
  color: var(--text-primary);
}

.accordion.active .accordion-header .bi.bi-chevron-right {
  transform: rotate(90deg);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 20px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  padding-top: 10px;
}

.accordion-content p {
  font-size: 14px;
  line-height: 1.4;
}

.accordion-content-inner {
  padding: 0 0;
}

/* POPUP VIDEO YT */
.video-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-popup.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.video-popup-content {
  position: relative;
  background-color: #fff;
  margin: auto;
  padding: 0;
  border-radius: 10px;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.video-popup.show .video-popup-content {
  transform: scale(1);
}

.close-popup {
  position: absolute;
  top: -40px;
  right: -15px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
}

.close-popup:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* Ratio 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .video-popup-content {
    width: 95%;
  }
  
  .close-popup {
    top: -35px;
    right: 0px;
  }
}

/* CUSTOM ICONS & STYLE */
.custom-icon {
  font-size: 1.6rem;
  background: transparent;
  position: relative;
  transition: 0.3s transform;
}

.custom-icon:hover {
  transform: rotate(5deg);
}

.wave-divider {
  height: 50px;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23F0F4F9'/%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  margin-top: -1px;
}

/* FIXED MENU */
.fixed-menu {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  color: white;
  z-index: 1000;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  width: auto;
  max-width: 100%;
  padding: 0;
  backdrop-filter: blur(4px);
  border-radius: 6px 6px 0 0;
}

.fixed-menu.visible {
  transform: translateX(-50%) translateY(0);
}

.fixed-menu .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0;
}

.fixed-menu__nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fixed-menu__item {
  padding: 0;
  position: relative;
}

.fixed-menu__link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 18px;
  transition: all 0.3s ease;
  display: block;
  background-color: rgba(86, 148, 255, 0.9);
}
.fixed-menu__link:hover, .fixed-menu__link.active {
  color: #fff;
  background-color: rgba(86, 148, 255, 1);
}
.fixed-menu__nav .fixed-menu__item:first-child a {
   border-radius: 6px 0 0 0;
}
.fixed-menu__nav .fixed-menu__item:last-child a {
   border-radius: 0 6px 0 0;
}

/* ANIMATIONS */
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* RESPONSIVE STYLES */
@media (min-width: 768px) {
  .newsletter .cta-input {
    flex-wrap: nowrap;
  }
  
  .newsletter .cta-input__btn {
    width: auto;
  }
  
  .block-44__extra-links {
    justify-content: flex-start;
  }
}

@media (min-width: 992px) {
  /* Spacing and General Layout */
  .space-between-blocks {
    padding-top: var(--space-between-blocks);
    padding-bottom: var(--space-between-blocks);
  }
  
  /* Buttons */
  .btn {
    padding: 0.8rem 2rem;
  }
  
  /* Block components */
  .block__title {
    font-size: 2.5rem;
  }
  
  .block__title--big {
    font-size: 3rem;
    line-height: 1.1;
  }
  
  .block__paragraph--big {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  /* Icons */
  .dropdown__icon {
    width: 40px;
    height: 40px;
  }
  
  /* Hero section */
  .hero__body {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  
  .hero__row {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0;
  }
  
  /* Header and Navigation */
  .hero-nav__item {
    margin: 0 1rem;
  }
  
  .nav--lg-side {
    flex-direction: row-reverse;
  }
  
  .hero-nav--is-sticky {
    height: 80px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 1rem 1.5rem !important;
  }
  
  /* Menu and Dropdowns */
  .ft-menu {
    animation-name: none;
    position: static;
    z-index: auto;
  }
  
  .ft-menu::before {
    content: none;
  }
  
  .ft-menu .hero-nav__item {
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .ft-menu__slider {
    --block-background: transparent;
    --block-text-color: var(--block-text-color);
    width: auto;
    height: auto;
    background: transparent;
    transform: none;
    display: flex;
    align-items: center;
    overflow: visible;
  }
  
  .ft-menu__slider .hero-nav__item {
    padding: 0;
  }
  
  .ft-menu__close-btn {
    display: none;
  }
  
  /* Hero Navigation Dropdown */
  .hero-nav__item--with-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 176%;
  }
  
  .hero-nav__dropdown {
    position: absolute;
    top: 176%;
    left: 0;
    margin-top: 0;
    border-radius: 10px;
    border-top: none;
    box-shadow: 0 14px 50px 0 rgba(0, 0, 0, .1);
    background-color: #fff;
    z-index: 2;
    max-height: 0;
    padding: 2.3rem 3rem 2rem 2rem;
    overflow: visible;
    transition: .3s all;
  }
  
  .hero-nav__dropdown::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6.85px 8.1px 6.85px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    margin: auto;
  }
  
  .dropdown__item-title {
    white-space: nowrap;
  }
  
  .hero-nav__item--show-dropdown .hero-nav__dropdown {
    margin-top: 0;
    padding: 2.3rem 3rem 2rem 2rem;
  }
  
  .hero-nav__item--lg-dropdown-left .hero-nav__dropdown {
    transform: translateX(-15px) !important;
    left: 0;
    right: auto;
  }
  
  .hero-nav__item--lg-dropdown-left .hero-nav__dropdown::before {
    left: 15%;
    right: auto;
  }
  
  .hero-nav__item--lg-dropdown-right .hero-nav__dropdown {
    transform: translateX(15px) !important;
    left: auto;
    right: 0;
  }
  
  .hero-nav__item--lg-dropdown-right .hero-nav__dropdown::before {
    left: auto;
    right: 15%;
  }
  
  /* Dropdown columns */
  .dropdown--of-1-columns {
    width: 400px;
  }
  
  .dropdown--of-2-columns {
    width: 700px;
  }
  
  .dropdown--language-selector {
    width: 250px;
  }
  
  /* Steps Block */
  .the-step__symbol-container {
    margin-bottom: 1.2rem;
  }
  
  .the-step__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  
  .the-step__arrow {
    display: block;
    position: absolute;
    top: 44px;
    right: 0;
    left: auto;
    bottom: 0;
    font-size: 2rem;
    transform: translateX(32px);
    width: 50px;
  }
  
  .the-step:last-of-type .the-step__arrow {
    display: none;
  }
  
  /* Feature Block Video */
  .feature-block-video__video {
    min-height: 457px;
  }
  
  /* Newsletter */
  .newsletter .cta-input {
    --elements-roundness: 10rem;
  }
  
  .newsletter .cta-input__input {
    max-width: 60%;
  }
  
  .cta-p {
    text-align: initial;
  }
  
  .block-29__title {
    font-size: 2.5rem;
  }
  
  .block-29__paragraph, .block-29__title {
    text-align: initial;
  }
  
  .block-29__paragraph {
    width: 90%;
  }
  
  /* Footer */
  .block-44 {
    text-align: initial;
  }
  
  .block-44__logo-container {
    width: auto;
    flex-grow: 1;
    margin-bottom: 0;
  }
  
  .block-44__li-1 {
    margin: 0;
  }
  
  .block-44__li-1::after {
    width: 2.8rem;
  }
  
  .block-44__li-1:last-child::after {
    width: 0;
  }
}

@media (min-width: 1200px) {
  .block__title--big {
    font-size: 3.5rem;
    line-height: 1.2;
  }
}

/* ===================
======================
RESPONSIVE MOBILE 
===================
=====================*/
@media (max-width: 992px) {
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
  }

  html {
    overflow-x: hidden;
  }
  .fixed-menu {
    width: 100%;
    max-width: 90%;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    box-shadow: none;
  }
  
  .fixed-menu__nav {
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
  }
  
  .fixed-menu__item {
    flex: 1;
    margin: 0;
  }
  .fixed-menu__link {
    letter-spacing: 0;
    padding: 16px 12px;
    width: 100%;
    text-align: center;
  }
  .fixed-menu__link:hover, 
  .fixed-menu__link.active {

  }

  .hero__body {
    padding: 0;
    padding-top: 50px;
    text-align: left;
  }
  .hero__content {
    padding: 0 20px;
  }
  .hero__title {
    font-size: 2.1rem;
    margin-top: 15px;
  }
  .hero__paragraph {
    font-size: 1.1rem;
    max-width: auto;
  }

  .welcome-section {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 50px;
  }
  .welcome-section .content {
    order: 1;
  }
  .image-container {
    order: 2;
    max-width: 100%;
    gap: 15px;
  }
  .image-column {
    gap: 15px;
  }
  .welcome-section h1 {
    font-size: 27px;
  }

  .steps-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .steps-block .mb-5 {
    margin-bottom: 0px !important;
  }
  .the-step {
    margin: 0;
    margin-top: 30px;
  }

  .bruxelles-section {
    padding: 0 20px;
  }
  .text-column {
    padding-top: 0;
    padding-right: 0;
    text-align: center;
  }
  .block__paragraph {
    font-size: 1rem;
    margin-bottom: 0 !important;
  }

  .trust-layout {
    flex-direction: column;
  }

  .stats-column {
    margin-left: 0;
  }
  .stats-row {
    height: auto;
  }
  .row-1 {
    flex-wrap: wrap;
  }
  .stat-item {
    min-height: 150px;

  }
   .row-2 .stat-item,
  .row-3 .stat-item {
    flex: 0 0 50%;
  }

    /* Réorganisation des blocs dans la section Bruxelles */
  .stats-row.row-1 .stat-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .stats-row.row-2 .stat-item {
    flex: 0 0 calc(50% - 8px);
    height: 180px;
  }
  
  .stats-row.row-3 {
    flex-wrap: wrap;
  }
  
  .stats-row.row-3 .stat-item:first-child {
    flex: 0 0 calc(50% - 8px);
    order: 1;
    padding: 20px;
  }
  
  .stats-row.row-3 .stat-item.image {
    flex: 0 0 calc(50% - 8px);
    order: 2;
  }
  .stats-row.row-3 .stat-item.accent-color {
    flex: 0 0 50%;
    order: 3;
    margin-right: auto;
  }


  
  .block-7 .row {
    flex-direction: column-reverse;
  }
  .projet-right .projet-desc {
    margin-bottom: 0px;
  }
  .projet-right .accordion {
    margin-top: 10px !important;
  }
  .chiffres {
    margin-top: 40px;
  }

  .block-2 {
    margin-bottom: 30px;
  }
  .projet-section .mb-5 {
    margin-bottom: 0 !important;
  }
  .card-2 {
    margin-top: 15px;
  }
  .card-2:first-child {
    margin-top: 25px;
  }
  .card-2__img {
    width: 18%;
  }
  .card-2__content p {
    font-size: 13px;
    line-height: 1.3;
  }
  .card-2__title {
    font-size: 1rem;
  }

  .block-11 {
    padding-top: 50px;
    padding-bottom: 130px;
  }
  .block-11 .block__title {
    margin-bottom: 30px;
  }

  /* Réorganiser les sections "Prendre part au projet" dans l'ordre: Prier, Suivre, Donner */
  .block-11 .row {
    flex-direction: column !important;
  }
  .block-11 .col-lg-6:last-child {
    order: 3;
    margin-top: 40px;
  }
  .block-11 .col-lg-6:first-child {
    order: 1;
    display: flex;
    flex-direction: column;
  }

  .accordion-wrap {
    min-height: initial;
  }

  .progress-container {
    margin-top: -120px;
    padding: 50px 0;
  }
  .progress-container .container {
    padding: 20px 30px;
  }

  .progress-stats, .stats {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .progress-number-pledges {
    margin-bottom: 10px;
  }
  
  .target {
    align-self: flex-end;
  }
  
  .progress-total {
    text-align: left;
    margin-top: 10px;
  }
  .progress-number-pledges, .progress-number {
    display: none;
  }

  .block-2__svg-shapes {
    display: none;
  }

  .description {
    max-width: 100%;
  }
  .temoignage {
    margin: 0 15px;
  }
  
  .temoignage-photo, .temoignage-texte {
    width: 100%;
  }
  
  .temoignage-photo {
    max-width: 100%;
    margin-bottom: 15px;
  }
  
  .temoignage-texte {
    margin-left: 0;
    border-radius: 8px;
    padding: 20px;
  }

  .block-29 {
    border-radius: 0;
  }
  .block-29 .mt-4 {
    margin-top: 0 !important;
  }


}

@media (max-width: 576px) {
  .image-container {
   /* flex-direction: column; */
  }

  
  .grid-item {
    /* height: 200px; */
  }
  
}

@media (max-width: 375px) {
  /* Ajustements pour iPhone SE et autres petits téléphones */
  .hero__title {
    font-size: 2.5rem;
  }
  
  .progress-container .container {
    padding: 20px 30px;
  }
  
  .fixed-menu__link {
    padding: 10px 12px;
    font-size: 12px;
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  /* Ajustements pour les téléphones en mode paysage */
  .hero {
    height: auto;
    min-height: 100vh;
  }
  
  .hero__body {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}