@charset "UTF-8";
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #lightgrey;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #fff;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0563bb;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #45505b;
  /* The default color of the main navmenu links */
  --nav-hover-color: #0563bb;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0563bb;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

:root {
  --galactic-color-1: #2f3bb3;
  /* Bleu Roi */
  --galactic-color-2: #225ddf;
  /* Bleu Cobalt */
  --galactic-color-3: #145da1;
  /* Bleu Océan */
  --galactic-color-4: #6643f7;
  /* Violet Électrique */
  --galactic-color-5: #285eda;
  /* Bleu Saphir */
  --galactic-color-6: #026294;
  /* Bleu Pétrole */
  --galactic-color-7: #053768;
  /* Bleu Nuit */
}

/* 2MAD - Thème sombre "Accueil theme 3" (header/footer/page-title/partners globaux + page d'accueil) */
/* GALACTIC BG */
.deconnect {
  color: #7b1e3c;
  border-color: #7b1e3c;
}
.deconnect:hover {
  color: #fff;
  background: #7b1e3c;
  border-color: #dc3545;
}

.bg-light h1,
.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light h6,
.card-header.bg-light h1,
.card-header.bg-light h2,
.card-header.bg-light h3,
.card-header.bg-light h4,
.card-header.bg-light h5,
.card-header.bg-light h6 {
  color: #333333 !important;
  text-shadow: none !important;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: #05070B;
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Bandeau Partenaires
------------------------------*/
.partners-banner {
  background: #05070B;
  border-top: 1px solid #1B2632;
  border-bottom: 1px solid #1B2632;
  padding: 24px 0;
}
.partners-banner__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.partners-banner__label {
  color: #93A3B2;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.partners-banner__logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.partner-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.partner-link__name {
  color: #93A3B2;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.partner-link img {
  height: 50px;
  width: auto;
  box-shadow: none;
  border-radius: 0;
  filter: grayscale(60%) brightness(1.4);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.partner-link:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1);
}

/*--------------------------------------------------------------
# Global Header — thème sombre
--------------------------------------------------------------*/
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 12px 16px;
  background: #8ED6F5;
  color: #05070B;
  font-weight: 600;
  z-index: 1100;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

:root {
  --header-h: 88px;
}
@media (min-width: 992px) {
  :root {
    --header-h: 104px;
  }
}

#main-content {
  padding-top: var(--header-h);
}

body:has(.home-hero) #main-content {
  padding-top: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid #1B2632;
  box-shadow: 0 1px 0 rgba(142, 214, 245, 0.18);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 7, 11, 0.82);
  backdrop-filter: blur(14px);
}
.header__bar {
  max-width: 1440px;
  min-height: var(--header-h);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 56px;
}
.header__brand img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  box-shadow: none;
  border-radius: 0;
}
.header__brand img:hover {
  transform: none;
  box-shadow: none;
}
.navmenu .header__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 26px;
  margin-left: auto;
  border-radius: 2px;
  font-family: var(--default-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-shadow: none;
  white-space: nowrap;
  transition: box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  color: #05070B;
  background: linear-gradient(100deg, #fff 0%, #CFEFFF 35%, #8ED6F5 70%, #fff 100%);
  background-size: 220% 100%;
  animation: home-grad-flow 6s ease-in-out infinite;
  box-shadow: 0 0 34px rgba(142, 214, 245, 0.35);
}
.navmenu .header__cta:hover {
  box-shadow: 0 0 44px rgba(142, 214, 245, 0.55);
  color: #05070B;
}
.header .header-phone {
  position: relative;
  z-index: 1051;
  margin-left: auto;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8ED6F5;
  font-size: 22px;
  border: 1px solid #8ED6F5;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.header .header-phone:hover {
  background: #8ED6F5;
  color: #05070B;
}
@media (min-width: 992px) {
  .header .header-phone {
    display: none;
  }
}
.header .header-toggle {
  position: relative;
  z-index: 1051;
  margin-left: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EAF2F8;
  font-size: 26px;
  border: 1px solid #26333F;
  border-radius: 2px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .header .header-toggle {
    display: none;
  }
}

/*--------------------------------------------------------------
# Navigation Menu — thème sombre
--------------------------------------------------------------*/
.navmenu {
  display: none;
}
.navmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
}
.navmenu a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 14px;
  color: #EAF2F8;
  font-family: var(--nav-font);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  text-shadow: none;
}
.navmenu a:hover, .navmenu a.active {
  color: #CFEFFF;
  text-shadow: none;
}
.navmenu a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, #8ED6F5, #CFEFFF);
}
.navmenu .header__cta,
.navmenu .header__cta:hover {
  color: #000;
}
@media (min-width: 992px) {
  .navmenu {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
  }
}
@media (max-width: 991.98px) {
  .navmenu {
    position: fixed;
    inset: 0;
    z-index: 1050;
    padding: var(--header-h) 20px 32px;
    background: rgba(5, 7, 11, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    overflow-y: auto;
  }
  #header.header-show .navmenu {
    display: flex;
  }
  .navmenu ul {
    flex-direction: column;
    gap: 0;
  }
  .navmenu a {
    min-height: 58px;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
    border-bottom: 1px solid #1B2632;
  }
  .navmenu .header__cta {
    margin: 24px 0 0;
    width: 100%;
    justify-content: center;
    min-height: 56px;
  }
}

/*--------------------------------------------------------------
# Global Footer — thème sombre
--------------------------------------------------------------*/
.footer {
  background: #05070B;
  border-top: 1px solid #1B2632;
  color: #93A3B2;
  font-size: 14px;
}
.footer__top {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) 20px clamp(24px, 3vw, 32px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__brand img {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
  margin: 0 0 14px;
  box-shadow: none;
  border-radius: 0;
}
.footer__brand img:hover {
  transform: none;
  box-shadow: none;
}
.footer__tagline {
  margin: 0 0 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #93A3B2;
}
.footer__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #93A3B2;
}
.footer__col-title {
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #CFEFFF;
  margin: 0 0 14px;
  text-shadow: 0 0 8px rgba(142, 214, 245, 0.3);
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer__links a {
  display: flex;
  align-items: center;
  min-height: 32px;
  font-size: 14px;
  color: #93A3B2;
  text-decoration: none;
  text-shadow: none;
}
.footer__links a:hover {
  color: #CFEFFF;
  text-shadow: none;
}
.footer__addresses {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__address-name {
  margin: 0 0 6px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #EAF2F8;
}
.footer address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: #93A3B2;
}
.footer .social-links {
  display: flex;
  gap: 10px;
  margin: 0 0 16px;
}
.footer .social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #26333F;
  border-radius: 2px;
  color: #EAF2F8;
  background: transparent;
  text-shadow: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.footer .social-links a:hover {
  border-color: #8ED6F5;
  color: #CFEFFF;
  text-shadow: none;
}
.footer__contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__contact-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #26333F;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  color: #EAF2F8;
  text-decoration: none;
  text-shadow: none;
}
.footer__contact-links a:hover {
  border-color: #8ED6F5;
  color: #CFEFFF;
}
.footer__flag {
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #000000 0%, #000000 33.333%, #FAE042 33.333%, #FAE042 66.666%, #ED2939 66.666%, #ED2939 100%);
}
.footer__bottom {
  border-top: 1px solid #1B2632;
  padding: 18px 20px calc(24px + env(safe-area-inset-bottom));
}
.footer__bottom-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}
.footer__legal a {
  font-size: 12px;
  color: #93A3B2;
  text-decoration: none;
}
.footer__legal a:hover {
  color: #CFEFFF;
}
.footer .copyright {
  font-size: 12px;
  color: #93A3B2;
}
.footer .copyright .sitename {
  color: #EAF2F8;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
html.is-preloading,
html.is-preloading body {
  overflow: hidden;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111214;
  overflow: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#preloader::before {
  content: "";
  position: absolute;
  width: 75vmax;
  height: 75vmax;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 30%, rgba(255, 255, 255, 0) 65%);
  animation: preloader-pulse-glow 2.4s ease-in-out infinite;
}

.preloader-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.preloader-logo {
  width: min(42vw, 200px);
  height: auto;
  opacity: 0;
  transform: scale(0.88);
  animation: preloader-logo-enter 700ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards, preloader-breathe 2.4s ease-in-out infinite 900ms;
}
.preloader-logo path,
.preloader-logo polygon {
  fill: #ffffff;
  stroke: none;
}

.preloader-bar {
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: #ffffff;
  transition: width 0.25s ease-out;
}

@keyframes preloader-logo-enter {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes preloader-breathe {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  50% {
    transform: scale(1.035);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
  }
}
@keyframes preloader-pulse-glow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}
@media (prefers-reduced-motion: reduce) {
  .preloader-logo,
  #preloader::before {
    animation: none !important;
  }
  .preloader-logo {
    opacity: 1 !important;
    transform: scale(1) !important;
  }
  .preloader-bar-fill {
    transition: none !important;
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: -15px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(5, 7, 11, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid #26333F;
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(142, 214, 245, 0.18);
  transition: opacity 0.3s ease, visibility 0.3s ease, bottom 0.3s ease, background 0.2s ease, border-color 0.2s ease;
}
.scroll-top i {
  font-size: 24px;
  color: #8ED6F5;
  line-height: 0;
  transition: color 0.2s ease;
}
.scroll-top:hover {
  background: #8ED6F5;
  border-color: #8ED6F5;
}
.scroll-top:hover i {
  color: #05070B;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs — thème sombre
--------------------------------------------------------------*/
.page-title {
  color: #EAF2F8;
  background-color: #05070B;
  border-bottom: 1px solid #1B2632;
  padding: 20px 0;
  position: relative;
}
.page-title h1 {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: #EAF2F8;
  text-shadow: none;
}
@media (min-width: 992px) {
  .page-title h1 {
    font-size: 34px;
  }
}
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #93A3B2;
}
.page-title .breadcrumbs ol li a {
  color: #93A3B2;
}
.page-title .breadcrumbs ol li.current {
  color: #8ED6F5;
}
.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}
.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: #26333F;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
.img_logo_gsm {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
}

section,
.section {
  color: var(--default-color);
  padding: 60px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 20px 0;
  padding: 20px 0;
  position: relative;
  text-align: center;
}
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-title p {
  margin-bottom: 0;
  margin-top: 2rem;
  max-width: 82ch;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/*--------------------------------------------------------------
# FLAG 2MAD Section
--------------------------------------------------------------*/
.flag_2ad {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}
.flag_2ad::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 1px, transparent 1px), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 1px, transparent 1px), radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px, 120px 120px;
  animation: sparkle 6s ease-in-out infinite;
  pointer-events: none;
}
.flag_2ad header {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  padding: 3rem 2rem;
  text-align: center;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: slideInUp 1s ease-out;
}
.flag_2ad header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  /* Couleur orange Halloween simple et lisible */
  color: #ff8c00;
  /* Ombre optimisée pour contraste sur fond bleu */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0px 0px 6px rgba(0, 0, 0, 0.5);
  /* Animation de scintillement très subtile */
  animation: subtleGlow 2s ease-in-out infinite alternate;
}
.flag_2ad header p {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  margin-bottom: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
.flag_2ad header p a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}
.flag_2ad header p a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  transition: width 0.3s ease;
}
.flag_2ad header p a:hover {
  color: #ffed4e;
  transform: translateY(-2px);
  text-shadow: 0 4px 8px rgba(255, 215, 0, 0.4);
}
.flag_2ad header p a:hover::after {
  width: 100%;
}
.flag_2ad div {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}
.flag_2ad div img {
  width: min(30vw, 300px);
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.flag_2ad div img:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}
@media (max-width: 594px) {
  .flag_2ad {
    padding: 2rem 0;
  }
  .flag_2ad header {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  .flag_2ad header p {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }
  .flag_2ad header p br {
    display: none;
  }
  .flag_2ad img {
    width: 40vw;
  }
}
@media (min-width: 595px) and (max-width: 768px) {
  .flag_2ad {
    padding: 2rem 0;
  }
  .flag_2ad header {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  .flag_2ad header p {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }
  .flag_2ad header p br {
    display: none;
  }
  .flag_2ad img {
    width: 50vw;
  }
}

@keyframes sparkle {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes subtleGlow {
  0% {
    color: #ff8c00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0px 0px 6px rgba(0, 0, 0, 0.5);
  }
  100% {
    color: #ffa500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0px 0px 6px rgba(0, 0, 0, 0.5), 0px 0px 10px rgba(255, 140, 0, 0.3);
  }
}
/* Désactiver l'animation pour les utilisateurs sensibles */
@media (prefers-reduced-motion: reduce) {
  h1 {
    animation: none;
    color: #ff8c00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0px 0px 6px rgba(0, 0, 0, 0.5);
  }
}
/* Version haute contraste */
@media (prefers-contrast: high) {
  h1 {
    color: #ffa500;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    animation: none;
  }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero video, .hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 70%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 900;
  font-style: oblique 14deg;
}
.hero p {
  margin: 5px 0 0 0;
  font-size: 26px;
}
.hero p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}
.hero .social-links {
  margin-top: 25px;
}
.hero .social-links a {
  font-size: 20px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}
.hero .social-links a:hover {
  color: var(--accent-color);
}
@media (max-width: 420px) {
  .hero h2 {
    font-size: 22px;
  }
  .hero p {
    font-size: 20px;
  }
}
@media (min-width: 421px) and (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }
  .hero p {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}
.portfolio .portfolio-filters li:hover, .portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}
.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}
.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}
@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}
.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}
.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}
.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .swiper-wrapper {
  height: auto;
}
.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}
.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 575px) {
  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}
.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}
.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}
.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}
.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}
.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}
.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}
.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}
.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}
.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}
.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}
.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}
.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes buttonPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes shimmerBorder {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes dotAnimation {
  0%, 100% {
    opacity: 0.7;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.05);
  }
}
.pricing.section.cursus {
  padding: 60px 0;
  position: relative;
}
.pricing.section.cursus .section-title {
  text-align: center;
  margin-bottom: 50px;
}
.pricing.section.cursus .section-title h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
}
.pricing.section.cursus .section-title h2 .underlight {
  position: relative;
  color: white;
}
.pricing.section.cursus .section-title h2 .underlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, violet 0%, white 50%, violet 100%);
  border-radius: 2px;
  box-shadow: 0 0 8px violet, 0 0 16px violet, 0 0 24px violet;
}
.pricing.section.cursus .section-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .pricing.section.cursus {
    padding: 40px 0;
  }
  .pricing.section.cursus .section-title {
    margin-bottom: 35px;
  }
  .pricing.section.cursus .section-title p {
    padding: 0 15px;
  }
}

.btn-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  padding: 0 20px;
}
.btn-section .btn {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 25px;
  padding: 12px 25px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  min-width: 100px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
}
.btn-section .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transition: left 0.5s ease;
}
.btn-section .btn:hover {
  background: rgba(138, 43, 226, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
}
.btn-section .btn:hover::before {
  left: 100%;
}
.btn-section .btn:active {
  transform: translateY(0);
  animation: buttonPulse 0.3s ease;
}
.btn-section .btn.active {
  background: rgba(138, 43, 226, 0.4);
  border-color: rgba(255, 255, 255, 0.7);
  color: white;
  box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .btn-section .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: 80px;
  }
}
@media (max-width: 480px) {
  .btn-section {
    flex-direction: column;
    align-items: center;
  }
  .btn-section .btn {
    width: 200px;
  }
}

