
/* =========================
   BASE
========================= */

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
}

/* =========================
   HERO PASTEL
========================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
  padding: 60px 20px;

  background: linear-gradient(
    135deg,
    #017785c7,
    #50c1ce,
    #b8fff8,
    #6be4ba
  );

  background-size: 300% 300%;
  animation: softMove 12s ease infinite;
}

@keyframes softMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =========================
   HERO CONTENT
========================= */

.hero-inner {
  position: relative;
  z-index: 2;

  text-align: center;
  max-width: 700px;

  padding: 40px 30px;

  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  animation: popIn 0.9s ease forwards;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================
   TEXT HERO
========================= */

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 15px;
  color: #2b2b2b;
}

.hero p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  margin-bottom: 30px;
}

/* =========================
   CTA
========================= */

.cta-primary {
  display: inline-block;
  padding: 12px 22px;

  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 600;

  border-radius: 12px;

  background: linear-gradient(135deg,
    #4cb7c3,
    #2bbaa7);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

  transition: transform 0.25s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
}

/* =========================
   CHAT WIDGET
========================= */

.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;

  z-index: 999;

  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.chat-widget.show {
  opacity: 1;
  transform: translateY(0);
}

.chat-widget.hide {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  pointer-events: none;
}

/* =========================
   CHAT BUBBLES
========================= */

.chat-bubble {
  max-width: 85%;
  padding: 12px 14px;

  font-size: 14px;
  line-height: 1.4;

  color: #2b2b2b;

  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);

  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

  opacity: 0;
  transform: translateY(10px);

  transition: 0.35s ease;
}

.chat-bubble.show {
  opacity: 1;
  transform: translateY(0);
}

/* align bubbles */
#bubble1,
#bubble3 {
  align-self: flex-start;
}

/* =========================
   TYPING INDICATOR
========================= */

.typing {
  display: flex;
  gap: 4px;
  padding: 10px 12px;

  opacity: 0;
  transform: translateY(5px);
  transition: 0.3s ease;
}

.typing.show {
  opacity: 1;
  transform: translateY(0);
}

.typing span {
  width: 6px;
  height: 6px;
  background: rgba(120, 120, 120, 0.5);
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 0.9;
  }
}

.hero {
  font-family: "Bungee", sans-serif;
}

.hero p,
.chat-bubble,
.typing {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

/* =================================================== ========================================================================================================================================================================== */

.season-banner {
  width: 100%;
  padding: 2rem 0;

  position: relative;

  background: url("/assets/images/paques.png") center/cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* voile pour lisibilité */
.season-banner::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
}

.season-inner {
  position: relative;
  z-index: 2;

  padding: 6px 20px;

  display: flex;
  justify-content: center;
}

/* texte */
.season-text {
  margin: 0;

  font-size: 30px;
  font-weight: 600;

  color: white;
  text-align: center;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

  backdrop-filter: none;
}

/* option : petite animation discrète */
.season-banner {
  animation: bannerFade 0.8s ease both;
}

.season-banner {
  backdrop-filter: none;
}

@keyframes bannerFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.season-banner::before {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
}

.season-banner {
  position: relative;
  overflow: hidden;

  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.season-text {
  position: relative;
  z-index: 2;

  color: white;
  font-weight: 700;

  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  transform: translateZ(0);
}

/*==============================================================================================================================================================================================================


/* =========================
   SECTION BASE
========================= */

.founders {
  padding: 80px 20px;

  background: linear-gradient(
    135deg,
    #019b96c3,
    #17d6dcbd,
    #2ad2a8c0
  );
}

/* =========================
   TITRE
========================= */

founders-title,
.founders-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;

  color: #2b2b2b;
}

/* =========================
   GRID
========================= */

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;

  max-width: 900px;
  margin: 0 auto;
}

/* =========================
   CARD
========================= */

.founder-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;

  padding: 25px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* =========================
   TEXT
========================= */

.founder-card h3 {
  margin: 0;
  font-size: 20px;
  color: #1d1d1f;
}

.role {
  margin: 4px 0 10px;
  font-size: 14px;

  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
}

