@charset "UTF-8";
/* PREMIUM MOTION SYSTEM */
/* ======================================
   Base & Typography
====================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #1a1f24;
  background: radial-gradient(circle at 8% 12%, rgba(224, 122, 95, 0.15), transparent 26%), radial-gradient(circle at 92% 32%, rgba(248, 102, 61, 0.1), transparent 25%), #FFFCF5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(224, 122, 95, 0.15), transparent 28%), radial-gradient(circle at 80% 30%, rgba(248, 102, 61, 0.1), transparent 24%), radial-gradient(circle at 60% 80%, rgba(14, 78, 89, 0.08), transparent 30%);
  animation: ambientMove 24s ease-in-out infinite alternate;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(224, 122, 95, 0.15);
  color: #0B3948;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  border: 1px solid rgba(224, 122, 95, 0.3);
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 20px 0;
  color: #0B3948;
  line-height: 1.05;
  font-weight: 900;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  color: #0B3948;
  margin-bottom: 12px;
  font-weight: 700;
}

h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 700;
}

h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #0B3948;
}

.lead {
  color: #646f73;
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 720px;
}

.section {
  padding: 86px 0;
}

.section-head {
  margin-bottom: 40px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.8), rgba(255, 252, 245, 0.4));
  border-block: 1px solid rgba(224, 122, 95, 0.1);
}

/* ======================================
   Boutons
====================================== */
.btn-calm, .btn-soft {
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.btn-calm::before, .btn-soft::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
  transform: translateX(-140%) rotate(12deg);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-calm:hover::before, .btn-soft:hover::before {
  transform: translateX(140%) rotate(12deg);
}

.btn-calm {
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  color: #fff;
  background: #f8663d;
  box-shadow: 0 10px 24px rgba(248, 102, 61, 0.25);
}
.btn-calm:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(224, 122, 95, 0.35);
  background: #e07a5f;
  color: #0B3948;
}

.btn-soft {
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 800;
  color: #0B3948;
  background: #ffffff;
  border: 2px solid rgba(224, 122, 95, 0.3);
}
.btn-soft:hover {
  transform: translateY(-2px);
  background: rgba(224, 122, 95, 0.1);
  border-color: #e07a5f;
}

.btn:focus-visible {
  outline: 3px solid rgba(248, 102, 61, 0.3);
  outline-offset: 4px;
}

.floating-help {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  background: #f8663d;
  box-shadow: 0 14px 36px rgba(248, 102, 61, 0.3);
  font-weight: 900;
  letter-spacing: 0.02em;
  animation: floatingButton 4s ease-in-out infinite;
}
.floating-help:hover {
  transform: translateY(-3px);
  color: #0B3948;
  background: #e07a5f;
}

/* ======================================
   Header Moderne (Pilule flottante)
====================================== */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: 16px;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.header-wrapper .top-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  opacity: 1;
  height: 32px;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@media screen and (max-width: 450px) {
  .header-wrapper .top-banner {
    height: 42px;
  }
}
.header-wrapper .top-banner .banner-text {
  font-size: 0.85rem;
  color: #0B3948;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 450px) {
  .header-wrapper .top-banner .banner-text {
    display: inline-block;
  }
}
@media screen and (max-width: 450px) {
  .header-wrapper .top-banner .banner-text strong {
    display: block;
  }
}
.header-wrapper .top-banner .banner-logo {
  height: 20px;
  width: auto;
  vertical-align: middle;
}
.header-wrapper .site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(248, 102, 61, 0.06);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  max-width: 850px;
  margin: 0 auto;
}
.header-wrapper .site-header .navbar {
  padding: 0;
}
.header-wrapper .site-header .navbar .btn-calm:hover {
  transform: translateY(0px) scale(1);
}
.header-wrapper .site-header .nav-link {
  color: #0B3948;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 18px !important;
  border-radius: 999px;
  transition: all 180ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
.header-wrapper .site-header .nav-link:hover, .header-wrapper .site-header .nav-link:focus {
  color: #f8663d;
  background: rgba(248, 102, 61, 0.08);
}
.header-wrapper.is-scrolled {
  padding-top: 12px;
}
.header-wrapper.is-scrolled .top-banner {
  opacity: 0;
  height: 0;
  margin-bottom: 0;
  transform: translateY(-10px);
  pointer-events: none;
  overflow: hidden;
}
.header-wrapper.is-scrolled .site-header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px rgba(11, 57, 72, 0.12);
  border-color: #fff;
}