#search-results {
  animation: fadeInUp 0.6s ease-out;
}
#search-results .pricing-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 1px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border-left: 4px solid rgba(138, 43, 226, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(138, 43, 226, 0.08);
}
#search-results .pricing-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.8) 0, rgba(255, 255, 255, 0.8) 6px, transparent 6px, transparent 12px);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
  animation: dotAnimation 3s ease-in-out infinite;
}
#search-results .pricing-item:last-child::after {
  display: none;
}
#search-results .pricing-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-left-color: white;
  transform: translateX(8px) translateY(-2px);
  box-shadow: 0 8px 30px rgba(138, 43, 226, 0.3), 0 0 25px rgba(255, 255, 255, 0.15);
}
#search-results .pricing-item:hover::after {
  background-image: repeating-linear-gradient(to right, violet 0, violet 6px, rgba(138, 43, 226, 0.6) 6px, rgba(138, 43, 226, 0.6) 12px);
  box-shadow: 0 0 8px rgba(138, 43, 226, 0.6);
  animation-duration: 1.5s;
}
#search-results .pricing-item h3 {
  margin: 0;
  flex: 1;
}
#search-results .pricing-item h3 a {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
  position: relative;
}
#search-results .pricing-item h3 a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, violet, white);
  transition: width 0.3s ease;
  border-radius: 1px;
  box-shadow: 0 0 3px violet, 0 0 6px violet, 0 0 9px violet;
}
#search-results .pricing-item h3 a:hover {
  color: white;
  text-shadow: 0 0 20px rgba(138, 43, 226, 0.8);
}
#search-results .pricing-item h3 a:hover::before {
  width: 100%;
}
#search-results .pricing-item h4 {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  background: rgba(138, 43, 226, 0.25);
  border-radius: 8px;
  border: 1px solid rgba(138, 43, 226, 0.4);
  min-width: fit-content;
  text-align: center;
}
#search-results .col-lg-6:nth-child(1) .pricing-item {
  animation-delay: 0s;
}
#search-results .col-lg-6:nth-child(2) .pricing-item {
  animation-delay: 0.1s;
}
#search-results .col-lg-6:nth-child(3) .pricing-item {
  animation-delay: 0.2s;
}
#search-results .col-lg-6:nth-child(4) .pricing-item {
  animation-delay: 0.3s;
}
#search-results .col-lg-6:nth-child(5) .pricing-item {
  animation-delay: 0.4s;
}
#search-results .col-lg-6:nth-child(6) .pricing-item {
  animation-delay: 0.5s;
}
#search-results .col-lg-6:nth-child(7) .pricing-item {
  animation-delay: 0.6s;
}
#search-results .col-lg-6:nth-child(8) .pricing-item {
  animation-delay: 0.7s;
}
#search-results p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  text-align: left;
  padding: 12px 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
  font-style: italic;
}
@media (max-width: 768px) {
  #search-results .pricing-item {
    padding: 16px 20px;
    margin-bottom: 12px;
  }
  #search-results .pricing-item h3 a {
    font-size: 1rem;
  }
  #search-results .pricing-item h4 {
    font-size: 0.8rem;
    padding: 4px 10px;
  }
  #search-results .pricing-item::after {
    left: 20px;
    right: 20px;
  }
}
@media (max-width: 480px) {
  #search-results .pricing-item {
    padding: 14px 16px;
    border-radius: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  #search-results .pricing-item h3 a {
    font-size: 0.95rem;
  }
  #search-results .pricing-item h4 {
    align-self: flex-end;
    font-size: 0.75rem;
  }
  #search-results .pricing-item::after {
    left: 16px;
    right: 16px;
  }
}

.card_cursus h4 a[hx-get*=cursus_by_day], .card_cursus p a[hx-get*=cursus_by_day],
.card_cursus p a[hx-get*=cursus_by_prof],
.card_cursus p a[hx-get*=cursus_by_level],
.card_cursus p a[hx-get*=cursus_by_age_bracket] {
  background: linear-gradient(90deg, rgba(138, 43, 226, 0.2), rgba(255, 255, 255, 0.1), rgba(138, 43, 226, 0.2));
  padding: 6px 12px;
  margin: 2px 4px;
  border-radius: 6px;
  border: 1px solid rgba(138, 43, 226, 0.4);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 2px violet, 0 0 4px violet, 0 0 6px violet;
}
.card_cursus h4 a[hx-get*=cursus_by_day]:hover, .card_cursus p a[hx-get*=cursus_by_day]:hover,
.card_cursus p a[hx-get*=cursus_by_prof]:hover,
.card_cursus p a[hx-get*=cursus_by_level]:hover,
.card_cursus p a[hx-get*=cursus_by_age_bracket]:hover {
  background: linear-gradient(90deg, rgba(138, 43, 226, 0.4), rgba(255, 255, 255, 0.2), rgba(138, 43, 226, 0.4));
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 0 8px white, 0 0 16px white, 0 0 24px white;
}

.card_cursus {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: fadeInUp 0.6s ease-out forwards;
}
.card_cursus::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.8) 0%, rgba(255, 255, 255, 0.6) 25%, rgba(102, 67, 247, 0.9) 50%, rgba(255, 255, 255, 0.4) 75%, rgba(138, 43, 226, 0.8) 100%);
  background-size: 400% 400%;
  animation: shimmerBorder 3s ease-in-out infinite;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  z-index: 1;
}
.card_cursus::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.8), transparent), radial-gradient(1px 1px at 70% 70%, rgba(138, 43, 226, 0.6), transparent), radial-gradient(1px 1px at 80% 20%, rgba(255, 255, 255, 0.5), transparent);
  background-size: 80px 80px;
  border-radius: inherit;
  opacity: 0.6;
  z-index: 2;
}
.card_cursus {
  box-shadow: 0 8px 32px rgba(138, 43, 226, 0.3), 0 0 25px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.card_cursus:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 50px rgba(138, 43, 226, 0.4), 0 0 40px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.card_cursus:hover::before {
  animation-duration: 1.5s;
}
.card_cursus:hover::after {
  opacity: 1;
}
.card_cursus:hover h4 a {
  color: white;
  text-shadow: 0 0 25px rgba(138, 43, 226, 0.9);
}
.card_cursus > * {
  position: relative;
  z-index: 10;
}
.card_cursus h4 {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 2.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
}
.card_cursus h4 a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.card_cursus h4 a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, violet, white);
  transition: width 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 4px violet, 0 0 8px violet, 0 0 12px violet;
}
.card_cursus h4 a:hover {
  color: white;
}
.card_cursus h4 a:hover::after {
  width: 100%;
}
.card_cursus hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(138, 43, 226, 0.8) 20%, rgba(255, 255, 255, 0.8) 50%, rgba(138, 43, 226, 0.8) 80%, transparent 100%);
  margin: 16px 0;
  position: relative;
  box-shadow: 0 0 5px violet, 0 0 10px violet, 0 0 15px violet;
}
.card_cursus hr::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 6px;
  background: white;
  border-radius: 3px;
  box-shadow: 0 0 8px white, 0 0 16px white, 0 0 24px white;
}
.card_cursus p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 2.2;
  margin-bottom: 12px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
}
.card_cursus p:last-child {
  margin-bottom: 0;
}
.card_cursus h4 a[hx-get*=cursus_by_day] {
  font-size: 0.95rem;
}
.card_cursus:nth-child(2) {
  animation-delay: 0.1s;
}
.card_cursus:nth-child(3) {
  animation-delay: 0.2s;
}
.card_cursus:nth-child(4) {
  animation-delay: 0.3s;
}
.card_cursus:nth-child(5) {
  animation-delay: 0.4s;
}
.card_cursus:nth-child(6) {
  animation-delay: 0.5s;
}
@media (max-width: 768px) {
  .card_cursus {
    padding: 20px;
    margin-bottom: 20px;
  }
  .card_cursus h4 {
    font-size: 1.1rem;
  }
  .card_cursus p {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .card_cursus {
    padding: 16px;
    border-radius: 12px;
  }
  .card_cursus h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .card_cursus p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  .card_cursus hr {
    margin: 12px 0;
  }
}

.htmx-indicator {
  display: none;
}
.htmx-indicator.htmx-request {
  display: inline-block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}
.htmx-indicator.htmx-request::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid violet;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

#message .alert {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 193, 7, 0.4);
  color: white;
  border-radius: 10px;
}
#message .alert .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.card_cursus:focus-within {
  outline: 2px solid rgba(102, 67, 247, 0.6);
  outline-offset: 2px;
}

.card_cursus.htmx-request {
  opacity: 0.8;
  transform: scale(0.98);
}
.card_cursus.htmx-request::before {
  animation-duration: 0.8s;
}

.download-section {
  margin-top: 3.5rem;
  text-align: center;
}
.download-section p {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
}
.download-section .download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  margin-left: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}
.download-section .download-link::before {
  content: "⬇";
  font-size: 1.2rem;
  margin-right: 0.25rem;
}
.download-section .download-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color: white;
  text-decoration: none;
}
.download-section .download-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}
.download-section .download-link:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}
.download-section .download-link:hover::before {
  animation: bounce 0.6s ease-in-out;
}
.download-section .download-link strong {
  font-weight: inherit;
}

@keyframes bounce {
  0%, 20%, 60%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  80% {
    transform: translateY(-1px);
  }
}
@media (max-width: 768px) {
  .download-section {
    margin-top: 1rem;
  }
  .download-section p {
    font-size: 1rem;
  }
  .download-section .download-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    margin-left: 0.25rem;
    margin-top: 0.5rem;
    display: inline-block;
  }
}
.download-section.minimal .download-link {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
  box-shadow: none;
}
.download-section.minimal .download-link:hover {
  background: #667eea;
  color: white;
  transform: none;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

/*--------------------------------------------------------------
# Page "Fiche professeur" (cursus_by_prof) — design "Accueil theme 3"
# Réutilise .cours-results / .cours-results__inner / .cours-results__title
# (sections/_cours-results.scss) et .cours-meta / .cours-grid / .cours-card /
# .cours-empty (mêmes styles que "Tous nos cours") tels quels : seul le bloc
# .prof-hero (photo + bio) est spécifique à cette page.
--------------------------------------------------------------*/
.prof-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
  margin-bottom: clamp(48px, 6vw, 72px);
  padding: clamp(24px, 3.2vw, 40px);
}
@media (min-width: 992px) {
  .prof-hero {
    display: grid;
    grid-template-columns: minmax(300px, 1.05fr) minmax(280px, 0.85fr);
    gap: clamp(32px, 4.4vw, 64px);
    align-items: start;
  }
}
.prof-hero__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prof-hero__kicker {
  margin: 0 0 6px;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff, #8ED6F5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #D2E5F4;
}
.prof-hero__title {
  display: inline-block;
  color: #fff;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 4px;
  text-shadow: none;
}
.prof-hero__bio {
  margin: 14px 0 0;
  max-width: 60ch;
  font-size: clamp(17px, 1.5vw, 17px);
  font-weight: 500;
  line-height: 1.7;
  color: #EAF2F8;
}
.prof-hero__bio p {
  margin: 0 0 1em;
  color: #EAF2F8;
}
.prof-hero__bio p:last-child {
  margin-bottom: 0;
}
.prof-hero__birthdate {
  display: inline-block;
  margin: 18px 0 0;
  padding: 6px 14px;
  border: 1px solid #26333F;
  background: rgba(255, 255, 255, 0.03);
  font-family: "Space Mono", monospace;
  font-size: 13px;
  color: #EAF2F8;
}
.prof-hero__figure-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.prof-hero__back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.978);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #8ED6F5;
  text-decoration: none;
  text-shadow: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.prof-hero__back:hover {
  border-color: #8ED6F5;
  color: #fff;
}
.prof-hero__figure {
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 50px -14px rgba(0, 0, 0, 0.7), 0 10px 20px -8px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.prof-hero__figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--ba), transparent 0%, transparent 78%, #8ED6F5 88%, #fff 94%, #8ED6F5 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter: drop-shadow(0 0 5px rgba(142, 214, 245, 0.85)) drop-shadow(0 0 12px rgba(142, 214, 245, 0.45));
  animation: home-border-sweep 5s linear infinite;
  pointer-events: none;
}
.prof-hero__figure img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(280px, 44vw, 560px);
  object-fit: contain;
}
.prof-hero__figure img.prof-hero__figure-logo {
  max-width: 40%;
  max-height: 35%;
  opacity: 0.85;
}
.prof-hero__slideshow {
  position: relative;
  width: 100%;
  height: clamp(280px, 44vw, 560px);
  border-radius: 6px;
  overflow: hidden;
}
.prof-hero__slideshow-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.prof-hero__slideshow-item.is-active {
  opacity: 1;
}
.prof-hero__slideshow-item::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.5);
  transform: scale(1.15);
}
.prof-hero__slideshow-item img {
  position: relative;
  z-index: 1;
}
.prof-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 2;
  display: flex;
  transform: translateX(-50%);
}
.prof-hero__dot {
  width: 26px;
  height: 26px;
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.prof-hero__dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.prof-hero__dot:hover::after {
  background: rgba(255, 255, 255, 0.75);
}
.prof-hero__dot.is-active::after {
  background: #8ED6F5;
  transform: scale(1.3);
}
.prof-hero__gallery {
  margin-top: 8px;
}
.prof-hero__gallery-item {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid #1B2632;
  border-radius: 4px;
  transition: border-color 0.25s ease;
}
.prof-hero__gallery-item:hover {
  border-color: #8ED6F5;
}

.prof-hero__youtube {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: clamp(48px, 6vw, 72px);
  background: rgba(11, 16, 23, 0.62);
  border: 1px solid #1B2632;
  border-radius: 6px;
}
.prof-hero__youtube iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-title {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--accent-color);
  position: relative;
}
.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}
.resume .resume-item h5 {
  font-size: 16px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}
.resume .resume-item ul {
  padding-left: 20px;
}
.resume .resume-item:last-child {
  padding-bottom: 0;
}
.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}
.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}
.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}
.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}
.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}
.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  color: #8A008A;
}
.services .service-item h3 a {
  color: #8A008A;
}
.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #000;
}
.services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}
.services .service-item.item-cyan i {
  color: #0dcaf0;
}
.services .service-item.item-cyan:hover .icon i {
  color: #fff;
}
.services .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}
.services .service-item.item-orange i {
  color: #fd7e14;
}
.services .service-item.item-orange:hover .icon i {
  color: #fff;
}
.services .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}
.services .service-item.item-teal i {
  color: #20c997;
}
.services .service-item.item-teal:hover .icon i {
  color: #fff;
}
.services .service-item.item-teal:hover .icon path {
  fill: #20c997;
}
.services .service-item.item-red i {
  color: #df1529;
}
.services .service-item.item-red:hover .icon i {
  color: #fff;
}
.services .service-item.item-red:hover .icon path {
  fill: #df1529;
}
.services .service-item.item-indigo i {
  color: #6610f2;
}
.services .service-item.item-indigo:hover .icon i {
  color: #fff;
}
.services .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}
.services .service-item.item-pink i {
  color: #f3268c;
}
.services .service-item.item-pink:hover .icon i {
  color: #fff;
}
.services .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}
.services {
  /* Styles pour le conteneur */
}
.services .conteneur-iframe {
  position: relative;
  width: 100%;
  height: 100vh; /* Définissez la hauteur souhaitée pour la div */
}
.services {
  /* Styles pour l'iframe à l'intérieur du conteneur */
}
.services .conteneur-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}
.service-details .service-box + .service-box {
  margin-top: 30px;
}
.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}
.service-details .services-list a:first-child {
  margin-top: 0;
}
.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}
.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}
.service-details .services-list a.active i {
  color: var(--contrast-color);
}
.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}
.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}
.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}
.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}
.service-details .download-catalog a:hover {
  color: var(--accent-color);
}
.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}
.service-details .help-box .help-icon {
  font-size: 48px;
}
.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}
.service-details .services-img {
  margin-bottom: 20px;
}
.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}
.service-details p {
  font-size: 15px;
}
.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.stats .stats-item {
  margin-top: 10px;
  width: 100%;
  position: relative;
  text-align: center;
  z-index: 0;
}
.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.stats .stats-item p {
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--accent-color);
  padding-left: 30px;
}
.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 10px 0;
}
.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}
.testimonials .testimonial-item p {
  font-style: italic;
}
.testimonials .swiper-wrapper {
  height: auto;
}
.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.galactic-background {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 500px; /* Ajuste la hauteur selon tes besoins */
  background-color: var(--galactic-color-7); /* Couleur de fond par défaut, la plus sombre */
  display: flex; /* Pour centrer le contenu si besoin */
  justify-content: center;
  align-items: center;
  color: white; /* Couleur du texte sur ce fond */
}

/* Pseudo-élément pour les nébuleuses (formes SVG animées) */
.galactic-background::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%; /* Plus grand que 100% pour que les formes bougent sans coupure */
  height: 200%;
  background: radial-gradient(circle at 20% 30%, var(--galactic-color-1) 0%, transparent 30%), radial-gradient(circle at 70% 80%, var(--galactic-color-2) 0%, transparent 30%), radial-gradient(circle at 50% 10%, var(--galactic-color-3) 0%, transparent 30%), radial-gradient(circle at 10% 90%, var(--galactic-color-4) 0%, transparent 30%), radial-gradient(circle at 90% 40%, var(--galactic-color-5) 0%, transparent 30%), radial-gradient(circle at 30% 60%, var(--galactic-color-6) 0%, transparent 30%);
  filter: url(#galactic-nebula-filter); /* Applique le filtre SVG */
  animation: nebula-movement 40s infinite alternate ease-in-out, color-shift 30s infinite alternate ease-in-out;
  transform-origin: center center;
  z-index: 1; /* S'assure que les nébuleuses sont en dessous du contenu */
}