.desc {
  font-size: 14px;
  line-height: 1.5;

  color: rgba(0, 0, 0, 0.75);
}


/* =========================
   SECTION
========================= */

.founders {
  padding: 80px 20px;
}

/* TITRE */
.founders-title {
  text-align: center;
  font-family: "Bungee", cursive;
  font-size: 34px;
  color: black;
  margin-bottom: 40px;
}

/* GRID */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

/* CARD */
.founder-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);

  border-radius: 18px;
  padding: 22px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* PHOTO PLACEHOLDER */
.founder-photo {
  width: 100%;
  height: 180px;

  border-radius: 14px;
  overflow: hidden;

  margin-bottom: 15px;

  background: rgba(0,0,0,0.05);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.founder-card h3 {
  margin: 0;
  font-size: 20px;
  color: #1d1d1f;
}

.role {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
  margin: 5px 0 10px;
}

.desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.5;
}

/* CONTACT */
.contactb {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contactb a {
  font-size: 13px;
  color: #008089;
  text-decoration: none;
}

.contactb a:hover {
  text-decoration: underline;
}

.contactb { 
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contactb a {
  font-size: 13px;
  color: #008089;
  text-decoration: none;
  transition: 
    color 0.25s ease,
    transform 0.25s ease,
    letter-spacing 0.25s ease;
}

/* Hover EMAIL */
.contactb a[href^="mailto"]:hover {
  color: #00a8b5;
  letter-spacing: 0.5px;
}

/* Hover TELEPHONE */
.contactb a[href^="tel"]:hover {
  color: #005f66;
  transform: translateX(3px);
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) scale(0.8);

  animation: letterPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* décalage progressif automatique */
.hero-title span:nth-child(1) { animation-delay: 0.05s; }
.hero-title span:nth-child(2) { animation-delay: 0.10s; }
.hero-title span:nth-child(3) { animation-delay: 0.15s; }
.hero-title span:nth-child(4) { animation-delay: 0.20s; }
.hero-title span:nth-child(5) { animation-delay: 0.25s; }
.hero-title span:nth-child(6) { animation-delay: 0.30s; }
.hero-title span:nth-child(7) { animation-delay: 0.35s; }
.hero-title span:nth-child(8) { animation-delay: 0.40s; }
.hero-title span:nth-child(9) { animation-delay: 0.45s; }
.hero-title span:nth-child(10) { animation-delay: 0.50s; }

@keyframes letterPop {
  0% {
    opacity: 0;
    transform: translateY(25px) scale(0.7);
    filter: blur(4px);
  }

  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1.05);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contactb a:hover {
    text-decoration: none
}

.contactb {
  font-weight: normal;
}

.contactb:hover {
  font-weight: bold;
}

/*=========================================================================================================================================================================================================================
/* =========================
   SECTION
========================= */

.packs {
  padding: 100px 20px;
  background: #f5f6fa;
  text-align: center;
  color: #1d1d1f;
}

.packs h2 {
  font-family: "Bungee", cursive;
  font-size: 38px;
  margin-bottom: 60px;
}

/* =========================
   BADGE RECOMMANDÉ
========================= */

.badge.recommended {

  position: absolute;
  top: -14px;
  left: 50%;

  transform: translateX(-50%);

  padding: 6px 18px;

  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;

  background: linear-gradient(
    135deg,
   #0e9fb3,
    #0cb28b
  );

  color: white;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.15);
}

/* =========================
   TEXTES
========================= */

.pack h3 {
  margin: 10px 0;
}

.pack p {
  font-size: 14px;
  opacity: 0.8;
}

.pack ul {
  text-align: left;
  font-size: 13px;
  opacity: 0.85;
}

/* =========================
   PRIX
========================= */

.price {
  font-size: 26px;
  font-weight: bold;
  margin: 15px 0;
}

/* =========================
   BUTTON
========================= */

.pack button {

  width: 100%;
  padding: 12px;

  border: none;
  border-radius: 12px;

  background: linear-gradient(
    135deg,
    #017783,
    #01b78f
  );

  color: white;

  font-weight: 600;

  cursor: pointer;
}

/* =========================
   FLÈCHES
========================= */

.arrow {

  position: absolute;
  top: 50%;

  transform: translateY(-50%);

  width: 46px;
  height: 46px;

  border-radius: 50%;
  border: none;

  background: white;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.12);

  font-size: 18px;

  cursor: pointer;
}