@media (max-width: 991px) {
  .header-wrapper .site-header {
    border-radius: 999px;
    padding: 10px 24px;
    position: relative;
    max-width: 720px;
  }
  .header-wrapper .site-header .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 14px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(11, 57, 72, 0.08);
    box-shadow: 0 20px 50px rgba(11, 57, 72, 0.15);
    z-index: 1001;
  }
  .header-wrapper .site-header .nav-link {
    text-align: center;
    padding: 12px !important;
  }
}
@media (max-width: 767px) {
  .header-wrapper .site-header {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .header-wrapper {
    padding: 12px;
  }
}
/* ======================================
   Hero Section
====================================== */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: 142px 0 82px;
  overflow: hidden;
  background: linear-gradient(105deg, rgba(255, 252, 245, 0.98) 0%, rgba(255, 252, 245, 0.92) 46%, rgba(255, 252, 245, 0.6) 72%, rgba(255, 252, 245, 0.2) 100%), url("./assets/lpca-hero.jpg") center right/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 22%, rgba(224, 122, 95, 0.2), transparent 28%), radial-gradient(circle at 76% 82%, rgba(248, 102, 61, 0.15), transparent 26%);
  pointer-events: none;
  animation: heroGradient 12s ease-in-out infinite alternate;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  max-width: 840px;
}
.hero .lead {
  max-width: 640px;
}

.hero-photo-card {
  position: relative;
  min-height: 520px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(248, 102, 61, 0.15);
  border: 10px solid rgba(255, 255, 255, 0.8);
  transform: rotate(1.5deg);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
  border-radius: 26px;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 57, 72, 0.8));
}
.hero-photo-card:hover {
  transform: rotate(-1deg) translateY(-14px) scale(1.02);
  box-shadow: 0 35px 90px rgba(248, 102, 61, 0.2);
}
.hero-photo-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.2) contrast(1.08);
}

.hero-photo-caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  color: #0B3948;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(11, 57, 72, 0.15);
  text-align: center;
  animation: floatingCard 5s ease-in-out infinite;
}

.typewriter-highlight {
  display: inline-block;
  background: #0E4E59;
  font-family: "Inter", sans-serif;
  font-size: 34px;
  line-height: 36px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #ffffff;
  padding: 8px 16px 4px 16px;
  border-radius: 12px;
  border-right: 4px solid #e07a5f;
  white-space: nowrap;
  min-height: 1.2em;
  margin-top: 10px;
  animation: blink-cursor 0.8s step-end infinite;
}
@media screen and (max-width: 575px) {
  .typewriter-highlight {
    white-space: wrap;
    font-size: 24px;
    line-height: 26px;
  }
}

/* ======================================
   Mission Section
====================================== */
.mission-clean-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.mission-clean-section .mission-clean-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.mission-clean-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  align-items: start;
  isolation: isolate;
}
.mission-clean-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -120px;
  width: calc(100% + 240px);
  height: 140px;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='1600' height='140' viewBox='0 0 1600 140' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cmarker id='arrow' markerUnits='strokeWidth' markerWidth='10' markerHeight='10' refX='8' refY='5' orient='auto'%3E%3Cpath d='M0 0 L10 4 L0 12 z' fill='%23E07A5F'/%3E%3C/marker%3E%3C/defs%3E%3Cpath d='M20 70C160 20 240 140 420 70C600 20 720 140 900 70C1080 20 1160 140 1380 40' stroke='%23E07A5F' stroke-width='4' stroke-linecap='round' stroke-dasharray='8 14' marker-end='url(%23arrow)' fill='none'/%3E%3C/svg%3E") left center/calc(100% + 240px) auto no-repeat;
  opacity: 0.8;
}