/* Pseudo-élément pour les étoiles */
.galactic-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  box-shadow: 10px 10px 0 0 rgba(255, 255, 255, 0.8), 50px 80px 0 0 rgba(255, 255, 255, 0.6), 120px 30px 0 0 rgba(255, 255, 255, 0.9), 180px 100px 0 0 rgba(255, 255, 255, 0.7), 250px 50px 0 0 rgba(255, 255, 255, 0.5), 300px 150px 0 0 rgba(255, 255, 255, 0.8), 350px 20px 0 0 rgba(255, 255, 255, 0.6), 400px 180px 0 0 rgba(255, 255, 255, 0.9), 450px 70px 0 0 rgba(255, 255, 255, 0.7), 500px 200px 0 0 rgba(255, 255, 255, 0.5), 600px 10px 0 0 rgba(255, 255, 255, 0.8), 650px 120px 0 0 rgba(255, 255, 255, 0.6), 700px 40px 0 0 rgba(255, 255, 255, 0.9), 750px 160px 0 0 rgba(255, 255, 255, 0.7), 800px 90px 0 0 rgba(255, 255, 255, 0.5), 850px 220px 0 0 rgba(255, 255, 255, 0.8), 900px 60px 0 0 rgba(255, 255, 255, 0.6), 950px 190px 0 0 rgba(255, 255, 255, 0.9), 1000px 110px 0 0 rgba(255, 255, 255, 0.7), 1050px 240px 0 0 rgba(255, 255, 255, 0.5), 1100px 30px 0 0 rgba(255, 255, 255, 0.8), 1150px 140px 0 0 rgba(255, 255, 255, 0.6), 1200px 70px 0 0 rgba(255, 255, 255, 0.9), 1250px 200px 0 0 rgba(255, 255, 255, 0.7), 1300px 100px 0 0 rgba(255, 255, 255, 0.5), 1350px 250px 0 0 rgba(255, 255, 255, 0.8), 1400px 80px 0 0 rgba(255, 255, 255, 0.6), 1450px 210px 0 0 rgba(255, 255, 255, 0.9), 1500px 130px 0 0 rgba(255, 255, 255, 0.7), 1550px 260px 0 0 rgba(255, 255, 255, 0.5);
  animation: star-twinkle 15s infinite alternate ease-in-out;
  z-index: 2; /* S'assure que les étoiles sont au-dessus des nébuleuses */
}

/* Animation de mouvement pour les nébuleuses */
@keyframes nebula-movement {
  0% {
    transform: scale(1) rotate(0deg) translate(0, 0);
  }
  25% {
    transform: scale(1.05) rotate(5deg) translate(5%, -5%);
  }
  50% {
    transform: scale(0.95) rotate(-5deg) translate(-5%, 5%);
  }
  75% {
    transform: scale(1.02) rotate(3deg) translate(3%, 3%);
  }
  100% {
    transform: scale(1) rotate(0deg) translate(0, 0);
  }
}
/* Animation de changement de couleur pour les nébuleuses */
@keyframes color-shift {
  0% {
    background: radial-gradient(circle at 20% 30%, var(--galactic-color-1) 0%, transparent 30%), radial-gradient(circle at 70% 80%, var(--galactic-color-2) 0%, transparent 30%), radial-gradient(circle at 50% 10%, var(--galactic-color-3) 0%, transparent 30%), radial-gradient(circle at 10% 90%, var(--galactic-color-4) 0%, transparent 30%), radial-gradient(circle at 90% 40%, var(--galactic-color-5) 0%, transparent 30%), radial-gradient(circle at 30% 60%, var(--galactic-color-6) 0%, transparent 30%);
  }
  20% {
    background: radial-gradient(circle at 25% 35%, var(--galactic-color-2) 0%, transparent 30%), radial-gradient(circle at 75% 85%, var(--galactic-color-3) 0%, transparent 30%), radial-gradient(circle at 55% 15%, var(--galactic-color-4) 0%, transparent 30%), radial-gradient(circle at 15% 95%, var(--galactic-color-5) 0%, transparent 30%), radial-gradient(circle at 95% 45%, var(--galactic-color-6) 0%, transparent 30%), radial-gradient(circle at 35% 65%, var(--galactic-color-7) 0%, transparent 30%);
  }
  40% {
    background: radial-gradient(circle at 30% 40%, var(--galactic-color-3) 0%, transparent 30%), radial-gradient(circle at 80% 90%, var(--galactic-color-4) 0%, transparent 30%), radial-gradient(circle at 60% 20%, var(--galactic-color-5) 0%, transparent 30%), radial-gradient(circle at 20% 100%, var(--galactic-color-6) 0%, transparent 30%), radial-gradient(circle at 100% 50%, var(--galactic-color-7) 0%, transparent 30%), radial-gradient(circle at 40% 70%, var(--galactic-color-1) 0%, transparent 30%);
  }
  60% {
    background: radial-gradient(circle at 35% 45%, var(--galactic-color-4) 0%, transparent 30%), radial-gradient(circle at 85% 95%, var(--galactic-color-5) 0%, transparent 30%), radial-gradient(circle at 65% 25%, var(--galactic-color-6) 0%, transparent 30%), radial-gradient(circle at 25% 105%, var(--galactic-color-7) 0%, transparent 30%), radial-gradient(circle at 105% 55%, var(--galactic-color-1) 0%, transparent 30%), radial-gradient(circle at 45% 75%, var(--galactic-color-2) 0%, transparent 30%);
  }
  80% {
    background: radial-gradient(circle at 40% 50%, var(--galactic-color-5) 0%, transparent 30%), radial-gradient(circle at 90% 100%, var(--galactic-color-6) 0%, transparent 30%), radial-gradient(circle at 70% 30%, var(--galactic-color-7) 0%, transparent 30%), radial-gradient(circle at 30% 110%, var(--galactic-color-1) 0%, transparent 30%), radial-gradient(circle at 110% 60%, var(--galactic-color-2) 0%, transparent 30%), radial-gradient(circle at 50% 80%, var(--galactic-color-3) 0%, transparent 30%);
  }
  100% {
    background: radial-gradient(circle at 20% 30%, var(--galactic-color-1) 0%, transparent 30%), radial-gradient(circle at 70% 80%, var(--galactic-color-2) 0%, transparent 30%), radial-gradient(circle at 50% 10%, var(--galactic-color-3) 0%, transparent 30%), radial-gradient(circle at 10% 90%, var(--galactic-color-4) 0%, transparent 30%), radial-gradient(circle at 90% 40%, var(--galactic-color-5) 0%, transparent 30%), radial-gradient(circle at 30% 60%, var(--galactic-color-6) 0%, transparent 30%);
  }
}
/* Animation pour le scintillement des étoiles */
@keyframes star-twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}
/*--------------------------------------------------------------
# Page d'accueil — éléments partagés (keyframes, boutons, mixins)
--------------------------------------------------------------*/
@property --ba {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes home-border-sweep {
  to {
    --ba: 360deg;
  }
}
@keyframes home-grad-flow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes home-scan {
  0% {
    transform: translateX(-30%);
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  88% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(130%);
    opacity: 0;
  }
}
@keyframes home-glow-cool {
  0%, 100% {
    text-shadow: 0 0 1px rgb(226, 246, 255), 0 0 8px rgba(130, 205, 240, 0.7), 0 0 22px rgba(100, 180, 222, 0.48), 0 0 46px rgba(90, 170, 215, 0.28);
  }
  50% {
    text-shadow: 0 0 2px rgb(240, 252, 255), 0 0 12px rgba(160, 222, 250, 0.85), 0 0 32px rgba(100, 180, 222, 0.6), 0 0 64px rgba(90, 170, 215, 0.38);
  }
}
@keyframes home-glow-warm {
  0%, 100% {
    text-shadow: 0 0 1px rgb(255, 238, 214), 0 0 8px rgba(255, 182, 90, 0.7), 0 0 22px rgba(240, 144, 78, 0.45), 0 0 46px rgba(240, 144, 78, 0.26);
  }
  50% {
    text-shadow: 0 0 2px rgb(255, 246, 232), 0 0 12px rgba(255, 205, 130, 0.85), 0 0 32px rgba(240, 144, 78, 0.58), 0 0 64px rgba(240, 144, 78, 0.34);
  }
}
@keyframes home-glow-flame {
  0%, 100% {
    text-shadow: 0 0 1px rgb(255, 255, 255), 0 0 8px rgba(255, 140, 80, 0.7), 0 0 22px rgba(230, 70, 50, 0.45), 0 0 46px rgba(120, 170, 225, 0.28);
  }
  50% {
    text-shadow: 0 0 2px rgb(255, 255, 255), 0 0 12px rgba(255, 170, 110, 0.85), 0 0 32px rgba(230, 70, 50, 0.55), 0 0 64px rgba(120, 170, 225, 0.36);
  }
}
@keyframes home-grad-glow {
  0%, 100% {
    text-shadow: 0 0 4px rgba(226, 246, 255, 0.75), 0 0 18px rgba(142, 214, 245, 0.5), 0 0 40px rgba(90, 170, 215, 0.3);
  }
  50% {
    text-shadow: 0 0 7px rgba(240, 252, 255, 0.9), 0 0 28px rgba(160, 222, 250, 0.62), 0 0 56px rgba(90, 170, 215, 0.4);
  }
}
.home-hero,
.home-intro,
.home-parallax,
.home-publics,
.home-agenda,
.home-production,
.cours-hero,
.cours-results,
.cours-continue,
.production-hero,
.production-services,
.production-gallery,
.production-cta,
.publics-hero,
.publics-segments,
.publics-why,
.publics-mutuelles,
.publics-cta,
.stages-hero,
.stages-list,
.stages-info,
.stages-detail-hero,
.stages-detail,
.about-hero,
.about-histoire,
.about-exploits,
.about-studios,
.about-cta,
.contact-hero,
.contact-info {
  padding: 0;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 2px;
  font-family: var(--default-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-shadow: none;
  transition: box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.home-btn--gradient {
  color: #05070B;
  background: linear-gradient(100deg, #fff 0%, var(--theme-color, #CFEFFF) 35%, var(--theme-color, #8ED6F5) 70%, #fff 100%);
  background-size: 220% 100%;
  animation: home-grad-flow 6s ease-in-out infinite;
  box-shadow: 0 0 34px color-mix(in srgb, var(--theme-color, #CFEFFF) 65%, transparent);
}
.home-btn--gradient:hover {
  box-shadow: 0 0 44px color-mix(in srgb, var(--theme-color, #CFEFFF) 85%, transparent);
  color: #05070B;
}
.home-btn--solid {
  color: #05070B;
  background: #8ED6F5;
}
.home-btn--solid:hover {
  background: #CFEFFF;
  color: #05070B;
}
.home-btn--outline {
  color: #EAF2F8;
  border: 2px solid rgba(240, 168, 122, 0.7);
  text-shadow: 0 2px 10px rgba(255, 138, 61, 0.55);
}
.home-btn--outline:hover {
  background: #FF6A3D;
  border-color: #FF6A3D;
  color: #180703;
  text-shadow: none;
}
.home-btn--ghost {
  color: #93A3B2;
  background: transparent;
  border: 1px solid #26333F;
  cursor: pointer;
}
.home-btn--ghost:hover {
  border-color: #F35BB0;
  color: #F35BB0;
}
.home-btn:disabled {
  opacity: 0.45;
  filter: grayscale(0.4);
  cursor: not-allowed;
  animation-play-state: paused;
  box-shadow: none;
}
.home-btn:disabled:hover {
  box-shadow: none;
}

.home-kicker {
  margin: 0 0 16px;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8ED6F5;
}

.home-scanline {
  position: relative;
  z-index: 1;
  height: 5px;
  overflow: hidden;
  background: #000;
}
.home-scanline span {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 8px;
  background: linear-gradient(90deg, transparent, #8ED6F5, transparent);
  animation: home-scan 5.5s linear infinite;
}

/*--------------------------------------------------------------
# Section 1 — Hero (vidéo de fond)
--------------------------------------------------------------*/
.home-hero {
  position: relative;
  background: #05070B;
  overflow: hidden;
  min-height: 70svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .home-hero {
    min-height: 100svh;
    justify-content: center;
  }
}
.home-hero__video, .home-hero__poster-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  opacity: 0.85;
}
.home-hero__poster-fallback {
  background-size: cover;
  background-position: 50% 40%;
  z-index: 0;
}
.home-hero__video {
  z-index: 1;
}
.home-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.15) 0%, rgba(5, 7, 11, 0.2) 45%, rgba(5, 7, 11, 0.5) 100%);
}
.home-hero__content {
  position: relative;
  z-index: 3;
  padding: 22px 20px 26px;
}
@media (min-width: 992px) {
  .home-hero__content {
    max-width: 1440px;
    margin: 100px 0 50px;
    padding: clamp(56px, 9vw, 120px) 20px clamp(28px, 4vw, 48px) clamp(20px, 7vw, 100px);
  }
}
.home-hero__eyebrow {
  margin: 0;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: clamp(10px, 1.2vw, 14px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #f8fd64, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-hero__title {
  margin-top: clamp(10px, 2vw, 22px);
  margin-bottom: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 12vw, 172px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.home-hero__title-line {
  display: inline-block;
  transform: scaleY(1.24);
  transform-origin: bottom;
}
.home-hero__title-line--cool {
  color: #fff;
  animation: home-glow-cool 8s ease-in-out infinite;
}
.home-hero__title-line--gradient {
  background: linear-gradient(100deg, #fff 0%, #8ED6F5 20%, rgb(57.6634146341, 183.4, 237.5365853659) 50%, #8ED6F5 80%, #fff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: home-hero-title-glow 4s ease-in-out infinite, home-grad-flow 2.5s ease-in-out infinite;
}
.home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(24px, 4vw, 44px);
}
.home-hero__location {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--default-font);
  font-size: clamp(13px, 1.6vw, 19px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #EAF2F8;
  text-shadow: 0 2px 18px rgba(5, 7, 11, 0.9);
}
.home-hero__location-bar {
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, #fff, #8ED6F5);
  flex: 0 0 auto;
}
.home-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3vh, 34px);
  transform: translateX(-50%);
  z-index: 3;
  width: 64px;
  height: 64px;
  display: none;
  align-items: center;
  justify-content: center;
  color: #8ED6F5;
  animation: home-hero-arrow 2.2s ease-in-out infinite;
}
@media (min-width: 992px) {
  .home-hero__scroll {
    display: flex;
  }
}
.home-hero__scroll:hover {
  color: #CFEFFF;
}

@keyframes home-hero-arrow {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 0.85;
  }
  50% {
    transform: translate(-50%, 9px);
    opacity: 1;
  }
}
@keyframes home-hero-title-glow {
  0%, 100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.85), 0 0 22px rgba(142, 214, 245, 0.65), 0 0 48px rgba(90, 170, 215, 0.4);
  }
  50% {
    text-shadow: 0 0 9px rgb(255, 255, 255), 0 0 38px rgba(142, 214, 245, 0.85), 0 0 72px rgba(90, 170, 215, 0.55);
  }
}
/*--------------------------------------------------------------
# Section 2 — Bienvenue dans l'univers 2MAD
--------------------------------------------------------------*/
.home-intro {
  position: relative;
  border-top: 1px solid #1B2632;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .home-intro {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.home-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.6) 0%, rgba(5, 7, 11, 0.42) 30%, rgba(5, 7, 11, 0.42) 70%, rgba(5, 7, 11, 0.7) 100%);
}
.home-intro__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 20px;
}
.home-intro__grid {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .home-intro__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: auto 1fr;
    grid-template-areas: "content figure" "footer  figure";
    align-items: start;
  }
}
.home-intro__content {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vw, 16px);
}
@media (min-width: 992px) {
  .home-intro__content {
    grid-area: content;
  }
}
.home-intro__footer {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vw, 16px);
}
@media (min-width: 992px) {
  .home-intro__footer {
    grid-area: footer;
  }
}
.home-intro__kicker {
  margin: 0;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: clamp(10px, 1.2vw, 14px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8ED6F5;
}
.home-intro__title {
  display: inline-block;
  color: #EDF6FC;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 4.9vw, 62px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
  max-width: 20ch;
}
.home-intro__text {
  max-width: 50ch;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: #fff;
  font-weight: 600;
}
.home-intro__text strong {
  color: #EAF2F8;
  font-weight: 600;
}
.home-intro__quote {
  font-family: "Kaushan Script", cursive;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.05;
  text-transform: uppercase;
  color: #CFEFFF;
  text-shadow: 0 0 14px rgba(142, 214, 245, 0.28);
  transform: rotate(-2.5deg) skewX(-6deg);
  transform-origin: left center;
}
@media (max-width: 991.98px) {
  .home-intro__quote {
    background: linear-gradient(100deg, #fff 0%, #CFEFFF 30%, #8ED6F5 60%, #fff 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: home-grad-flow 5s ease-in-out infinite;
    text-align: center;
  }
}
.home-intro__locations {
  list-style: none;
  margin: 0;
  padding: clamp(18px, 2.4vw, 24px) 0 0;
  border-top: 1px solid #1B2632;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
}
.home-intro__locations li {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.home-intro__locations li::before {
  content: "";
  width: 16px;
  height: 1px;
  background: #8ED6F5;
  flex: 0 0 auto;
  transform: translateY(-6px);
}
.home-intro__location-name {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: #EAF2F8;
  line-height: 1.1;
}
.home-intro__location-meta {
  display: block;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: white;
  margin-top: 4px;
}
.home-intro__figure {
  margin: 0;
}
@media (min-width: 992px) {
  .home-intro__figure {
    grid-area: figure;
  }
}
.home-intro__figure img {
  width: 100%;
  height: clamp(220px, 34vw, 420px);
  object-fit: cover;
  object-position: 50% 42%;
  border: 1px solid #1B2632;
  border-radius: 0;
  box-shadow: none;
}
.home-intro__figure img:hover {
  transform: none;
  box-shadow: none;
}
.home-intro__caption {
  margin-top: 10px;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  text-align: left;
}
.home-intro .home-btn {
  align-self: flex-start;
  min-height: 46px;
  padding: 0 22px;
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .home-intro .home-btn {
    align-self: stretch;
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Image de fond au défilement (entre Section 2 et Section 3)
--------------------------------------------------------------*/
.home-parallax {
  position: relative;
  height: clamp(280px, 44vh, 620px);
  background-color: #05070B;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .home-parallax {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
@media (min-width: 992px) {
  .home-parallax {
    height: clamp(340px, 62vh, 620px);
    background-attachment: fixed;
  }
}
.home-parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.75) 0%, rgba(5, 7, 11, 0.18) 32%, rgba(5, 7, 11, 0.18) 68%, rgba(5, 7, 11, 0.88) 100%);
}

/*--------------------------------------------------------------
# Section 3 — Nos différents publics
--------------------------------------------------------------*/
.home-publics {
  position: relative;
  border-top: 1px solid #1B2632;
  overflow: hidden;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .home-publics {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.home-publics::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.6) 0%, rgba(5, 7, 11, 0.42) 30%, rgba(5, 7, 11, 0.42) 70%, rgba(5, 7, 11, 0.7) 100%);
}
.home-publics__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 112px) 20px;
}
.home-publics__head {
  margin-bottom: clamp(32px, 5vw, 56px);
}
.home-publics__title {
  display: inline-block;
  background: linear-gradient(100deg, #fff 0%, #CFEFFF 25%, #8ED6F5 50%, #CFEFFF 75%, #fff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: home-grad-glow 7s ease-in-out infinite, home-grad-flow 5s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 5.8vw, 74px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
  max-width: 20ch;
}
.home-publics__description {
  margin: 14px 0 0;
  max-width: 56ch;
  font-size: 16px;
  line-height: 1.65;
  color: #fff;
  font-weight: 600;
}
.home-publics__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.2vw, 28px);
}
@media (min-width: 480px) {
  .home-publics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .home-publics__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.public-card {
  position: relative;
  display: block;
  height: clamp(280px, 26vw, 392px);
  background-color: #0C1219;
  border: 3px solid color-mix(in srgb, var(--theme-color) 45%, #0C1219);
  background-clip: padding-box;
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.3s ease;
  background-image: var(--img-desktop);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .public-card {
    background-image: var(--img-mobile, var(--img-desktop));
  }
}
.public-card {
  background-position: center;
}
.public-card:hover, .public-card:focus-visible {
  border-color: var(--theme-color);
  transform: translateY(-4px);
}
.public-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  padding: 3px;
  pointer-events: none;
  z-index: 3;
  background: conic-gradient(from var(--ba), transparent 0 62%, color-mix(in srgb, var(--theme-color) 55%, transparent) 76%, var(--theme-color) 84%, color-mix(in srgb, var(--theme-color) 55%, transparent) 92%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: home-border-sweep 7s linear infinite;
}
.public-card__image {
  position: absolute;
  inset: 0;
}
.public-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.15) 30%, rgba(5, 7, 11, 0.72) 68%, rgba(5, 7, 11, 0.94) 100%);
}
.public-card__age {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1;
  padding: 6px 10px;
  background: rgba(5, 7, 11, 0.72);
  border: 1px solid color-mix(in srgb, var(--theme-color) 45%, transparent);
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--theme-color);
}
.public-card__body {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.public-card__title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.9vw, 38px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.12;
  color: #FBF3F6;
  text-shadow: none;
}
.public-card__description {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
  color: #fff;
}
.public-card__cta {
  margin-top: 6px;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid color-mix(in srgb, var(--theme-color) 50%, transparent);
  background: rgba(5, 7, 11, 0.45);
  color: var(--theme-color);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}