.arrow.left {
  left: 40px;
}

.arrow.right {
  right: 40px;
}

/* =========================
   BADGE — FLOAT LÉGER
========================= */

.badge.recommended {

  animation:
    badgeFloat
    3s
    ease-in-out
    infinite;
}

@keyframes badgeFloat {

  0%, 100% {

    transform:
      translateX(-50%)
      translateY(0);

  }

  50% {

    transform:
      translateX(-50%)
      translateY(-4px);

  }

}

/* =========================
   BOUTON — INTERACTION
========================= */

.pack button {

  transition:
    transform 250ms ease,
    box-shadow 250ms ease;
}

.pack button:hover {

  transform:
    translateY(-3px);

  box-shadow:
    0 12px 28px rgba(0,0,0,0.16);
}

/* =========================
   FLÈCHES — SMOOTH
========================= */

.arrow {

  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    background 250ms ease;
}

.arrow:hover {

  transform:
    translateY(-50%)
    scale(1.1);

  box-shadow:
    0 14px 30px rgba(0,0,0,0.2);

  background: white;
}

/* =========================
   BASE CARD
========================= */

.pack {

  position: absolute;
  top: 0;
  left: 50%;

  width: 280px;
  padding: 25px;

  background: white;
  border-radius: 22px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  transition: transform 0.6s ease;

}

.packs-wrapper {
  position: relative;
  width: 900px;
  height: 420px;
  margin: 0 auto;
}

.packs-grid {
  position: relative;
  width: 100%;
  height: 100%;
}

.arrow {

  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);

  box-shadow: 0 10px 25px rgba(0,0,0,0.12);

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: bold;

  z-index: 10;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.arrow:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