.mission-clean-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 2.4rem;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(11, 57, 72, 0.08);
  box-shadow: 0 20px 60px rgba(11, 57, 72, 0.04);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.9s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  transform-style: preserve-3d;
  z-index: 1;
}
.mission-clean-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mission-clean-card::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e07a5f;
  opacity: 0.6;
  box-shadow: 0 0 10px rgba(224, 122, 95, 0.5);
}
.mission-clean-card:hover {
  transform: translateY(-14px) scale(1.02);
  border-color: rgba(248, 102, 61, 0.3);
  box-shadow: 0 25px 70px rgba(248, 102, 61, 0.08);
}
.mission-clean-card:hover::before {
  opacity: 1;
}
.mission-clean-card .mission-clean-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 24px;
  background: rgba(224, 122, 95, 0.2);
  color: #f8663d;
  animation: iconFloat 7s ease-in-out infinite;
}
.mission-clean-card .mission-clean-icon svg {
  width: 34px;
  height: 34px;
}
.mission-clean-card .mission-index {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(248, 102, 61, 0.1);
}
.mission-clean-card h3 {
  color: #0B3948;
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.mission-clean-card p {
  color: #646f73;
  margin-bottom: 0;
}

.mission-card-1 {
  margin-top: 0;
  transform: rotate(-1deg);
}
.mission-card-1::after {
  bottom: 24px;
  right: 24px;
}

.mission-card-2 {
  margin-top: 45px;
  transform: rotate(1deg);
}
.mission-card-2::after {
  bottom: 24px;
  right: 24px;
}

.mission-card-3 {
  margin-top: -15px;
  transform: rotate(-1deg);
}
.mission-card-3::after {
  bottom: 24px;
  right: 24px;
}

.mission-card-4 {
  margin-top: 35px;
  transform: rotate(1deg);
}
.mission-card-4::after {
  bottom: 24px;
  left: 24px;
}

/* ======================================
   Signes Section
====================================== */
.signs-modern-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(224, 122, 95, 0.12), transparent 34%), radial-gradient(circle at 85% 70%, rgba(248, 102, 61, 0.08), transparent 32%);
}
.signs-modern-section .signs-modern-header {
  max-width: 820px;
  margin-bottom: 40px;
}

.signs-modern-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 22px;
}

.sign-card {
  border-radius: 32px;
  border: 1px solid rgba(11, 57, 72, 0.08);
  box-shadow: 0 14px 38px rgba(11, 57, 72, 0.04);
  position: relative;
  min-height: 420px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.95);
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.9s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.sign-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.sign-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 20px 50px rgba(248, 102, 61, 0.1);
  border-color: rgba(224, 122, 95, 0.3);
}
.sign-card:hover::before {
  opacity: 1;
}
.sign-card h3 {
  color: #0B3948;
  font-size: 1.55rem;
  line-height: 1.18;
  margin-bottom: 24px;
}

.sign-card-dark {
  background: radial-gradient(circle at top right, rgba(224, 122, 95, 0.2), transparent 45%), linear-gradient(160deg, #0B3948, #0E4E59);
  color: #fff;
}
.sign-card-dark h3 {
  color: #fff;
  font-weight: 600;
}
.sign-card-dark .sign-kicker {
  color: #e07a5f;
}
.sign-card-dark .sign-card-icon {
  background: #e07a5f;
  color: #fff;
}
.sign-card-dark .sign-quote-list p {
  font-weight: 600;
}

.sign-card-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  margin-bottom: 24px;
  background: rgba(248, 102, 61, 0.15);
  color: #f8663d;
  animation: iconFloat 7s ease-in-out infinite;
}
.sign-card-icon svg {
  width: 32px;
  height: 32px;
}

.sign-card:nth-child(2) .sign-card-icon {
  animation-delay: 1s;
}

.sign-card:nth-child(3) .sign-card-icon {
  animation-delay: 2s;
}

.sign-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #f8663d;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sign-quote-list {
  display: grid;
  gap: 12px;
}
.sign-quote-list p {
  margin: 0;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 800;
}

.sign-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.sign-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border-radius: 18px;
  background: rgba(224, 122, 95, 0.08);
  color: #0B3948;
  font-weight: 700;
}
.sign-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f8663d;
  transform: translateY(-50%);
  box-shadow: 0 0 8px rgba(248, 102, 61, 0.4);
}