.public-card:hover .public-card__cta, .public-card:focus-visible .public-card__cta {
  background: var(--theme-color);
  color: #05070B;
}

/*--------------------------------------------------------------
# Pourquoi s'inscrire chez 2MAD
#
# Parti pris "affiche de line-up" : chaque avantage est une entrée sobre au
# repos, qui s'allume au survol (coin biseauté, filet de couleur en tête).
# La grille est en flex centré et non en grid : la dernière rangée se centre
# au lieu de laisser des colonnes vides, donc ajouter ou retirer une carte
# depuis l'admin garde l'ensemble équilibré quel que soit le nombre de cartes.
--------------------------------------------------------------*/
@keyframes home-advantages-aurora {
  0%, 100% {
    background-position: 12% 22%, 86% 14%, 68% 84%, 22% 78%, 0% 50%;
  }
  25% {
    background-position: 46% 6%, 58% 48%, 26% 68%, 76% 52%, 50% 28%;
  }
  50% {
    background-position: 82% 36%, 18% 76%, 54% 18%, 42% 32%, 100% 50%;
  }
  75% {
    background-position: 34% 72%, 72% 26%, 14% 44%, 84% 74%, 50% 72%;
  }
}
@keyframes home-advantages-pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.14);
  }
}
.home-advantages {
  position: relative;
  border-top: 1px solid #1B2632;
  border-bottom: 1px solid #1B2632;
  overflow: hidden;
  background-color: #05070B;
  background-image: radial-gradient(42% 46% at 50% 50%, color-mix(in srgb, #8ED6F5 46%, transparent) 0%, transparent 68%), radial-gradient(38% 42% at 50% 50%, color-mix(in srgb, #F35BB0 36%, transparent) 0%, transparent 70%), radial-gradient(46% 40% at 50% 50%, color-mix(in srgb, #B79CFF 40%, transparent) 0%, transparent 68%), radial-gradient(36% 44% at 50% 50%, color-mix(in srgb, #6FE3C4 28%, transparent) 0%, transparent 70%), linear-gradient(120deg, #05070B 0%, color-mix(in srgb, #B79CFF 22%, #05070B) 28%, color-mix(in srgb, #8ED6F5 30%, #05070B) 52%, color-mix(in srgb, #F35BB0 20%, #05070B) 76%, #05070B 100%);
  background-size: 70% 70%, 66% 66%, 74% 74%, 62% 62%, 300% 300%;
  background-repeat: no-repeat;
  animation: home-advantages-aurora 26s ease-in-out infinite;
}
.home-advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(65% 65% at 8% 8%, rgba(142, 214, 245, 0.18), transparent 70%);
  animation: home-advantages-pulse 13s ease-in-out infinite;
}
.home-advantages::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.5) 0%, rgba(5, 7, 11, 0.18) 26%, rgba(5, 7, 11, 0.18) 74%, rgba(5, 7, 11, 0.6) 100%);
}
.home-advantages--has-bg {
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .home-advantages--has-bg {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.home-advantages--has-bg {
  background-color: #05070B;
  animation: none;
}
.home-advantages--has-bg::before {
  opacity: 0.3;
  animation: none;
}
.home-advantages--has-bg::after {
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.6) 0%, rgba(5, 7, 11, 0.42) 30%, rgba(5, 7, 11, 0.42) 70%, rgba(5, 7, 11, 0.7) 100%);
}
.home-advantages__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) 20px;
}
.home-advantages__head {
  margin-bottom: clamp(26px, 3.4vw, 40px);
}
.home-advantages__kicker {
  margin: 0;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: clamp(10px, 1.2vw, 14px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8ED6F5;
}
.home-advantages__title {
  display: inline-block;
  background: linear-gradient(100deg, #fff 0%, #CFEFFF 25%, #8ED6F5 50%, #CFEFFF 75%, #fff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: home-grad-glow 7s ease-in-out infinite, home-grad-flow 5s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  white-space: nowrap;
  font-size: min(74px, 6.25vw - 3px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
}
.home-advantages__description {
  margin: 14px 0 0;
  max-width: 56ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: #fff;
  font-weight: 600;
}
.home-advantages__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 16px);
}
.home-advantages__grid > li {
  display: flex;
  flex: 1 1 265px;
  max-width: 400px;
}
.home-advantages__practical-group {
  padding-top: clamp(22px, 2.6vw, 32px);
}
.home-advantages__subtitle {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 clamp(16px, 1.8vw, 22px);
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(19px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #EDF6FC;
  animation: home-glow-cool 8s ease-in-out infinite;
}
.home-advantages__subtitle::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(207, 239, 255, 0.35), transparent);
}
.home-advantages__practical {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 14px);
}
.home-advantages__practical > * {
  flex: 1 1 300px;
  max-width: 620px;
}

/*--------------------------------------------------------------
# Carte avantage
--------------------------------------------------------------*/
.advantage-card {
  --cut: 16px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(18px, 1.9vw, 24px);
  overflow: hidden;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 46%, color-mix(in srgb, var(--theme-color) 12%, transparent) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, filter 0.35s ease;
}
.advantage-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--theme-color) 0%, color-mix(in srgb, var(--theme-color) 25%, transparent) 55%, transparent 100%);
}
.advantage-card:hover, .advantage-card:focus-within {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--theme-color) 45%, transparent);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 46%, color-mix(in srgb, var(--theme-color) 18%, transparent) 100%);
  filter: drop-shadow(0 14px 26px color-mix(in srgb, var(--theme-color) 30%, transparent));
}
.advantage-card__title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #EAF2F8;
  text-shadow: none;
}
.advantage-card__text {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}
.advantage-card--practical {
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 46%, color-mix(in srgb, var(--theme-color) 12%, transparent) 100%);
  border-left: 3px solid var(--theme-color);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.advantage-card--practical::before {
  background: linear-gradient(90deg, color-mix(in srgb, var(--theme-color) 45%, transparent) 0%, transparent 70%);
}
.advantage-card--practical:hover, .advantage-card--practical:focus-within {
  transform: none;
  filter: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.09);
  border-left-color: var(--theme-color);
}
.advantage-card--practical .advantage-card__tag {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-top: 1px;
  background: color-mix(in srgb, var(--theme-color) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--theme-color) 45%, transparent);
  color: var(--theme-color);
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.advantage-card--practical .advantage-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/*--------------------------------------------------------------
# Section 4 — À l'affiche
--------------------------------------------------------------*/
.home-agenda {
  position: relative;
  border-top: 1px solid #1B2632;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .home-agenda {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.home-agenda::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.6) 0%, rgba(5, 7, 11, 0.42) 30%, rgba(5, 7, 11, 0.42) 70%, rgba(5, 7, 11, 0.7) 100%);
}
.home-agenda__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(44px, 8vw, 104px) 0 clamp(52px, 8vw, 104px);
}
@media (min-width: 992px) {
  .home-agenda__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home-agenda__title {
  display: inline-block;
  color: #FFF6EA;
  animation: home-glow-warm 7s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 4.9vw, 64px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 20px clamp(28px, 4vw, 48px);
}
@media (min-width: 992px) {
  .home-agenda__title {
    margin: 0 0 clamp(28px, 4vw, 48px);
  }
}
.home-agenda__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.home-agenda__track::-webkit-scrollbar {
  display: none;
}
@media (min-width: 480px) {
  .home-agenda__track {
    gap: 14px;
  }
}
@media (min-width: 992px) {
  .home-agenda__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 2.5vw, 32px);
    overflow: visible;
    scroll-padding-left: 0;
    padding: 0;
  }
}

.agenda-card {
  flex: 0 0 84%;
  max-width: 340px;
  scroll-snap-align: start;
  border: 1px solid color-mix(in srgb, var(--theme-color) 24%, transparent);
  border-radius: 8px;
  background: rgba(18, 14, 10, 0.84);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .agenda-card {
    flex: initial;
    max-width: none;
  }
}
.agenda-card__image {
  height: clamp(160px, 42vw, 190px);
  border-bottom: 1px solid color-mix(in srgb, var(--theme-color) 24%, transparent);
  border-radius: 8px;
  background-image: var(--img-desktop);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .agenda-card__image {
    background-image: var(--img-mobile, var(--img-desktop));
  }
}
@media (min-width: 992px) {
  .agenda-card__image {
    height: 288px;
  }
}
.agenda-card__body {
  padding: clamp(18px, 2.5vw, 28px);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .agenda-card__body {
    gap: 12px;
  }
}
.agenda-card__title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(21px, 5.6vw, 26px);
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0;
  color: #FFF6EA;
  text-shadow: none;
}
@media (min-width: 992px) {
  .agenda-card__title {
    font-size: 26px;
    line-height: 0.95;
  }
}
.agenda-card__date {
  margin: 6px 0 0;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--theme-color);
}
.agenda-card__description {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
}
.agenda-card__cta {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--theme-color);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Section 5 — Spectacles & évènements (2MAD Productions)
--------------------------------------------------------------*/
.home-production {
  position: relative;
  background: #05070B;
  border-top: 1px solid #1B2632;
  overflow: hidden;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .home-production {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.home-production::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.35) 0%, rgba(5, 7, 11, 0.75) 100%);
}
.home-production__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(56px, 10vw, 140px) 20px;
}
.home-production__kicker {
  margin: 0 0 clamp(4px, 0.6vw, 8px);
  font-family: var(--default-font);
  font-weight: 800;
  font-size: clamp(10px, 1.2vw, 14px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #FF8A3D;
  text-shadow: 0 2px 10px rgba(5, 7, 11, 0.7);
}
.home-production__title {
  display: inline-block;
  color: #fff;
  animation: home-glow-flame 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 7.4vw, 104px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 clamp(20px, 3vw, 28px);
  max-width: 18ch;
}
@media (min-width: 992px) {
  .home-production__title {
    white-space: nowrap;
    max-width: none;
  }
}
.home-production__description {
  margin: 0 0 clamp(28px, 4vw, 40px);
  max-width: 52ch;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Page "Cours & horaires" — Section 1 : bandeau d'introduction
--------------------------------------------------------------*/
.cours-hero {
  position: relative;
  background-color: #05070B;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .cours-hero {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.cours-hero {
  overflow: hidden;
}
.cours-hero__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 60% at 10% 20%, rgba(243, 91, 176, 0.06), transparent 62%), radial-gradient(65% 55% at 90% 26%, rgba(122, 92, 255, 0.14), rgba(0, 0, 0, 0) 64%), linear-gradient(180deg, rgba(5, 7, 11, 0.1) 0%, rgba(5, 7, 11, 0.23) 50%, rgba(5, 7, 11, 0.7) 100%);
}
.cours-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 20px clamp(32px, 4vw, 52px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cours-hero__inner {
    min-height: 560px;
  }
}
.cours-hero__breadcrumb {
  margin: 0 0 clamp(18px, 2.6vw, 30px);
}
.cours-hero__breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #93A3B2;
}
.cours-hero__breadcrumb a {
  color: #93A3B2;
  text-shadow: none;
}
.cours-hero__breadcrumb a:hover {
  color: #F35BB0;
}
.cours-hero__breadcrumb li:last-child {
  color: #EAF2F8;
}
.cours-hero__breadcrumb li:last-child a {
  color: #EAF2F8;
}
.cours-hero__kicker {
  margin: 0 0 clamp(16px, 2.2vw, 24px);
  font-family: var(--default-font);
  font-weight: 700;
  font-size: clamp(12px, 1.2vw, 13px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #D2E5F4;
}
.cours-hero__title {
  display: inline-block;
  color: #fff;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 8vw, 100px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.cours-hero__description {
  margin: clamp(18px, 2.6vw, 26px) 0 0;
  max-width: 58ch;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: #D6E1EA;
  font-weight: 600;
}
.cours-hero__cta {
  align-self: flex-start;
  margin-top: clamp(22px, 3vw, 34px);
}

/*--------------------------------------------------------------
# Page "Cours & horaires" — Section 2 : filtres + résultats
# (le contenu vient du modèle CursusDance, cette section ne fournit que le fond)
--------------------------------------------------------------*/
.cours-results {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid #1B2632;
  background: radial-gradient(60% 80% at 10% 0%, rgba(111, 227, 196, 0.16), transparent 60%), radial-gradient(60% 80% at 90% 100%, rgba(111, 227, 196, 0.16), transparent 60%), #05070B;
}
.cours-results::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(100deg, #05070B 0%, color-mix(in srgb, #8ED6F5 14%, #05070B) 35%, color-mix(in srgb, #B79CFF 12%, #05070B) 65%, #05070B 100%);
  background-size: 220% 100%;
  animation: home-grad-flow 14s ease-in-out infinite;
}
.cours-results__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .cours-results__bg {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.cours-results__bg {
  background-position: top center;
  background-size: 100% auto;
  background-repeat: repeat-y;
}
.cours-results__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 7, 0.85) 0, rgba(3, 7, 7, 0) 220px), linear-gradient(0deg, rgba(3, 7, 7, 0.85) 0, rgba(3, 7, 7, 0) 220px);
}
.cours-results__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) 20px clamp(56px, 8vw, 96px);
}
@media (max-width: 991.98px) {
  .cours-results__bg {
    background-attachment: fixed;
  }
}
.cours-results__title {
  display: inline-block;
  color: #fff;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 4px;
  text-shadow: none;
}