.pack {
  position: absolute;
  top: 0;
  left: 50%;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.pack.center {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 3;
}

.pack.left {
  transform: translateX(-170%) scale(0.85);
  opacity: 0.6;
  z-index: 2;
}

.pack.right {
  transform: translateX(70%) scale(0.85);
  opacity: 0.6;
  z-index: 2;
}

.packs-wrapper {
  position: relative;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.arrow.left {
  left: -20px;
}

.arrow.right {
  right: -20px;
}

.pack p {
  font-style: italic;
  color: rgba(29, 29, 31, 0.75);
  line-height: 1.4;
}

.pack {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border: 1px solid rgba(0,0,0,0.06);
}

.pack h3 {
  letter-spacing: -0.3px;
  font-weight: 600;
}

.who {
  font-size: 12px;
  margin-top: 6px;
  color: rgba(29,29,31,0.6);
  letter-spacing: 0.2px;
}

.who span {
  font-weight: 600;
  color: rgba(29,29,31,0.9);
}

.badge.recommended {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);

  padding: 6px 14px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 600;

  color: #1d1d1f;
  background: rgba(255,255,255,0.75);

  border: 1px solid rgba(0,0,0,0.08);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 8px 24px rgba(0,0,0,0.08);

  animation: floatBadge 3s ease-in-out infinite;
}

.badge.recommended {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);

  padding: 6px 14px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;

  color: white;

  background: linear-gradient(135deg, #017783, #01b78f);

  border: 1px solid rgba(255,255,255,0.25);

  box-shadow:
    0 10px 25px rgba(92, 193, 255, 0.25),
    0 6px 18px rgba(79, 255, 202, 0.18);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  animation: floatBadge 3s ease-in-out infinite;
}

/* =============================================================================================================================================================================================================================================*/


.tips {
  padding: 100px 20px;
  background: linear-gradient(#46ceddc3, #01b79088);
  text-align: center;
  color: #1d1d1f;
}

.tips h2 {
  font-family: "Bungee", cursive;
  font-size: 34px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  opacity: 0.7;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* GRID */

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */

.tip-card {
  background: white;
  padding: 22px;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  text-align: left;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

.tip-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tip-card p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
}

/* HIGHLIGHT CARD */

.tip-card.highlight {
  border: 1px solid rgba(108, 162, 255, 0.25);
  background: linear-gradient(135deg, #ffffff, #f3f1ff);
  position: relative;
}

.tip-card.highlight h3 {
  color: #40a9ff;
}

/*======================================================================================================================================================= */


.stats {
  padding: 100px 20px;
  background: #fff4fd;
  color: rgb(0, 0, 0);
  text-align: center;
}

.stats h2 {
  font-size: 34px;
  margin-bottom: 10px;
  font-family: "Bungee", cursive;
}

.stats .subtitle {
  opacity: 0.6;
  font-size: 15px;
  margin-bottom: 60px;
}

/* GRID */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* CARD */

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  padding: 25px;
  border-radius: 16px;

  backdrop-filter: blur(10px);

  transition: transform 0.4s ease, background 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

/* NUMBER */

.stat-number {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;

  background: linear-gradient(90deg, #47a4e7, #3ed3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */

.stat-card p {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.4;
}

/* HIGHLIGHT */

.stat-card.highlight {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(122,108,255,0.08);
}

/* SOURCES */

.sources {
  margin-top: 40px;
  font-size: 12px;
  opacity: 0.4;

  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat-number {
  font-family: "Bungee", cursive;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


/* ========================================================================================================================================================================================= */


.contact {
  padding: 90px 20px;
  background: #f7f8fc;
  text-align: center;
  color: #1d1d1f;
}

/* TITRE */

.contact h2 {
  font-family: "Bungee", cursive;
  font-size: 34px;
  margin-bottom: 10px;
}

/* SUBTITLE */

.contact .subtitle {
  font-size: 15px;
  opacity: 0.7;
  margin-bottom: 45px;
}

/* GRID */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;

  max-width: 950px;
  margin: 0 auto;
}

/* CARDS */

.contact-card {
  display: block;
  text-decoration: none;

  padding: 25px;

  background: white;
  border-radius: 18px;

  color: inherit;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  transition: all 0.35s ease;
}

/* hover clean */

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* TITRE CARD */

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* TEXTE */

.contact-card p {
  font-size: 14px;
  opacity: 0.75;
  word-break: break-word;
}

/* BONUS: effet subtil au hover */

.contact-card:hover h3 {
  color: #24afff;
}

.contact a {
  text-decoration: none;
}

.contact a:hover {
  text-decoration: none;
}

/*======================================================================================================================================================================================= */

.quote {
  padding: 4rem 20px;
  background: linear-gradient(135deg, #00459f, #24b6ff, #15ffc8);
  text-align: center;
  color: white;
}

.quote-box {
  max-width: 900px;
  margin: 0 auto;
}

.quote-text {
  font-family: "Lobster Two", cursive;
  font-size: 42px;
  line-height: 1.3;

  margin-bottom: 20px;

  color: white;
}

.quote-author {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;

  opacity: 0.8;
}

/* ==================================================================================================================== */


.footer {
  background: #021229;
  color: white;

  padding: 70px 20px;
}

/* layout */

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;

  max-width: 1100px;
  margin: 0 auto;
}

/* LEFT */

.footer-left h3 {
  font-family: "Bungee", cursive;
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 14px;
  opacity: 0.6;
  max-width: 260px;
}

/* LINKS */

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;

  font-size: 14px;
  opacity: 0.7;

  transition: all 0.25s ease;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(4px);
  color: #24afff;
}

/* RIGHT */

.footer-right {
  font-size: 12px;
  opacity: 0.5;
  text-align: right;
  max-width: 260px;
}

/* responsive */

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-right {
    text-align: center;
  }
}

/*===============================================================================================================================================================*/

/* =====================================================
   HOW IT WORKS — SECTION
===================================================== */

.how-it-works {

  padding: 100px 20px;

  background: linear-gradient(
    180deg,
    #ffffff,
    #f6fbff
  );

  text-align: center;

  color: #1d1d1f;

}

/* =====================================================
   CONTAINER
===================================================== */

.how-it-works .container {

  max-width: 1100px;

  margin: 0 auto;

}

/* =====================================================
   HEADER
===================================================== */

.section-header {

  margin-bottom: 70px;

}

.section-header h2 {

  font-family: "Bungee", cursive;

  font-size: 34px;

  margin-bottom: 12px;

}

.section-header .subtitle {

  font-size: 16px;

  opacity: 0.7;

  max-width: 650px;

  margin: 0 auto;

}

/* =====================================================
   STEPS LIST
===================================================== */

.steps {

  list-style: none;

  padding: 0;

  margin: 0;

  display: flex;

  flex-direction: column;

  gap: 50px;

  align-items: center;

}

/* =====================================================
   STEP CARD
===================================================== */

.step {

  width: 100%;

  max-width: 900px;

}

.step-content {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 40px;

  flex-wrap: wrap;

  padding: 35px;

  background: white;

  border-radius: 22px;

  box-shadow:

    0 10px 30px rgba(0,0,0,0.06);

  transition:

    transform 0.4s ease,
    box-shadow 0.4s ease;

}

.step-content:hover {

  transform: translateY(-6px);

  box-shadow:

    0 16px 40px rgba(0,0,0,0.10);

}

/* =====================================================
   TEXT
===================================================== */

.step-text {

  flex: 1;

  min-width: 260px;

  text-align: center;

}

.step-text h3 {

  font-size: 22px;

  font-weight: 600;

  margin-bottom: 12px;

  letter-spacing: -0.3px;

}

.step-text p {

  font-size: 15px;

  line-height: 1.5;

  opacity: 0.85;

  max-width: 420px;

  margin: 0 auto;

}

/* =====================================================
   MEDIA
===================================================== */

.step-media {

  flex: 1;

  min-width: 260px;

  display: flex;

  justify-content: center;

}

/* =====================================================
   IMAGE
===================================================== */

.step-image {

  margin: 0;

  text-align: center;

}

.step-image img {

  width: 100%;

  max-width: 260px;

  height: auto;

  border-radius: 16px;

  box-shadow:

    0 10px 25px rgba(0,0,0,0.08);

  transition:

    transform 0.35s ease,
    box-shadow 0.35s ease;

}

.step-image img:hover {

  transform: translateY(-4px);

  box-shadow:

    0 14px 35px rgba(0,0,0,0.14);

}

/* =====================================================
   CAPTION
===================================================== */

.step-image figcaption {

  margin-top: 10px;

  font-size: 13px;

  opacity: 0.6;

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

  .step-content {

    flex-direction: column;

    text-align: center;

  }

  .step-text {

    order: 1;

  }

  .step-media {

    order: 2;

  }

}

/*====================================================================================================================== */

/* =====================================================
   STORY — SECTION
===================================================== */

.story {

  padding: 110px 20px;

  color: #1d1d1f;

  text-align: center;

  position: relative;

  overflow: hidden;

  /* ---------------------------------
     DÉGRADÉ 3 COULEURS ORIGINAL
     (radial + diagonal combinés)
  --------------------------------- */

  background:

    linear-gradient(
      160deg,
      #00a9b541,
      #fdf7ff
    );

}

/* =====================================================
   CONTAINER
===================================================== */

.story .container {

  max-width: 1100px;

  margin: 0 auto;

}

/* =====================================================
   HEADER
===================================================== */

.story .section-header {

  margin-bottom: 70px;

}

.story h2 {

  font-family: "Bungee", cursive;

  font-size: 34px;

  margin-bottom: 12px;

}

.story .subtitle {

  font-size: 16px;

  opacity: 0.7;

  max-width: 650px;

  margin: 0 auto;

}

/* =====================================================
   CONTENT LAYOUT
===================================================== */

.story-content {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 60px;

  flex-wrap: wrap;

}

/* =====================================================
   TEXT BLOCK
===================================================== */

.story-text {

  flex: 1;

  min-width: 280px;

  max-width: 520px;

  text-align: left;

  display: flex;

  flex-direction: column;

  gap: 18px;

}

/* =====================================================
   PARAGRAPHS
===================================================== */

.story-text p {

  font-size: 15px;

  line-height: 1.6;

  opacity: 0.9;

  margin: 0;

  transition:

    transform 0.25s ease,
    opacity 0.25s ease;

}

/* petit effet subtil */

.story-text p:hover {

  transform: translateX(3px);

  opacity: 1;

}

/* =====================================================
   NOTE FINALE (mise en avant)
===================================================== */

.story-note {

  margin-top: 10px;

  padding: 18px;

  border-radius: 16px;

  background:

    linear-gradient(
      135deg,
      rgba(228, 241, 255, 0.95),
      rgba(243, 249, 255, 0.95)
    );

  border: 1px solid rgba(0,0,0,0.06);

  box-shadow:

    0 10px 25px rgba(0,0,0,0.06);

  font-weight: 500;
  text-decoration-color:rgba(0, 54, 107)

}



/* =====================================================
   MEDIA
===================================================== */

.story-media {

  flex: 1;

  min-width: 280px;

  display: flex;

  justify-content: center;

}

/* =====================================================
   IMAGE
===================================================== */

.story-image {

  margin: 0;

  text-align: center;

}

.story-image img {

  width: 100%;

  max-width: 320px;

  height: auto;

  border-radius: 20px;

  box-shadow:

    0 14px 35px rgba(0,0,0,0.10);

  transition:

    transform 0.35s ease,
    box-shadow 0.35s ease;

}

.story-image img:hover {

  transform: translateY(-6px);

  box-shadow:

    0 18px 45px rgba(0,0,0,0.14);

}

/* =====================================================
   CAPTION
===================================================== */

.story-image figcaption {

  margin-top: 12px;

  font-size: 13px;

  opacity: 0.6;

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

  .story-content {

    flex-direction: column;

    text-align: center;

  }

  .story-text {

    text-align: center;

  }

}

/* =================================================================================================================================================== */

/* =========================
   SECTION PRODUITS
========================= */

.products-section {
  padding: 90px 20px;

  background: linear-gradient(
    135deg,
    #00a9b541,
    #f7ffff
  );
}

/* =========================
   HEADER
========================= */

.products-section header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.products-section h2 {
  font-family: "Bungee", cursive;
  font-size: 36px;
  color: #1d1d1f;
  margin-bottom: 15px;
}

.products-section header p {
  font-size: 16px;
  color: rgba(0,0,0,0.65);
}

/* =========================
   CARD PRODUIT
========================= */

.products-section article {
  display: flex;
  align-items: center;
  gap: 28px;

  max-width: 900px;
  margin: 0 auto 28px;

  padding: 24px;

  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);

  border-radius: 18px;

  border: 1px solid rgba(0,0,0,0.06);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.products-section article:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.12);
}

/* =========================
   IMAGE PRODUIT
========================= */

.product-image {
  flex-shrink: 0;

  width: 110px;
  height: 110px;

  border-radius: 16px;

  overflow: hidden;

  background: rgba(0,0,0,0.04);

  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* =========================
   TEXTE
========================= */

.product-content {
  flex: 1;
}

.product-content h3 {
  margin: 0 0 8px;

  font-size: 20px;
  color: #1d1d1f;
}

.product-content p {
  margin: 0;

  font-size: 15px;
  line-height: 1.5;

  color: rgba(0,0,0,0.75);
}

.product-content ul {
  margin-top: 10px;
  padding-left: 18px;

  font-size: 14px;
  color: rgba(0,0,0,0.7);
}

/* =========================
   BOUTON STYLE
========================= */

.product-link {
  display: inline-block;

  margin-top: 10px;

  padding: 8px 14px;

  border-radius: 10px;

  color: black;

  text-decoration: none;

  font-weight: 600;

  transition: transform 0.25s ease;
}

.product-link:hover {
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 640px) {

  .products-section article {
    flex-direction: column;
    text-align: center;
  }

  .product-image {
    width: 90px;
    height: 90px;
  }

}