/* ======================================
   Action Lab Section
====================================== */
.action-lab-section {
  position: relative;
  /*overflow: hidden;*/
  background-color: #ffffff;
  padding-bottom: 86px;
}
.action-lab-section .action-lab-layout {
  display: grid;
  grid-template-columns: 3.5fr 6.5fr;
  gap: 40px;
  align-items: stretch;
}
.action-lab-section .action-lab-image {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(11, 57, 72, 0.06);
}
.action-lab-section .action-lab-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.action-lab-section .action-lab-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 20px 0;
}
.action-lab-section .action-lab-header {
  margin-bottom: 0;
  max-width: 100%;
}
.action-lab-section .action-lab-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.action-main-card, .phrase-panel {
  border-radius: 34px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.action-main-card {
  background: linear-gradient(180deg, rgba(224, 122, 95, 0.04), rgba(248, 102, 61, 0.01)), #ffffff;
  border: 1px solid rgba(11, 57, 72, 0.08);
  box-shadow: 0 16px 42px rgba(11, 57, 72, 0.05);
  padding-top: 140px;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.action-main-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(224, 122, 95, 0.15);
}
.action-main-card::after {
  content: "";
  position: absolute;
  top: 44px;
  right: 40px;
  width: 75px;
  height: 75px;
  border-radius: 22px;
  background: #f8663d;
  opacity: 0.85;
  box-shadow: 0 10px 24px rgba(248, 102, 61, 0.2);
}
.action-main-card:hover {
  transform: translateY(-14px) scale(1.02);
}
.action-main-card h3 {
  position: relative;
  z-index: 1;
  color: #0B3948;
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.action-main-card p {
  position: relative;
  z-index: 1;
  color: #646f73;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.action-main-card .btn {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  align-self: flex-start;
  margin-top: auto;
}

.action-kicker, .phrase-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.action-kicker {
  background: rgba(248, 102, 61, 0.15);
  color: #f8663d;
  font-weight: 700;
}

.phrase-panel {
  background: #0B3948;
  color: #fff;
  box-shadow: 0 16px 42px rgba(11, 57, 72, 0.15);
}
.phrase-panel .phrase-label {
  background: #e07a5f;
  color: #0B3948;
  font-weight: 700;
}
.phrase-panel .phrase-bubble {
  padding: 18px 22px;
  border-radius: 20px 20px 20px 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 14px;
}
.phrase-panel .phrase-bubble p {
  margin-bottom: 0;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4;
  font-style: italic;
}
.phrase-panel .avoid-strip {
  margin-top: auto;
  padding: 18px 22px;
  border-radius: 20px;
  background: white;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}
.phrase-panel .avoid-strip strong {
  display: block;
  margin-bottom: 4px;
  color: #e07a5f;
  font-size: 1rem;
  font-weight: 700;
}
.phrase-panel .avoid-strip span {
  color: #0B3948;
  font-size: 1rem;
  line-height: 1;
  font-weight: 600;
}

/* Bandeau Marquee */
.action-marquee-wrapper {
  position: relative;
  margin-top: 64px;
  padding: 24px 0;
  background: rgba(224, 122, 95, 0.08);
  border-top: 1px solid rgba(224, 122, 95, 0.2);
  border-bottom: 1px solid rgba(224, 122, 95, 0.2);
  overflow: hidden;
  display: flex;
  white-space: nowrap;
}
.action-marquee-wrapper .action-marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  flex-shrink: 0;
}
.action-marquee-wrapper .action-marquee-track.is-animated {
  animation: scrollMarquee 25s linear 1s infinite;
  animation-fill-mode: backwards;
}
.action-marquee-wrapper .action-marquee-track.is-animated:hover {
  animation-play-state: paused;
}
.action-marquee-wrapper .action-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #0B3948;
}
.action-marquee-wrapper .action-marquee-item strong {
  font-weight: 900;
  color: #f8663d;
}
.action-marquee-wrapper .marquee-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(248, 102, 61, 0.15);
  color: #e07a5f;
  font-weight: 900;
  font-size: 0.9rem;
}
.action-marquee-wrapper .marquee-separator {
  color: #e07a5f;
  opacity: 0.8;
  font-size: 1.2rem;
}