/*--------------------------------------------------------------
# Sélecteur de public (écran dédié sur mobile)
--------------------------------------------------------------*/
.cours-picker__title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 5vw, 28px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: #EDF6FC;
}
.cours-picker__grid {
  list-style: none;
  margin: 0 0 clamp(28px, 4vw, 40px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 992px) {
  .cours-picker {
    display: none;
  }
}

.cours-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 168px;
  padding: 14px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background-color: #0C1219;
  background-image: var(--tile-img);
  background-size: cover;
  background-position: center;
  border: 2px solid var(--theme-color, #8ED6F5);
  box-sizing: border-box;
  text-align: left;
}
.cours-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.1) 30%, rgba(5, 7, 11, 0.78) 72%, rgba(5, 7, 11, 0.95) 100%);
}
.cours-tile--all {
  background-color: #0C1219;
  background-image: linear-gradient(135deg, rgba(142, 214, 245, 0.18), transparent);
}
.cours-tile__label {
  position: relative;
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #EAF2F8;
  line-height: 1.15;
}
.cours-tile__count {
  position: relative;
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--theme-color, #8ED6F5);
}

/*--------------------------------------------------------------
# Panneau filtres + grille de résultats
--------------------------------------------------------------*/
.cours-panel {
  display: none;
}
.cours-panel__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  margin-bottom: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #8ED6F5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.cours-panel__back:hover {
  color: #CFEFFF;
}

.cours-results__inner.is-picking-done .cours-picker {
  display: none;
}
.cours-results__inner.is-picking-done .cours-panel {
  display: block;
}

@media (min-width: 992px) {
  .cours-picker {
    display: none;
  }
  .cours-panel {
    display: block;
  }
  .cours-panel__back {
    display: none;
  }
}
.cours-filters {
  margin-bottom: clamp(22px, 3vw, 30px);
}
.cours-filters__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

@media (max-width: 991.98px) {
  .cours-filters__row {
    display: none;
  }
}
.cours-search {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  min-height: 52px;
  border: 1px solid #26333F;
  background: #0B1017;
  padding: 0 16px;
  gap: 12px;
}
.cours-search span {
  color: #8ED6F5;
  font-size: 15px;
}
.cours-search input {
  flex: 1;
  min-height: 44px;
  background: transparent;
  border: 0;
  outline: none;
  color: #EAF2F8;
  font-size: 15px;
}
.cours-search input::placeholder {
  color: #93A3B2;
}

.cours-filters select {
  min-height: 52px;
  padding: 0 16px;
  background: #0B1017;
  border: 1px solid #26333F;
  color: #EAF2F8;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cours-pills {
  list-style: none;
  margin: 0;
  padding: 0 0 4px;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cours-pills::-webkit-scrollbar {
  display: none;
}
@media (min-width: 992px) {
  .cours-pills {
    flex-wrap: wrap;
    overflow: visible;
  }
}

.cours-pill {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 16px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--theme-color, #8ED6F5);
  border-radius: 2px;
  color: var(--theme-color, #8ED6F5);
  font-family: var(--default-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.cours-pill:hover {
  background: var(--theme-color, #8ED6F5);
  border-color: var(--theme-color, #8ED6F5);
  color: #05070B;
}
.cours-pill.is-active {
  background: var(--theme-color, #8ED6F5);
  border-color: var(--theme-color, #8ED6F5);
  color: #05070B;
}
.cours-pill__count {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0;
  opacity: 0.8;
}

@media (max-width: 991.98px) {
  .cours-pill--all {
    display: none;
  }
}
/*--------------------------------------------------------------
# Grille de résultats
--------------------------------------------------------------*/
.cours-meta {
  margin: 0 0 16px;
}
.cours-meta__count {
  margin: 0;
  font-family: "Space Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #93A3B2;
}

.cours-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}

.cours-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(18px, 2vw, 24px);
  background: rgba(11, 16, 23, 0.62);
  backdrop-filter: blur(6px);
  border: 1px solid #1B2632;
  border-top: 3px solid var(--theme-color, #8ED6F5);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.cours-card:hover {
  transform: translateY(-4px);
  border-color: #2C3A48;
}
.cours-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.cours-card__head-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cours-card__badge {
  align-self: flex-start;
  padding: 6px 10px;
  border: 1px solid var(--theme-color, #8ED6F5);
  background: color-mix(in srgb, var(--theme-color, #8ED6F5) 14%, transparent);
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #EAF2F8;
}
.cours-card__title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
  color: #FBF6F8;
  text-shadow: none;
}
.cours-card__toggle {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--theme-color, #8ED6F5);
  background: rgba(255, 255, 255, 0.03);
  color: var(--theme-color, #8ED6F5);
  cursor: pointer;
}
.cours-card__toggle span[aria-hidden] {
  position: relative;
  width: 12px;
  height: 12px;
}
.cours-card__toggle span[aria-hidden]::before, .cours-card__toggle span[aria-hidden]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cours-card__toggle span[aria-hidden]::before {
  width: 12px;
  height: 2px;
}
.cours-card__toggle span[aria-hidden]::after {
  width: 2px;
  height: 12px;
}
.cours-card__toggle:hover {
  background: color-mix(in srgb, var(--theme-color, #8ED6F5) 16%, transparent);
}
.cours-card.is-open .cours-card__toggle span[aria-hidden]::after {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
.cours-card__meta {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  align-items: center;
  font-size: 13px;
}
.cours-card__meta dt {
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #64798A;
}
.cours-card__meta dd {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #EAF2F8;
}
.cours-card__day-pick, .cours-card__level-pick {
  min-height: 28px;
  padding: 2px 8px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #26333F;
  border-radius: 2px;
  color: #EAF2F8;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cours-card__day-pick:hover, .cours-card__day-pick.is-active, .cours-card__level-pick:hover, .cours-card__level-pick.is-active {
  border-color: var(--theme-color, #8ED6F5);
  color: var(--theme-color, #8ED6F5);
}
.cours-card__level-pick {
  border: 0;
  padding: 2px 8px 2px 0;
  font-family: var(--default-font);
  font-size: 13px;
}
.cours-card__level-pick.is-active {
  border-bottom: 1px solid var(--theme-color, #8ED6F5);
}
.cours-card__level-bars {
  display: flex;
  gap: 2px;
  align-items: center;
}
.cours-card__level-bars span {
  width: 8px;
  height: 3px;
  background: #26333F;
}
.cours-card__level-bars span.is-filled {
  background: var(--theme-color, #8ED6F5);
}
.cours-card__time {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  color: #EAF2F8;
}
.cours-card__prof {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  color: var(--theme-color, #8ED6F5);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid color-mix(in srgb, var(--theme-color, #8ED6F5) 50%, transparent);
  text-shadow: none;
}
.cours-card__prof:hover {
  color: #fff;
  border-color: #fff;
}
.cours-card__summary {
  display: contents;
}
.cours-card__detail {
  display: contents;
}
.cours-card__cta {
  align-self: stretch;
  justify-content: center;
  margin-top: auto;
  color: #05070B;
  border: 0;
  background: linear-gradient(100deg, #fff 0%, color-mix(in srgb, var(--theme-color, #8ED6F5) 40%, #fff) 35%, var(--theme-color, #8ED6F5) 70%, #fff 100%);
  background-size: 220% 100%;
  animation: home-grad-flow 6s ease-in-out infinite;
  box-shadow: 0 0 24px color-mix(in srgb, var(--theme-color, #8ED6F5) 35%, transparent);
}
.cours-card__cta:hover {
  color: #05070B;
  box-shadow: 0 0 34px color-mix(in srgb, var(--theme-color, #8ED6F5) 55%, transparent);
}

@media (max-width: 991.98px) {
  .cours-card__toggle {
    display: inline-flex;
  }
  .cours-card__badge {
    display: none;
  }
  .cours-card {
    border-radius: 10px;
    border-top: 1px solid #1B2632;
    border-left: 3px solid var(--theme-color, #8ED6F5);
    cursor: pointer;
  }
  .cours-card:hover, .cours-card:active {
    border-left-color: var(--theme-color, #8ED6F5);
  }
  .cours-card__summary {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    grid-template-rows: auto auto;
    column-gap: 24px;
    row-gap: 6px;
    align-items: start;
    justify-content: start;
    grid-column: 1/-1;
  }
  .cours-card__detail {
    display: none;
  }
  .cours-card.is-open .cours-card__detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
    grid-column: 1/-1;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid #1B2632;
  }
  .cours-card__cta {
    display: none;
    width: 100%;
    margin-top: 4px;
  }
  .cours-card.is-open .cours-card__cta {
    display: inline-flex;
  }
}
.cours-empty {
  border: 1px dashed #2C3A48;
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.cours-empty__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #EAF2F8;
}
.cours-empty__text {
  margin: 0;
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.65;
  color: #93A3B2;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Barre + feuille de filtres (mobile uniquement)
--------------------------------------------------------------*/
.cours-mobile-bar {
  display: none;
}

.cours-sheet-backdrop,
.cours-sheet {
  display: none;
}

@media (max-width: 991.98px) {
  body:has(.cours-mobile-bar) .scroll-top {
    display: none !important;
  }
  .cours-panel {
    padding-bottom: 86px;
  }
  .cours-mobile-bar {
    display: flex;
    gap: 10px;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 60;
  }
  .cours-sheet-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(3, 7, 7, 0.72);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  body.cours-sheet-open .cours-sheet-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .cours-sheet {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 71;
    max-height: 86vh;
    overflow-y: auto;
    padding: 14px 20px calc(22px + env(safe-area-inset-bottom, 0px));
    background: #0C1219;
    border-top: 1px solid #26333F;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .cours-sheet.is-open {
    transform: translateY(0);
  }
  body.cours-sheet-open {
    overflow: hidden;
  }
}
.cours-mobile-bar__filters {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  background: #0C1219;
  border: 1px solid #26333F;
  color: #EAF2F8;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.cours-mobile-bar__filters:hover {
  border-color: #8ED6F5;
  color: #8ED6F5;
}

.cours-mobile-bar__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 16px;
}
.cours-mobile-bar__icon::before, .cours-mobile-bar__icon::after {
  content: "";
  display: block;
  height: 2px;
  background: currentColor;
}
.cours-mobile-bar__icon::before {
  width: 100%;
}
.cours-mobile-bar__icon::after {
  width: 60%;
}

.cours-mobile-bar__dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  background: #0C1219;
  border: 1px solid #26333F;
  color: #8ED6F5;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.cours-mobile-bar__dl:hover {
  border-color: #8ED6F5;
}

.cours-sheet__handle {
  align-self: center;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: #26333F;
}

.cours-sheet__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #EDF6FC;
}

.cours-sheet__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cours-sheet__label {
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8ED6F5;
}

.cours-sheet__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cours-sheet__opt {
  min-height: 40px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #26333F;
  border-radius: 2px;
  color: #EAF2F8;
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.cours-sheet__opt:hover {
  border-color: #8ED6F5;
}
.cours-sheet__opt.is-active {
  background: #8ED6F5;
  border-color: #8ED6F5;
  color: #05070B;
}

.cours-sheet__pdf {
  justify-content: center;
  width: 100%;
}

.cours-sheet__actions {
  display: flex;
  gap: 12px;
}
.cours-sheet__actions .home-btn {
  flex: 1;
  justify-content: center;
}

/*--------------------------------------------------------------
# Page "Cours & horaires" — Section 3 : Continuer la visite
--------------------------------------------------------------*/
.cours-continue {
  position: relative;
  background: #05070B;
  border-top: 1px solid #1B2632;
  overflow: hidden;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .cours-continue {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.cours-continue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.35) 0%, rgba(5, 7, 11, 0.75) 100%);
}
.cours-continue__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 20px;
}
.cours-continue__head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.cours-continue__title {
  display: inline-block;
  color: #EDF6FC;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 54px);
  line-height: 1.14;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0;
}
.cours-continue__description {
  margin: 0;
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.65;
  color: #EAF2F8;
  font-weight: 600;
}
.cours-continue__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.continue-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: clamp(240px, 24vw, 320px);
  padding: clamp(20px, 2.2vw, 26px);
  background-color: #0C1219;
  background-image: var(--img-desktop);
  background-size: cover;
  background-position: center;
  border: 1px solid #1B2632;
  border-radius: 5px;
  color: #EAF2F8;
  text-decoration: none;
  text-shadow: 0 2px 10px rgba(5, 7, 11, 0.6);
  box-shadow: 0 10px 24px rgba(5, 7, 11, 0.35);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 767.98px) {
  .continue-card {
    background-image: var(--img-mobile, var(--img-desktop));
  }
}
.continue-card:hover {
  transform: translateY(-4px);
  border-color: var(--theme-color, #8ED6F5);
  color: #EAF2F8;
  box-shadow: 0 16px 34px rgba(5, 7, 11, 0.45);
}
.continue-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.25) 20%, rgba(5, 7, 11, 0.8) 70%, rgba(5, 7, 11, 0.96) 100%);
}
.continue-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
}
.continue-card__kicker {
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--theme-color, #8ED6F5);
}
.continue-card__title {
  margin-top: 8px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #EAF2F8;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.45);
}
.continue-card__description {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #C3D0DB;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Page "Production" — Section 1 : bandeau d'introduction
--------------------------------------------------------------*/
.production-hero {
  position: relative;
  background-color: #05070B;
  overflow: hidden;
  transform: translateZ(0);
}
.production-hero::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .production-hero::before {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.production-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.production-hero__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 60% at 10% 20%, rgba(243, 91, 176, 0.06), transparent 62%), radial-gradient(65% 55% at 90% 26%, rgba(122, 92, 255, 0.14), rgba(0, 0, 0, 0) 64%), linear-gradient(180deg, rgba(5, 7, 11, 0.1) 0%, rgba(5, 7, 11, 0.23) 50%, rgba(5, 7, 11, 0.7) 100%);
}
@media (max-width: 767.98px) {
  .production-hero__scrim {
    background: radial-gradient(70% 60% at 10% 20%, rgba(243, 91, 176, 0.06), transparent 62%), radial-gradient(65% 55% at 90% 26%, rgba(122, 92, 255, 0.14), rgba(0, 0, 0, 0) 64%), linear-gradient(180deg, rgba(5, 7, 11, 0.45) 0%, rgba(5, 7, 11, 0.58) 50%, rgba(5, 7, 11, 0.82) 100%);
  }
}
.production-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 68px) 20px clamp(30px, 4vw, 50px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .production-hero__inner {
    min-height: 560px;
  }
}
.production-hero__breadcrumb {
  margin: 0 0 clamp(18px, 2.6vw, 30px);
}
.production-hero__breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #93A3B2;
}
.production-hero__breadcrumb a {
  color: #93A3B2;
  text-shadow: none;
}
.production-hero__breadcrumb a:hover {
  color: #FFC46B;
}
.production-hero__breadcrumb li:last-child {
  color: #EAF2F8;
}
.production-hero__kicker {
  margin: 0 0 clamp(6px, 0.8vw, 10px);
  font-family: var(--default-font);
  font-weight: 700;
  font-size: clamp(12px, 1.2vw, 13px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(5, 7, 11, 0.7);
}
.production-hero__title {
  display: inline-block;
  color: #fff;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 8vw, 108px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
  filter: drop-shadow(0 4px 16px rgba(5, 7, 11, 0.8)) drop-shadow(0 1px 4px rgba(5, 7, 11, 0.6));
}
.production-hero__description {
  margin: clamp(18px, 2.6vw, 26px) 0 0;
  max-width: 60ch;
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 600;
  line-height: 1.65;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(5, 7, 11, 0.7);
}
@media (max-width: 767.98px) {
  .production-hero__description {
    font-size: 14px;
  }
}
.production-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 3.4vw, 38px);
}
.production-hero__actions .home-btn--outline {
  border-color: color-mix(in srgb, var(--theme-color, #FFC46B) 70%, transparent);
  text-shadow: 0 2px 10px color-mix(in srgb, var(--theme-color, #FFC46B) 55%, transparent);
}
.production-hero__actions .home-btn--outline:hover {
  background: var(--theme-color, #FF6A3D);
  border-color: var(--theme-color, #FF6A3D);
}
@media (max-width: 575.98px) {
  .production-hero__actions .home-btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Page "Production" — Section 2 : Trois manières d'entrer en scène
--------------------------------------------------------------*/
.production-services {
  position: relative;
  background: #05070B;
  border-top: 1px solid #1B2632;
  overflow: hidden;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .production-services {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.production-services {
  background-size: auto;
  background-repeat: repeat;
  background-attachment: scroll;
}
@media (min-width: 992px) {
  .production-services {
    background-position: top center;
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-attachment: scroll;
  }
}
.production-services__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 20px;
}
.production-services__head {
  max-width: 70ch;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.production-services__title {
  display: inline-block;
  color: #EDF6FC;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 54px);
  line-height: 1.14;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0;
  filter: drop-shadow(0 4px 16px rgba(5, 7, 11, 0.8)) drop-shadow(0 1px 4px rgba(5, 7, 11, 0.6));
}
.production-services__description {
  margin: 14px 0 0;
  max-width: 56ch;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  color: #fff;
  text-shadow: 0 2px 12px rgba(5, 7, 11, 0.7);
}
.production-services__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 64px);
}

.production-card {
  position: relative;
  color: #EAF2F8;
}
@media (min-width: 992px) {
  .production-card {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
  }
}
.production-card__image {
  position: relative;
  overflow: hidden;
  height: clamp(260px, 55vw, 360px);
  background-color: #0C1219;
  background-image: var(--img-desktop);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 991.98px) {
  .production-card__image {
    background-image: var(--img-mobile, var(--img-desktop));
  }
}
.production-card__image {
  box-shadow: 0 20px 48px rgba(5, 7, 11, 0.4);
}
.production-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 7, 11, 0.4) 0%, rgba(5, 7, 11, 0) 40%);
}
@media (min-width: 992px) {
  .production-card__image {
    grid-column: 1/span 8;
    grid-row: 1;
    height: clamp(340px, 46vw, 620px);
  }
  .production-card__image::after {
    background: linear-gradient(90deg, rgba(5, 7, 11, 0.55) 0%, rgba(5, 7, 11, 0) 45%), linear-gradient(0deg, rgba(5, 7, 11, 0.5) 0%, rgba(5, 7, 11, 0) 40%);
  }
}
.production-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: clamp(-40px, -9vw, -20px) 16px 0;
  padding: clamp(22px, 2.4vw, 28px);
  background: rgba(9, 12, 18, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  border-left: 3px solid var(--theme-color, #FFC46B);
  box-shadow: 0 16px 40px rgba(5, 7, 11, 0.45);
}
@media (min-width: 992px) {
  .production-card__body {
    grid-column: 8/span 5;
    grid-row: 1;
    margin: 0 0 0 clamp(-90px, -6vw, -24px);
    padding: clamp(24px, 3vw, 44px);
  }
}
@media (min-width: 992px) {
  .production-services__grid > li:nth-child(even) .production-card .production-card__image {
    grid-column: 5/span 8;
  }
  .production-services__grid > li:nth-child(even) .production-card .production-card__image::after {
    background: linear-gradient(270deg, rgba(5, 7, 11, 0.55) 0%, rgba(5, 7, 11, 0) 45%), linear-gradient(0deg, rgba(5, 7, 11, 0.5) 0%, rgba(5, 7, 11, 0) 40%);
  }
  .production-services__grid > li:nth-child(even) .production-card .production-card__body {
    grid-column: 1/span 5;
    margin-left: 0;
    margin-right: clamp(-90px, -6vw, -24px);
    border-left: 1px solid #1B2632;
    border-right: 3px solid var(--theme-color, #FFC46B);
  }
}
.production-card__kicker {
  align-self: flex-start;
  font-family: "Space Mono", var(--default-font), monospace;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--theme-color, #FFC46B);
  text-shadow: 0 2px 10px rgba(5, 7, 11, 0.6);
}
.production-card__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #EAF2F8;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.35);
}
.production-card__description {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
  color: #EAF2F8;
}
.production-card__sub-description {
  list-style: none;
  margin: 4px 0 0;
  padding-top: 14px;
  border-top: 1px solid #1B2632;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Space Mono", var(--default-font), monospace;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.production-card__cta {
  align-self: flex-start;
  margin-top: 6px;
  color: #05070B;
  border: 0;
  background: linear-gradient(100deg, #fff 0%, color-mix(in srgb, var(--theme-color, #FFC46B) 40%, #fff) 35%, var(--theme-color, #FFC46B) 70%, #fff 100%);
  background-size: 220% 100%;
  animation: home-grad-flow 6s ease-in-out infinite;
  box-shadow: 0 0 34px color-mix(in srgb, var(--theme-color, #FFC46B) 35%, transparent);
}
.production-card__cta:hover {
  color: #05070B;
  box-shadow: 0 0 44px color-mix(in srgb, var(--theme-color, #FFC46B) 55%, transparent);
}
.production-card__form {
  margin-top: 6px;
}
.production-card__form:empty {
  display: none;
}

.production-casting-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid #1B2632;
}
.production-casting-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.production-casting-form__row {
  display: flex;
  gap: 12px;
}
.production-casting-form__row .form-group {
  flex: 2 1 0;
  min-width: 0;
}
.production-casting-form__row .form-group:last-child {
  flex: 1 1 0;
}
@media (max-width: 420px) {
  .production-casting-form__row {
    flex-direction: column;
  }
}
.production-casting-form label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #93A3B2;
}
.production-casting-form input,
.production-casting-form textarea {
  width: 100%;
  padding: 10px 12px;
  background: rgba(5, 7, 11, 0.55);
  border: 1px solid #26333F;
  border-radius: 2px;
  color: #EAF2F8;
  font-family: var(--default-font);
  font-size: 14px;
}
.production-casting-form input:focus-visible,
.production-casting-form textarea:focus-visible {
  outline: 2px solid #8ED6F5;
  outline-offset: 1px;
  border-color: #8ED6F5;
}
.production-casting-form textarea {
  resize: vertical;
}
.production-casting-form .form-text {
  font-size: 12px;
  color: #93A3B2;
}
.production-casting-form .alert-danger {
  font-size: 12px;
  color: #FF9E9E;
}
.production-casting-form button[type=submit] {
  margin-top: 4px;
}
.production-casting-form .alert-success {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #6FE3C4;
}

/*--------------------------------------------------------------
# Page "Production" — Section 3 : Galerie de spectacles passés
--------------------------------------------------------------*/
.production-gallery {
  position: relative;
  background-color: #05070B;
  border-bottom: 1px solid #1B2632;
  overflow: hidden;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .production-gallery {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.production-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.6) 0%, rgba(5, 7, 11, 0.42) 30%, rgba(5, 7, 11, 0.42) 70%, rgba(5, 7, 11, 0.7) 100%);
}
.production-gallery__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) 20px;
}
.production-gallery__head {
  max-width: 70ch;
  margin-bottom: clamp(30px, 4vw, 44px);
}
.production-gallery__kicker {
  margin: 0 0 10px;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}
.production-gallery__title {
  display: inline-block;
  color: #EDF6FC;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 clamp(14px, 2vw, 18px);
  filter: drop-shadow(0 4px 16px rgba(5, 7, 11, 0.8)) drop-shadow(0 1px 4px rgba(5, 7, 11, 0.6));
}
.production-gallery__description {
  margin: 0;
  max-width: 64ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(5, 7, 11, 0.7);
}
.production-gallery__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
}

.gallery-card {
  position: relative;
  height: 100%;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.gallery-card:hover, .gallery-card:focus-within {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--theme-color) 50%, transparent);
}
.gallery-card__image {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.gallery-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.gallery-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  background: var(--theme-color);
  color: #05070B;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
}
.gallery-card__body {
  padding: clamp(24px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.gallery-card__bar {
  width: 28px;
  height: 3px;
  background: var(--theme-color);
}
.gallery-card__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #EAF2F8;
  text-shadow: none;
}
.gallery-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
}
.gallery-card__cta {
  align-self: flex-start;
  margin-top: 6px;
  color: #05070B;
  border: 0;
  background: linear-gradient(100deg, #fff 0%, color-mix(in srgb, var(--theme-color, #FFC46B) 40%, #fff) 35%, var(--theme-color, #FFC46B) 70%, #fff 100%);
  background-size: 220% 100%;
  animation: home-grad-flow 6s ease-in-out infinite;
  box-shadow: 0 0 34px color-mix(in srgb, var(--theme-color, #FFC46B) 35%, transparent);
}
.gallery-card__cta:hover {
  color: #05070B;
  box-shadow: 0 0 44px color-mix(in srgb, var(--theme-color, #FFC46B) 55%, transparent);
}

/*--------------------------------------------------------------
# Page "Production" — Section 4 : Prochaine étape (CTA final)
--------------------------------------------------------------*/
.production-cta {
  position: relative;
  background-color: #05070B;
  overflow: hidden;
  transform: translateZ(0);
}
.production-cta::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .production-cta::before {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.production-cta__scrim {
  position: absolute;
  inset: 0;
}
.production-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(64px, 10vw, 140px) 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(18px, 2.4vw, 28px);
}
.production-cta__kicker {
  margin: 0;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #FFC46B;
  text-shadow: 0 2px 10px rgba(5, 7, 11, 0.7);
}
.production-cta__title {
  display: inline-block;
  color: #EDF6FC;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 54px);
  line-height: 1.14;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
  filter: drop-shadow(0 4px 16px rgba(5, 7, 11, 0.8)) drop-shadow(0 1px 4px rgba(5, 7, 11, 0.6));
}
.production-cta__description {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 600;
  line-height: 1.7;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(5, 7, 11, 0.7);
}
@media (max-width: 767.98px) {
  .production-cta__description {
    font-size: 14px;
  }
}
.production-cta__button {
  margin-top: 8px;
}
@media (max-width: 575.98px) {
  .production-cta__button {
    width: 100%;
    justify-content: center;
  }
}
.production-cta__mail {
  margin: 0;
  font-family: "Space Mono", var(--default-font), monospace;
  font-size: 13px;
  font-weight: 500;
  color: #93A3B2;
}
.production-cta__mail a {
  color: #EAF2F8;
  text-shadow: none;
  border-bottom: 1px solid #26333F;
}
.production-cta__mail a:hover {
  color: #FFC46B;
  border-color: #FFC46B;
}

/*--------------------------------------------------------------
# Page "Publics" — Section 1 : bandeau d'introduction
--------------------------------------------------------------*/
.publics-hero {
  position: relative;
  background-color: #05070B;
  border-bottom: 1px solid #1B2632;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .publics-hero {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.publics-hero {
  overflow: hidden;
}
.publics-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.6) 0%, rgba(5, 7, 11, 0.8) 55%, #05070B 100%);
}
.publics-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 68px) 20px clamp(30px, 4vw, 50px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .publics-hero__inner {
    min-height: 560px;
  }
}
.publics-hero__breadcrumb {
  margin: 0 0 clamp(18px, 2.6vw, 30px);
}
.publics-hero__breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #93A3B2;
}
.publics-hero__breadcrumb a {
  color: #93A3B2;
  text-shadow: none;
}
.publics-hero__breadcrumb a:hover {
  color: #B79CFF;
}
.publics-hero__breadcrumb li:last-child {
  color: #EAF2F8;
}
.publics-hero__kicker {
  margin: 0 0 clamp(14px, 2vw, 22px);
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #CFEFFF;
}
.publics-hero__title {
  display: inline-block;
  color: #fff;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 8.2vw, 108px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0;
  max-width: 20ch;
  text-wrap: balance;
}
.publics-hero__description {
  margin: clamp(20px, 2.6vw, 30px) 0 0;
  max-width: 52ch;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Page "Publics" — Section 2 : Trouvez votre place
--------------------------------------------------------------*/
.publics-segments {
  position: relative;
  background-color: #05070B;
  border-bottom: 1px solid #1B2632;
  overflow: hidden;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .publics-segments {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.publics-segments::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(65% 65% at 8% 8%, rgba(142, 214, 245, 0.07), transparent 70%);
}
.publics-segments::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.35) 0%, transparent 30%, transparent 70%, rgba(5, 7, 11, 0.5) 100%);
}
.publics-segments__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(40px, 5.4vw, 72px) 20px clamp(36px, 4.6vw, 56px);
}
.publics-segments__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}
@media (min-width: 992px) {
  .publics-segments__grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.05fr) minmax(280px, 0.85fr);
    grid-template-rows: auto auto;
    grid-template-areas: "content figure" "footer  figure";
    gap: clamp(32px, 4.4vw, 64px);
    align-items: start;
  }
}
.publics-segments__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 992px) {
  .publics-segments__content {
    grid-area: content;
  }
}
.publics-segments__kicker {
  margin: 0 0 6px;
  font-family: "Space Mono", var(--default-font), monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8ED6F5;
}
.publics-segments__title {
  display: inline-block;
  color: #EDF6FC;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.publics-segments__description {
  margin: 10px 0 0;
  max-width: 60ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: #fff;
  font-weight: 600;
}
.publics-segments__text {
  margin: 10px 0 0;
  max-width: 60ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: #fff;
  font-weight: 600;
}
.publics-segments__figure {
  margin: 0;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 24px 50px -14px rgba(0, 0, 0, 0.7), 0 10px 20px -8px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
@media (min-width: 992px) {
  .publics-segments__figure {
    grid-area: figure;
  }
}
.publics-segments__figure img {
  width: 100%;
  height: clamp(260px, 38vw, 520px);
  object-fit: cover;
  object-position: 50% 35%;
}
@media (min-width: 992px) {
  .publics-segments__footer {
    grid-area: footer;
  }
}
.publics-segments__categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.publics-segments__categories a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid color-mix(in srgb, var(--theme-color, #8ED6F5) 45%, #1B2632);
  color: #EAF2F8;
  font-size: 14px;
  font-weight: 600;
  text-shadow: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.publics-segments__categories a:hover {
  border-color: var(--theme-color, #8ED6F5);
  color: var(--theme-color, #8ED6F5);
}
.publics-segments__categories-age {
  font-family: "Space Mono", var(--default-font), monospace;
  font-size: 12px;
  color: var(--theme-color, #8ED6F5);
}

/*--------------------------------------------------------------
# Page "Publics" — Section 3 : Pourquoi choisir 2MAD
--------------------------------------------------------------*/
.publics-why {
  position: relative;
  background-color: #05070B;
  border-bottom: 1px solid #1B2632;
  overflow: hidden;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .publics-why {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.publics-why::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(65% 65% at 8% 8%, rgba(142, 214, 245, 0.07), transparent 70%);
}
.publics-why::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.35) 0%, transparent 30%, transparent 70%, rgba(5, 7, 11, 0.5) 100%);
}
.publics-why__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) 20px;
}
.publics-why__head {
  max-width: 70ch;
  margin-bottom: clamp(30px, 4vw, 44px);
}
.publics-why__kicker {
  margin: 0 0 10px;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8ED6F5;
}
.publics-why__title {
  display: inline-block;
  color: #EDF6FC;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0;
}
.publics-why__description {
  margin: 14px 0 0;
  max-width: 56ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: #fff;
  font-weight: 600;
}
.publics-why__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
}

.why-card {
  position: relative;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid color-mix(in srgb, var(--theme-color) 50%, transparent);
  border-radius: 10px;
  padding: clamp(26px, 2.8vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.why-card:hover, .why-card:focus-within {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--theme-color) 40%, transparent);
  border-bottom-color: var(--theme-color);
}
.why-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  padding: 2px;
  pointer-events: none;
  z-index: 1;
  border-radius: 10px;
  background: conic-gradient(from var(--ba), transparent 0 62%, color-mix(in srgb, var(--theme-color) 55%, transparent) 76%, var(--theme-color) 84%, color-mix(in srgb, var(--theme-color) 55%, transparent) 92%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: home-border-sweep 7s linear infinite;
}
.why-card__title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #EAF2F8;
  text-shadow: none;
}
.why-card__text {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #fff;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Page "Publics" — Section 4 : Remboursements mutuelle / Avantage fiscal
--------------------------------------------------------------*/
.publics-mutuelles {
  position: relative;
  background: #0C1219;
  border-bottom: 1px solid #1B2632;
  overflow: hidden;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .publics-mutuelles {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.publics-mutuelles::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 90% 10%, rgba(142, 214, 245, 0.1), transparent 60%);
}
.publics-mutuelles::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.35) 0%, transparent 30%, transparent 70%, rgba(5, 7, 11, 0.5) 100%);
}
.publics-mutuelles__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 80px) 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 4.5vw, 64px);
}
.publics-mutuelles__title {
  display: inline-block;
  color: #EDF6FC;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.14;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.publics-mutuelles__description {
  margin: 0 0 22px;
  max-width: 52ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: #fff;
  font-weight: 600;
}
.publics-mutuelles__col:last-child .publics-mutuelles__description {
  margin-bottom: 0;
}
.publics-mutuelles__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mutuelle-badge {
  display: inline-block;
  padding: 9px 14px;
  background-color: #8ED6F5;
  border: 1px solid #8ED6F5;
  color: black;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/*--------------------------------------------------------------
# Page "Publics" — Section 5 : Rejoignez l'aventure (CTA final)
--------------------------------------------------------------*/
.publics-cta {
  position: relative;
  background-color: #05070B;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .publics-cta {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.publics-cta {
  overflow: hidden;
}
.publics-cta__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.7) 0%, rgba(5, 7, 11, 0.45) 45%, rgba(5, 7, 11, 0.75) 100%);
}
.publics-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 20px;
  text-align: center;
}
.publics-cta__kicker {
  margin: 0 0 10px;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #F35BB0;
}
.publics-cta__title {
  display: inline-block;
  color: #fff;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 18px;
  text-wrap: balance;
}
.publics-cta__description {
  margin: 0 0 clamp(26px, 3.4vw, 36px);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
}
.publics-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .publics-cta__actions .home-btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}
.publics-cta__actions .home-btn--outline {
  position: relative;
  border-color: rgba(142, 214, 245, 0.5);
  color: #CFEFFF;
  text-shadow: 0 2px 10px rgba(142, 214, 245, 0.55);
  overflow: hidden;
}
.publics-cta__actions .home-btn--outline::before {
  content: "";
  position: absolute;
  inset: -2px;
  padding: 2px;
  pointer-events: none;
  z-index: 1;
  background: conic-gradient(from var(--ba), transparent 0 62%, color-mix(in srgb, #8ED6F5 55%, transparent) 76%, #CFEFFF 84%, color-mix(in srgb, #8ED6F5 55%, transparent) 92%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: home-border-sweep 7s linear infinite;
}
.publics-cta__actions .home-btn--outline:hover {
  background: #CFEFFF;
  border-color: #CFEFFF;
  color: #05070B;
  text-shadow: none;
}

/*--------------------------------------------------------------
# Page "À propos" — Section 1 : bandeau d'introduction
--------------------------------------------------------------*/
.about-hero {
  position: relative;
  background-color: #05070B;
  border-bottom: 1px solid #1B2632;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .about-hero {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.about-hero {
  overflow: hidden;
}
.about-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.55) 0%, rgba(5, 7, 11, 0.8) 55%, #05070B 100%);
}
.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 68px) 20px clamp(30px, 4vw, 50px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .about-hero__inner {
    min-height: 560px;
  }
}
.about-hero__breadcrumb {
  margin: 0 0 clamp(18px, 2.6vw, 30px);
}
.about-hero__breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #93A3B2;
}
.about-hero__breadcrumb a {
  color: #93A3B2;
  text-shadow: none;
}
.about-hero__breadcrumb a:hover {
  color: #6FE3C4;
}
.about-hero__breadcrumb li:last-child {
  color: #EAF2F8;
}
.about-hero__kicker {
  margin: 0 0 clamp(14px, 2vw, 22px);
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6FE3C4;
  text-shadow: 0 2px 10px rgba(5, 7, 11, 0.7);
}
.about-hero__title {
  display: inline-block;
  color: #fff;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(50px, 7.6vw, 100px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
  filter: drop-shadow(0 4px 16px rgba(5, 7, 11, 0.8)) drop-shadow(0 1px 4px rgba(5, 7, 11, 0.6));
}
.about-hero__description {
  margin: clamp(20px, 2.6vw, 30px) 0 0;
  max-width: 56ch;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(5, 7, 11, 0.7);
}

/*--------------------------------------------------------------
# Page "À propos" — Section 2 : Notre histoire
--------------------------------------------------------------*/
.about-histoire {
  position: relative;
  background-color: #05070B;
  border-bottom: 1px solid #1B2632;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .about-histoire {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
@media (max-width: 991.98px) {
  .about-histoire::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(65% 65% at 8% 8%, rgba(142, 214, 245, 0.07), transparent 70%);
  }
  .about-histoire::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(5, 7, 11, 0.35) 0%, transparent 30%, transparent 70%, rgba(5, 7, 11, 0.5) 100%);
  }
}
.about-histoire__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(40px, 5.4vw, 72px) 20px clamp(36px, 4.6vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}
@media (min-width: 992px) {
  .about-histoire__inner {
    display: grid;
    grid-template-columns: minmax(300px, 1.05fr) minmax(280px, 0.85fr);
    gap: clamp(32px, 4.4vw, 64px);
    align-items: center;
  }
}
.about-histoire__kicker {
  margin: 0 0 10px;
  font-family: "Space Mono", var(--default-font), monospace;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 10px rgba(5, 7, 11, 0.7);
}
.about-histoire__title {
  display: inline-block;
  color: #EDF6FC;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 clamp(14px, 2vw, 18px);
  filter: drop-shadow(0 4px 16px rgba(5, 7, 11, 0.8)) drop-shadow(0 1px 4px rgba(5, 7, 11, 0.6));
}
.about-histoire__description {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(5, 7, 11, 0.7);
}
.about-histoire__figure {
  margin: 0;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 24px 50px -14px rgba(0, 0, 0, 0.7), 0 10px 20px -8px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.about-histoire__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 -60px 70px -30px rgba(0, 0, 0, 0.5);
}
.about-histoire__figure img {
  display: block;
  width: 100%;
  height: clamp(280px, 38vw, 480px);
  object-fit: cover;
  object-position: 50% 25%;
}