/* ======================================
   FAQ Section
====================================== */
.faq-all-section {
  background: linear-gradient(180deg, white, rgba(255, 252, 245, 0.8));
  border-bottom: 0;
  padding-bottom: 36px;
}

.faq-photo-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, rgba(11, 57, 72, 0.92), rgba(14, 78, 89, 0.76)), url("./assets/lpca-temoignages.png") center/cover no-repeat;
  color: #fff;
  border-radius: 34px;
  padding: 86px 12px;
  box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.04);
}
.faq-photo-section .section-head {
  padding-right: 40px;
}
.faq-photo-section .section-head h2 {
  color: #fff;
}
.faq-photo-section .section-head p {
  color: rgba(255, 255, 255, 0.7);
}
.faq-photo-section .faq-item {
  border: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(11, 57, 72, 0.1);
  backdrop-filter: blur(3px);
}
.faq-photo-section .faq-btn {
  padding: 21px 24px;
}

.faq-item {
  border: 1px solid rgba(11, 57, 72, 0.08);
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 12px;
}
.faq-item .faq-btn {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 18px 22px;
  font-weight: 800;
  color: #0B3948;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq-item .faq-btn span {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-item .faq-content p {
  padding: 0 22px 18px;
  margin: 0;
  color: #646f73;
}
.faq-item.active .faq-content {
  max-height: 260px;
}
.faq-item.active .faq-btn span {
  transform: rotate(180deg) scale(1.1);
  color: #f8663d;
}