/*--------------------------------------------------------------
# Page "À propos" — Section 3 : Nos exploits sur scène
--------------------------------------------------------------*/
.about-exploits {
  position: relative;
  background-color: #05070B;
  border-bottom: 1px solid #1B2632;
  overflow: hidden;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .about-exploits {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.about-exploits::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.6) 0%, rgba(5, 7, 11, 0.42) 30%, rgba(5, 7, 11, 0.42) 70%, rgba(5, 7, 11, 0.7) 100%);
}
.about-exploits__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) 20px;
}
.about-exploits__head {
  max-width: 70ch;
  margin-bottom: clamp(30px, 4vw, 44px);
}
.about-exploits__kicker {
  margin: 0 0 10px;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 10px rgba(5, 7, 11, 0.7);
}
.about-exploits__title {
  display: inline-block;
  color: #EDF6FC;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 clamp(14px, 2vw, 18px);
  filter: drop-shadow(0 4px 16px rgba(5, 7, 11, 0.8)) drop-shadow(0 1px 4px rgba(5, 7, 11, 0.6));
}
.about-exploits__description {
  margin: 0;
  max-width: 64ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(5, 7, 11, 0.7);
}
.about-exploits__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
}

.exploit-card {
  position: relative;
  height: 100%;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.exploit-card:hover, .exploit-card:focus-within {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--theme-color) 50%, transparent);
}
.exploit-card__image {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.exploit-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.exploit-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  background: var(--theme-color);
  color: #05070B;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
}
.exploit-card__body {
  padding: clamp(24px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.exploit-card__bar {
  width: 28px;
  height: 3px;
  background: var(--theme-color);
}
.exploit-card__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #EAF2F8;
  text-shadow: none;
}
.exploit-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Page "À propos" — Section 4 : Nos studios
--------------------------------------------------------------*/
.about-studios {
  position: relative;
  background: #0C1219;
  overflow: hidden;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .about-studios {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.about-studios::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 10% 0%, rgba(111, 227, 196, 0.1), transparent 60%);
}
.about-studios::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.6) 0%, rgba(5, 7, 11, 0.42) 30%, rgba(5, 7, 11, 0.42) 70%, rgba(5, 7, 11, 0.7) 100%);
}
.about-studios__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) 20px;
}
.about-studios__kicker {
  margin: 0 0 10px;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 10px rgba(5, 7, 11, 0.7);
}
.about-studios__title {
  display: inline-block;
  color: #EDF6FC;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 clamp(14px, 2vw, 18px);
  filter: drop-shadow(0 4px 16px rgba(5, 7, 11, 0.8)) drop-shadow(0 1px 4px rgba(5, 7, 11, 0.6));
}
.about-studios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(20px, 2.6vw, 32px);
  align-items: stretch;
}

.studio-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  scroll-margin-top: 100px;
}
.studio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(120% 100% at 0% 0%, rgba(142, 214, 245, 0.12), transparent 60%);
  pointer-events: none;
}
.studio-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: #05070B;
}
.studio-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio-card__body {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 2.8vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.studio-card__title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #EAF2F8;
  text-shadow: none;
}
.studio-card__description {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
}
.studio-card__tags {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.studio-card__tags li {
  padding: 7px 12px;
  border: 1px solid color-mix(in srgb, #8ED6F5 45%, #1B2632);
  color: #8ED6F5;
  font-family: "Space Mono", var(--default-font), monospace;
  font-size: 12px;
  font-weight: 700;
}
.studio-card__address {
  font-style: normal;
  margin-top: auto;
}
.studio-card__address a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  font-weight: 500;
  text-shadow: none;
  transition: color 0.3s ease;
}
.studio-card__address a:hover, .studio-card__address a:focus-visible {
  color: #6FE3C4;
}
.studio-card__address svg {
  flex: none;
}

/*--------------------------------------------------------------
# Page "À propos" — Section 5 : Écrivez la suite avec nous (CTA final)
--------------------------------------------------------------*/
.about-cta {
  position: relative;
  background-color: #05070B;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .about-cta {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.about-cta {
  overflow: hidden;
}
.about-cta__scrim {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 11, 0.72);
}
.about-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 20px;
  text-align: center;
}
.about-cta__title {
  display: inline-block;
  color: #fff;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 18px;
  text-wrap: balance;
  filter: drop-shadow(0 4px 16px rgba(5, 7, 11, 0.8)) drop-shadow(0 1px 4px rgba(5, 7, 11, 0.6));
}
.about-cta__description {
  margin: 0 0 clamp(26px, 3.4vw, 36px);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(5, 7, 11, 0.7);
}
.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .about-cta__actions .home-btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Page "Contact" — Section 1 : bandeau d'introduction
--------------------------------------------------------------*/
.contact-hero {
  position: relative;
  background-color: #05070B;
  border-bottom: 1px solid #1B2632;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .contact-hero {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.contact-hero {
  overflow: hidden;
}
.contact-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.55) 0%, rgba(5, 7, 11, 0.8) 55%, #05070B 100%);
}
.contact-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 68px) 20px clamp(30px, 4vw, 50px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .contact-hero__inner {
    min-height: 560px;
  }
}
.contact-hero__breadcrumb {
  margin: 0 0 clamp(18px, 2.6vw, 30px);
}
.contact-hero__breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #93A3B2;
}
.contact-hero__breadcrumb a {
  color: #93A3B2;
  text-shadow: none;
}
.contact-hero__breadcrumb a:hover {
  color: #6FE3C4;
}
.contact-hero__breadcrumb li:last-child {
  color: #EAF2F8;
}
.contact-hero__kicker {
  margin: 0 0 clamp(14px, 2vw, 22px);
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6FE3C4;
}
.contact-hero__title {
  display: inline-block;
  color: #fff;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 7.6vw, 100px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.contact-hero__description {
  margin: clamp(20px, 2.6vw, 30px) 0 0;
  max-width: 56ch;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Page "Contact" — Section 2 : Toutes nos coordonnées + formulaire
--------------------------------------------------------------*/
.contact-info {
  position: relative;
  background-color: #0C1219;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .contact-info::before {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
@media (max-width: 991.98px) {
  .contact-info::before {
    background-attachment: fixed;
  }
}
.contact-info::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(60% 80% at 10% 0%, rgba(111, 227, 196, 0.16), transparent 60%), radial-gradient(60% 80% at 90% 100%, rgba(111, 227, 196, 0.16), transparent 60%), linear-gradient(180deg, rgba(5, 7, 11, 0.55) 0%, rgba(5, 7, 11, 0.35) 30%, rgba(5, 7, 11, 0.35) 70%, rgba(5, 7, 11, 0.6) 100%);
}
.contact-info__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) 20px;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4.4vw, 64px);
}
@media (min-width: 992px) {
  .contact-info__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1.3fr);
    align-items: start;
  }
}
.contact-info__title {
  display: inline-block;
  color: #EDF6FC;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.contact-info__description {
  margin: 0 0 26px;
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.65;
  color: #fff;
  font-weight: 600;
}
.contact-info__cards {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 767.98px) {
  .contact-info__cards {
    gap: 10px;
    margin-bottom: 20px;
  }
}
.contact-info__cards li {
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .contact-info__cards li {
    padding: 12px 14px;
    gap: 12px;
  }
}
.contact-info__cards li svg {
  flex: none;
}
@media (max-width: 767.98px) {
  .contact-info__cards li svg {
    width: 18px;
    height: 18px;
  }
}
.contact-info__cards a {
  display: block;
  font-size: 15px;
  color: #EAF2F8;
  font-weight: 600;
  text-shadow: none;
}
@media (max-width: 767.98px) {
  .contact-info__cards a {
    font-size: 14px;
  }
}
.contact-info__cards a:hover {
  color: #CFEFFF;
}
.contact-info__cards small {
  font-size: 13px;
  color: #93A3B2;
}
@media (max-width: 767.98px) {
  .contact-info__cards small {
    font-size: 12px;
  }
}
.contact-info__locations {
  list-style: none;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
@media (max-width: 767.98px) {
  .contact-info__locations {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    padding-top: 16px;
  }
}
.contact-info__locations li {
  display: flex;
  flex-direction: column;
}
.contact-info__location-name {
  margin: 0 0 4px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #EAF2F8;
}
@media (max-width: 767.98px) {
  .contact-info__location-name {
    font-size: 14px;
  }
}
.contact-info address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: #93A3B2;
  margin: 0 0 6px;
  flex: 1;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .contact-info address {
    font-size: 13px;
    line-height: 1.5;
  }
}
.contact-info__directions {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8ED6F5;
  text-shadow: none;
}
@media (max-width: 767.98px) {
  .contact-info__directions {
    font-size: 12px;
  }
}
.contact-info__directions:hover {
  color: #CFEFFF;
}
.contact-info__form-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: clamp(28px, 3.4vw, 44px);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .contact-info__form-card {
    order: -1;
  }
}
.contact-info__form-card-logo {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: clamp(70px, 9vw, 120px);
  height: clamp(70px, 9vw, 120px);
  object-fit: contain;
  opacity: 0.07;
  pointer-events: none;
}
.contact-info__form-title {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #EAF2F8;
}