/* ======================================
   Annuaire Section (Accordéon)
====================================== */
.directory-section-alt {
  position: relative;
  overflow: hidden;
  border-block: 0px solid rgba(224, 122, 95, 0.1);
}
.directory-section-alt .cards-flex {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.directory-section-alt .cards-flex > div {
  flex: 1 1 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.directory-card-icon {
  height: auto;
  display: block;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 57, 72, 0.08);
  box-shadow: 0 10px 30px rgba(11, 57, 72, 0.04);
  transition: transform 280ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 280ms cubic-bezier(0.2, 0.9, 0.2, 1), border-color 280ms cubic-bezier(0.2, 0.9, 0.2, 1);
  overflow: hidden;
  transform-style: preserve-3d;
}
.directory-card-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.directory-card-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(248, 102, 61, 0.1);
  border-color: rgba(224, 122, 95, 0.4);
}
.directory-card-icon:hover::before {
  opacity: 1;
}
.directory-card-icon.active {
  border-color: #f8663d;
}
.directory-card-icon.active .directory-icon {
  background: #f8663d;
  color: #fff;
}
.directory-card-icon.active .directory-toggle-icon {
  transform: rotate(135deg);
  background: #f8663d;
  color: #fff;
}
.directory-card-icon.active .directory-accordion-content {
  max-height: 2500px;
}
.directory-card-icon .directory-accordion-btn {
  width: 100%;
  border: none;
  background: transparent;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
  text-align: left;
  cursor: pointer;
}
.directory-card-icon .directory-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(224, 122, 95, 0.2);
  color: #f8663d;
  transition: background 0.3s, color 0.3s;
  animation: iconFloat 7s ease-in-out infinite;
}
.directory-card-icon .directory-icon svg {
  width: 32px;
  height: 32px;
}
.directory-card-icon .directory-header-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.directory-card-icon .directory-header-info .directory-category {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(224, 122, 95, 0.15);
  color: #0B3948;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.directory-card-icon .directory-header-info h3 {
  color: #0B3948;
  margin: 0;
  font-size: 1.8rem;
  font-family: "Cormorant Garamond", serif;
}
.directory-card-icon .directory-toggle-icon {
  color: #f8663d;
  background: rgba(248, 102, 61, 0.1);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease, color 0.4s ease;
}
.directory-card-icon .directory-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.directory-card-icon .directory-accordion-content .contact-list {
  padding: 0 32px 32px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.contact-item {
  padding: 20px;
  border-radius: 18px;
  background: rgba(14, 78, 89, 0.03);
  border: 1px solid rgba(11, 57, 72, 0.06);
  transition: background 0.3s ease;
}
.contact-item:hover {
  background: rgba(14, 78, 89, 0.06);
}
.contact-item h4 {
  font-size: 1.1rem;
  color: #0B3948;
  margin-bottom: 12px;
  font-weight: 800;
  font-family: "Inter", sans-serif;
}
.contact-item .contact-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
  color: #646f73;
}
.contact-item .contact-meta li {
  margin-bottom: 8px;
  line-height: 1.4;
}
.contact-item .contact-meta strong {
  color: #0B3948;
  display: inline-block;
  margin-right: 4px;
}
.contact-item .contact-meta a {
  color: #f8663d;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
.contact-item .contact-meta a:hover {
  color: #e07a5f;
  text-decoration: underline;
}

.emergency-aside {
  position: sticky;
  top: 110px;
  height: 100%;
  padding: 28px;
  border-radius: 30px;
  background: radial-gradient(circle at top right, rgba(224, 122, 95, 0.3), transparent 45%), linear-gradient(160deg, #f8663d, #e07a5f);
  color: #fff;
  box-shadow: 0 18px 50px rgba(248, 102, 61, 0.3);
}
.emergency-aside .emergency-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.emergency-aside h3 {
  color: #fff;
  font-size: 1.6rem;
}
.emergency-aside p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-weight: 600;
}
.emergency-aside .emergency-list {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}
.emergency-aside .emergency-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: background 280ms cubic-bezier(0.2, 0.9, 0.2, 1), transform 280ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
@media screen and (max-width: 350px) {
  .emergency-aside .emergency-list a {
    flex-wrap: wrap;
  }
}
.emergency-aside .emergency-list a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
  color: #fff;
}
.emergency-aside .emergency-list a span {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.emergency-aside .emergency-list a strong {
  font-size: 1.55rem;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ======================================
   Footer Section
====================================== */
.footer-upgraded {
  position: relative;
  overflow: hidden;
  padding: 74px 0 28px;
  background: radial-gradient(circle at 15% 15%, rgba(224, 122, 95, 0.15), transparent 28%), radial-gradient(circle at 85% 40%, rgba(248, 102, 61, 0.15), transparent 25%), #0A2229;
}
.footer-upgraded .footer-cta {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 22px;
  align-items: center;
  padding: 50px 50px;
  margin-bottom: 38px;
  border-radius: 34px;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
}
.footer-upgraded .footer-cta h3 {
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #0B3948;
  font-weight: 900;
}
.footer-upgraded .footer-cta p {
  margin: 0;
  color: #0E4E59;
}
.footer-upgraded .footer-cta .btn-soft {
  background: #e07a5f;
  color: #fff;
  border-color: #e07a5f;
}
.footer-upgraded .footer-cta .btn-soft:hover {
  background: #fff;
  color: #e07a5f;
}
.footer-upgraded .footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer-upgraded .footer-grid h4 {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
}
.footer-upgraded .footer-brand-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-right: 30px;
}
.footer-upgraded .footer-brand-card h3 {
  font-weight: 900;
  font-size: 26px;
  color: #fff;
}
.footer-upgraded .footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  text-decoration: none;
  font-weight: 300;
  opacity: 0.82;
  transition: all 280ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
.footer-upgraded .footer-links a:hover {
  color: #e07a5f;
  text-decoration: none;
  opacity: 1;
  transform: translateX(4px);
}
.footer-upgraded .footer-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}
.footer-upgraded .footer-sponsor {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #646f73;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-upgraded .footer-sponsor .sponsor-logo {
  width: 110px;
  height: auto;
  vertical-align: middle;
  margin-left: 10px;
  display: inline-block;
}

/* ======================================
   Animations Keyframes
====================================== */
@keyframes ambientMove {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-3%, -2%, 0) scale(1.08);
  }
}
@keyframes heroGradient {
  0% {
    transform: scale(1) translateY(0);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.12) translateY(-20px);
    opacity: 1;
  }
}
@keyframes floatingCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes floatingButton {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.reveal {
  opacity: 0;
  transform: translate3d(0, 90px, 0) scale(0.94) rotateX(8deg);
  filter: blur(6px) saturate(0.92);
  transition: opacity 1400ms cubic-bezier(0.16, 1, 0.3, 1), transform 1400ms cubic-bezier(0.16, 1, 0.3, 1), filter 1400ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
  transform-origin: center top;
}
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotateX(0deg);
  filter: blur(0) saturate(1);
}