/*--------------------------------------------------------------
# Page "Contact" — Formulaire de contact
--------------------------------------------------------------*/
.contact-form {
  position: relative;
  z-index: 1;
}
.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px 20px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__field span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #CFEFFF;
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  height: 48px;
  padding: 0 14px;
  background: rgba(5, 7, 11, 0.6);
  border: 1px solid #2A3A48;
  border-radius: 6px;
  color: #EAF2F8;
  font-family: var(--default-font);
  font-size: 15px;
}
.contact-form__field input:focus-visible,
.contact-form__field select:focus-visible,
.contact-form__field textarea:focus-visible {
  outline: none;
  border-color: #8ED6F5;
}
.contact-form__field input::placeholder,
.contact-form__field select::placeholder,
.contact-form__field textarea::placeholder {
  color: #93A3B2;
}
.contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2393A3B2' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 38px;
}
.contact-form__field textarea {
  height: auto;
  padding: 14px;
  line-height: 1.6;
  resize: vertical;
}
.contact-form__field--full {
  margin-top: 18px;
}
.contact-form__error {
  font-size: 12px;
  color: #F35BB0;
}
.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  cursor: pointer;
}
.contact-form__consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #8ED6F5;
  flex: none;
}
.contact-form__consent span {
  font-size: 13px;
  line-height: 1.6;
  color: #93A3B2;
}
.contact-form__alert {
  margin: 16px 0 0;
  font-size: 13px;
  color: #F35BB0;
}
.contact-form__submit {
  margin-top: 24px;
}
@media (max-width: 575.98px) {
  .contact-form__submit {
    width: 100%;
    justify-content: center;
  }
}
.contact-form__sent {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(24px, 4vw, 48px) 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #6FE3C4;
}
.contact-form__sent h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  margin: 0;
  color: #EAF2F8;
}
.contact-form__sent p {
  margin: 0;
  max-width: 38ch;
  font-size: 15px;
  line-height: 1.6;
  color: #93A3B2;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Page "Stages" — Section 1 : bandeau d'introduction
--------------------------------------------------------------*/
.stages-hero {
  position: relative;
  background-color: #05070B;
  border-bottom: 1px solid #1B2632;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .stages-hero {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.stages-hero {
  overflow: hidden;
}
.stages-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.35) 0%, rgba(5, 7, 11, 0.5) 55%, #05070B 100%);
}
.stages-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 68px) 20px clamp(30px, 4vw, 50px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .stages-hero__inner {
    min-height: 560px;
  }
}
.stages-hero__breadcrumb {
  margin: 0 0 clamp(18px, 2.6vw, 30px);
}
.stages-hero__breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #93A3B2;
}
.stages-hero__breadcrumb a {
  color: #93A3B2;
  text-shadow: none;
}
.stages-hero__breadcrumb a:hover {
  color: #FFC46B;
}
.stages-hero__breadcrumb li:last-child {
  color: #EAF2F8;
}
.stages-hero__kicker {
  margin: 0 0 clamp(14px, 2vw, 22px);
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #CFEFFF;
}
.stages-hero__title {
  display: inline-block;
  color: #fff;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 8.6vw, 116px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
  filter: drop-shadow(0 4px 16px rgba(5, 7, 11, 0.8)) drop-shadow(0 1px 4px rgba(5, 7, 11, 0.6));
}
.stages-hero__description {
  margin: clamp(20px, 2.6vw, 30px) 0 0;
  max-width: 46ch;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(5, 7, 11, 0.7);
}

/*--------------------------------------------------------------
# Page "Stages" — Section 2 : une carte par stage
--------------------------------------------------------------*/
.stages-list {
  position: relative;
  background-color: #05070B;
}
.stages-list__items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.stages-list__item {
  position: relative;
}
.stages-list__item + .stages-list__item {
  border-top: 1px solid #1B2632;
}
.stages-list__item--glass {
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .stages-list__item--glass {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.stages-list__item--glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.35) 0%, rgba(5, 7, 11, 0.55) 55%, rgba(5, 7, 11, 0.78) 100%);
  pointer-events: none;
}
.stages-list__empty {
  padding: clamp(48px, 6vw, 88px) 20px;
  text-align: center;
  color: #93A3B2;
  font-size: 16px;
  font-weight: 600;
}

.stages-card {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(32px, 4.4vw, 72px) 20px;
  display: grid;
  grid-template-areas: "eyebrow" "media" "desc" "meta" "category" "styles" "actions";
  row-gap: clamp(20px, 3vw, 32px);
}
@media (min-width: 992px) {
  .stages-card {
    display: grid;
    grid-template-areas: none;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(24px, 3.4vw, 56px);
    align-items: start;
  }
}
@media (min-width: 992px) {
  .stages-card--reverse .stages-card__media {
    order: 1;
  }
  .stages-card--reverse .stages-card__body {
    order: 2;
  }
}
.stages-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  order: 1;
}
@media (max-width: 991.98px) {
  .stages-card__body {
    display: contents;
  }
}
@media (min-width: 992px) {
  .stages-card__body {
    gap: clamp(18px, 2.2vw, 26px);
    align-items: flex-start;
  }
}
.stages-card__media {
  position: relative;
  grid-area: media;
  order: 2;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 50px -14px rgba(0, 0, 0, 0.7), 0 10px 20px -8px rgba(0, 0, 0, 0.6);
}
@media (min-width: 992px) {
  .stages-card__media {
    grid-area: auto;
  }
}
.stages-card__media img {
  display: block;
  width: 100%;
  height: clamp(220px, 34vw, 460px);
  object-fit: cover;
  object-position: 50% 38%;
  filter: contrast(1.05) saturate(1.05);
}
@media (max-width: 991.98px) {
  .stages-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 11, 0.88) 100%);
    pointer-events: none;
  }
}
.stages-card__overlay {
  grid-area: media;
  align-self: end;
  justify-self: start;
  position: relative;
  z-index: 2;
  padding: 0 clamp(16px, 4vw, 24px) clamp(14px, 3vw, 20px);
}
@media (min-width: 992px) {
  .stages-card__overlay {
    grid-area: auto;
    align-self: auto;
    justify-self: auto;
    padding: 0;
    order: 1;
  }
}
.stages-card__category {
  grid-area: category;
  order: 3;
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 14px;
  background: var(--theme-color);
  color: #05070B;
  font-family: var(--default-font);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .stages-card__category {
    margin-top: clamp(-32px, -3.2vw, -24px);
  }
}
.stages-card__eyebrow {
  grid-area: eyebrow;
  order: 1;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: "Space Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #EAF2F8;
  text-shadow: 0 2px 10px rgba(5, 7, 11, 0.7);
}
.stages-card__eyebrow-num {
  color: var(--theme-color);
}
.stages-card__title {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.6vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
  animation: home-glow-cool 8s ease-in-out infinite;
  filter: drop-shadow(0 4px 16px rgba(5, 7, 11, 0.8)) drop-shadow(0 1px 4px rgba(5, 7, 11, 0.6));
}
.stages-card__desc {
  grid-area: desc;
  order: 1;
  margin: 0;
  max-width: 50ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(5, 7, 11, 0.7);
}
.stages-card__meta {
  grid-area: meta;
  order: 2;
  margin: 0;
  width: 100%;
  max-width: 640px;
  display: grid;
  grid-template-columns: clamp(84px, 9vw, 110px) 1fr;
  column-gap: clamp(16px, 2.2vw, 28px);
}
@media (max-width: 991.98px) {
  .stages-card__meta {
    grid-template-columns: 1fr;
  }
}
.stages-card__meta dt {
  grid-column: 1;
  padding: clamp(12px, 1.6vw, 18px) 0 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  display: flex;
  align-items: center;
}
.stages-card__meta dd {
  grid-column: 2;
  margin: 0;
  padding: clamp(12px, 1.6vw, 18px) 0 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  border-top: 1px solid #1B2632;
}
@media (max-width: 991.98px) {
  .stages-card__meta dd {
    grid-column: 1;
    padding-top: 4px;
    border-top: 0;
  }
}
.stages-card__meta-primary {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #EAF2F8;
}
.stages-card__meta-primary--theme {
  color: var(--theme-color);
}
.stages-card__meta-secondary {
  font-size: 13px;
  color: #fff;
}
.stages-card__meta-secondary--tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stages-card--glass .stages-card__meta {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: clamp(6px, 1vw, 10px) clamp(16px, 2vw, 22px);
}
.stages-card--glass .stages-card__meta dd {
  border-top: 0;
}
.stages-card__actions {
  grid-area: actions;
  order: 5;
  width: 100%;
}
.stages-card__actions .home-btn {
  width: 100%;
  justify-content: center;
  background: var(--theme-color);
  color: #05070B;
}
.stages-card__actions .home-btn:hover {
  background: #fff;
  color: #05070B;
}
@media (min-width: 992px) {
  .stages-card__actions .home-btn {
    width: auto;
  }
}
.stages-card__styles {
  grid-area: styles;
  order: 4;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.stages-card__styles li {
  padding: 7px 11px;
  border: 1px solid #26333F;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #DCE7EF;
}
.stages-card--glass .stages-card__styles li {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

/*--------------------------------------------------------------
# Page "Stages" — Section 3 : Bon à savoir
--------------------------------------------------------------*/
.stages-info {
  position: relative;
  background-color: #05070B;
  overflow: hidden;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .stages-info {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.stages-info__scrim {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 11, 0.25);
}
.stages-info__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) 20px;
}
.stages-info__head {
  max-width: 70ch;
  margin-bottom: clamp(30px, 4vw, 44px);
}
.stages-info__kicker {
  margin: 0 0 10px;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #FFC46B;
}
.stages-info__title {
  display: inline-block;
  color: #EDF6FC;
  animation: home-glow-cool 8s ease-in-out infinite;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 4.9vw, 62px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
  max-width: 20ch;
}
.stages-info__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
}

.stages-info__card {
  position: relative;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stages-info__card-bar {
  width: 24px;
  height: 3px;
  background: var(--theme-color);
}
.stages-info__card-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #EAF2F8;
}
.stages-info__card-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #ffffff;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Page "Stages" — Fiche détail ("En savoir plus")
--------------------------------------------------------------*/
.stages-detail-hero {
  position: relative;
  background-color: #05070B;
  border-bottom: 1px solid #1B2632;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .stages-detail-hero {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.stages-detail-hero {
  overflow: hidden;
}
.stages-detail-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.5) 0%, rgba(5, 7, 11, 0.72) 55%, rgba(5, 7, 11, 0.92) 100%);
}
.stages-detail-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(28px, 3.4vw, 48px) 20px clamp(24px, 3vw, 40px);
}
.stages-detail-hero__breadcrumb {
  margin: 0 0 clamp(20px, 2.6vw, 30px);
}
.stages-detail-hero__breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #93A3B2;
}
.stages-detail-hero__breadcrumb a {
  color: #93A3B2;
  text-shadow: none;
}
.stages-detail-hero__breadcrumb a:hover {
  color: #FFC46B;
}
.stages-detail-hero__breadcrumb li:last-child {
  color: #EAF2F8;
}
.stages-detail-hero__eyebrow {
  margin: 0 0 clamp(12px, 1.6vw, 18px);
  font-family: "Space Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8ED6F5;
}
.stages-detail-hero__title {
  display: inline-block;
  margin: 0;
  max-width: 20ch;
  text-wrap: balance;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: linear-gradient(100deg, #fff 0%, #CFEFFF 25%, #8ED6F5 50%, #CFEFFF 75%, #fff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: home-grad-glow 7s ease-in-out infinite, home-grad-flow 5s ease-in-out infinite;
  filter: drop-shadow(0 4px 16px rgba(5, 7, 11, 0.8)) drop-shadow(0 1px 4px rgba(5, 7, 11, 0.6));
}
.stages-detail-hero__subtitle {
  margin: clamp(20px, 2.4vw, 28px) 0 0;
  max-width: 56ch;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.6;
  color: #E4EDF4;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(5, 7, 11, 0.7);
}

.stages-detail {
  position: relative;
  background-color: #05070B;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .stages-detail {
    background-image: var(--bg-mobile, var(--bg-desktop));
  }
}
.stages-detail {
  background-attachment: fixed;
}
.stages-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.32) 0%, rgba(5, 7, 11, 0.45) 30%, rgba(5, 7, 11, 0.55) 100%);
  pointer-events: none;
}
.stages-detail__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(28px, 3.4vw, 52px) 20px clamp(48px, 6vw, 88px);
  display: grid;
  grid-template-areas: "figure" "infos" "btn" "contact" "stage" "programme" "bring" "back";
  row-gap: clamp(32px, 4vw, 56px);
}
@media (min-width: 1200px) {
  .stages-detail__inner {
    display: grid;
    grid-template-areas: none;
    grid-template-columns: minmax(300px, 1.15fr) minmax(300px, 0.85fr);
    gap: clamp(28px, 4vw, 72px);
    align-items: start;
  }
}
.stages-detail__main {
  display: contents;
}
@media (min-width: 1200px) {
  .stages-detail__main {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 4vw, 56px);
    min-width: 0;
  }
}
.stages-detail__figure {
  grid-area: figure;
  margin: 0;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 50px -14px rgba(0, 0, 0, 0.7), 0 10px 20px -8px rgba(0, 0, 0, 0.6);
}
.stages-detail__figure img {
  display: block;
  width: 100%;
  height: clamp(260px, 38vw, 540px);
  object-fit: cover;
  object-position: 50% 38%;
  filter: contrast(1.05) saturate(1.05);
}
.stages-detail__block--stage {
  grid-area: stage;
}
.stages-detail__block--programme {
  grid-area: programme;
}
.stages-detail__block--bring {
  grid-area: bring;
}
.stages-detail__block-title {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 clamp(16px, 2.2vw, 24px);
  color: #EDF6FC;
}
.stages-detail__prose {
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.8;
  color: #fff;
  font-weight: 600;
  max-width: 66ch;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.stages-detail__prose p {
  margin: 10px 0 20px;
}
.stages-detail__prose p:last-child {
  margin-bottom: 0;
}
.stages-detail__programme {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.stages-detail__programme-item {
  display: grid;
  grid-template-columns: clamp(70px, 9vw, 100px) 1fr;
  gap: clamp(10px, 1.4vw, 18px);
  padding: clamp(10px, 1.4vw, 14px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.stages-detail__programme-time {
  font-family: "Space Mono", monospace;
  font-size: 17px;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--theme-color, #8ED6F5);
  text-align: center;
  align-self: center;
}
.stages-detail__programme-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.stages-detail__programme-title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #EAF2F8;
}
.stages-detail__programme-text {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
}
.stages-detail__bring {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.stages-detail__bring li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 0;
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.stages-detail__bring-dot {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  background: var(--theme-color, #8ED6F5);
}
.stages-detail__side {
  display: contents;
}
@media (min-width: 1200px) {
  .stages-detail__side {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 22px);
    width: 100%;
    position: sticky;
    top: calc(var(--header-h, 88px) + 20px);
  }
}
.stages-detail__aside {
  display: contents;
}
@media (min-width: 1200px) {
  .stages-detail__aside {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.6vw, 30px);
    width: 100%;
  }
}
.stages-detail__aside-card {
  display: contents;
}
@media (min-width: 1200px) {
  .stages-detail__aside-card {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 2.2vw, 24px);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    padding: clamp(20px, 2.4vw, 28px);
  }
}
.stages-detail__aside-list {
  grid-area: infos;
  margin: 0;
  display: grid;
  grid-template-columns: clamp(84px, 9vw, 112px) 1fr;
  column-gap: clamp(18px, 2.4vw, 28px);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 6px clamp(18px, 2.2vw, 26px);
}
@media (min-width: 1200px) {
  .stages-detail__aside-list {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    padding: 0;
  }
}
.stages-detail__aside-list dt {
  grid-column: 1;
  padding: 16px 0 12px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.stages-detail__aside-list dd {
  grid-column: 2;
  margin: 0;
  padding: 16px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.stages-detail__aside-primary {
  color: var(--theme-color, #8ED6F5);
}
.stages-detail__aside-secondary {
  font-family: var(--default-font);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  color: #C9D7E2;
}
.stages-detail__registration-submit {
  grid-area: btn;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: 0 26px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: linear-gradient(100deg, #fff 0%, var(--theme-color) 25%, var(--theme-color) 50%, var(--theme-color) 75%, #fff 100%);
  background-size: 220% 100%;
  animation: home-grad-flow 6s ease-in-out infinite;
}
.stages-detail__registration-submit:hover {
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 0 16px var(--theme-color), 0 0 40px color-mix(in srgb, var(--theme-color) 50%, transparent);
}
.stages-detail__registration-contact {
  grid-area: contact;
  margin-top: 2px;
  text-align: center;
}
.stages-detail__registration-contact a {
  font-size: 14px;
  color: var(--theme-color, #8ED6F5);
  text-shadow: none;
}
.stages-detail__registration-contact a:hover {
  color: #fff;
}
.stages-detail__back {
  grid-area: back;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--theme-color, #F35BB0);
  text-decoration: none;
  text-shadow: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.stages-detail__back:hover {
  border-color: var(--theme-color, #F35BB0);
  color: #fff;
}

/*--------------------------------------------------------------
# Pages d'erreur (404 / 403)
--------------------------------------------------------------*/
.error-page {
  position: relative;
  min-height: 70svh;
  display: flex;
  align-items: center;
  background: #05070B;
  overflow: hidden;
}
@media (min-width: 992px) {
  .error-page {
    min-height: 90svh;
  }
}
.error-page__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(60% 55% at 15% 20%, rgba(243, 91, 176, 0.22), transparent 62%), radial-gradient(55% 50% at 85% 25%, rgba(122, 92, 255, 0.22), transparent 64%);
}
.error-page__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 90px 20px;
  text-align: center;
}
.error-page__code {
  margin: 14px 0 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: clamp(72px, 18vw, 168px);
  letter-spacing: -0.02em;
  background: linear-gradient(100deg, #fff 0%, #CFEFFF 35%, #8ED6F5 70%, #fff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: home-grad-flow 5s ease-in-out infinite;
}
.error-page__title {
  margin: 18px 0 0;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px);
  color: #EAF2F8;
}
.error-page__text {
  margin: 14px 0 0;
  font-family: var(--default-font);
  font-size: clamp(14px, 1.6vw, 17px);
  color: #93A3B2;
}
.error-page__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

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