/* ======================================
   Media Queries
====================================== */
@media (max-width: 1199px) {
  .mission-clean-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-clean-grid::before {
    display: none;
  }
  .emergency-list strong {
    font-size: 1.25rem !important;
  }
  .emergency-list a {
    gap: 8px !important;
  }
}
@media (max-width: 991px) {
  .section {
    padding: 68px 0;
  }
  .hero {
    min-height: auto;
    padding-top: 138px;
  }
  .hero-photo-card {
    min-height: 360px;
    transform: none;
  }
  .hero-photo-card img {
    min-height: 360px;
  }
  .signs-modern-grid {
    grid-template-columns: repeat(2, 1fr); /* On passe sur 2 colonnes égales (50% / 50%) */
  }
  .signs-modern-grid .sign-card:first-child {
    grid-column: 1/-1; /* La toute première carte s'étend du début à la fin (100%) */
  }
  .sign-card {
    min-height: auto;
  }
  .action-lab-section .action-lab-layout {
    grid-template-columns: 1fr;
  }
  .action-lab-section .action-lab-image {
    min-height: 350px;
    order: 2;
  }
  .action-lab-section .action-lab-cards {
    grid-template-columns: 1fr;
  }
  .faq-photo-section .section-head {
    position: relative;
    top: auto;
  }
  .emergency-aside {
    position: relative;
    top: auto;
  }
  .footer-upgraded .footer-cta {
    grid-template-columns: 1fr;
  }
  .footer-upgraded .footer-grid {
    grid-template-columns: repeat(2, 1fr); /* Crée 2 colonnes de 50% */
  }
  .footer-upgraded .footer-grid > div:first-child {
    grid-column: 1/-1; /* La 1ère colonne (Brand) prend 100% */
  }
  .footer-upgraded .footer-grid > div:last-child {
    grid-column: 1/-1; /* La 4ème colonne (Rappel important) prend 100% */
  }
}
@media (max-width: 768px) {
  .mission-clean-grid {
    grid-template-columns: 1fr;
  }
  .mission-clean-card {
    min-height: auto;
    margin-top: 0;
    transform: none;
  }
  .action-marquee-wrapper {
    margin-top: 40px;
    padding: 18px 0;
  }
  .action-marquee-item {
    font-size: 0.95rem;
  }
  .marquee-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  .directory-card-icon .directory-accordion-btn {
    grid-template-columns: 48px 1fr auto;
    padding: 24px 20px;
    gap: 16px;
  }
  .directory-card-icon .directory-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
  .directory-card-icon .directory-icon svg {
    width: 24px;
    height: 24px;
  }
  .directory-card-icon .directory-header-info h3 {
    font-size: 1.5rem;
  }
  .directory-card-icon .directory-toggle-icon {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .directory-card-icon .directory-accordion-content .contact-list {
    padding: 0 20px 24px 20px;
    grid-template-columns: 1fr;
  }
  .footer-upgraded .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reveal {
    transform: translate3d(0, 50px, 0) scale(0.96);
  }
  .mission-clean-card:hover, .sign-card:hover, .action-main-card:hover, .directory-card-icon:hover {
    transform: translateY(-6px) scale(1.01);
  }
}
@media (max-width: 575px) {
  .signs-modern-grid {
    grid-template-columns: 1fr;
  }
  .directory-section-alt .cards-flex > div {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media (max-width: 400px) {
  .directory-card-icon .directory-accordion-btn {
    grid-template-columns: 1fr auto;
  }
  .directory-card-icon .directory-icon {
    display: none;
  }
  .footer-upgraded .footer-grid {
    grid-template-columns: 1fr; /* 1 seule colonne à 100% */
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
.footer-legals {
  color: rgba(255, 255, 255, 0.72);
}
.footer-legals a:hover {
  color: #e07a5f;
}/*# sourceMappingURL=style.css.map */