:root {
  --color-bg: #fdfbf7;
  --color-text: #1a1a1a;

  /* Palette "Whiteboard Markers" */
  --color-accent: #e63946; /* Marker Red */
  --marker-blue: #0057d9; /* Marker Blue */
  --marker-green: #2e7d32; /* Marker Green */
  --marker-black: #212121; /* Marker Black */

  /* Palette "Sticky Notes" */
  --sticky-yellow: #fef08a;
  --sticky-pink: #fbcfe8;
  --sticky-blue: #bae6fd;
  --sticky-green: #bbf7d0;

  --color-secondary: #666666;
  --color-border: rgba(0, 0, 0, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.7);

  --font-display: "Playfair Display", serif;
  --font-body: "Manrope", sans-serif;
  --font-hand: "Caveat", cursive;
  --font-hand-alt: "Kalam", cursive;

  --spacing-container: 5vw;
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  overflow-x: hidden; /* CRITIQUE : Empêche le scroll horizontal */
  width: 100%;
  position: relative; /* Pour contenir les absolus */
  -webkit-font-smoothing: antialiased;
}

main {
  overflow-x: hidden; /* Double sécurité */
  width: 100%;
}

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

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

ul {
  list-style: none;
}

/* --- Noise Overlay --- */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- Background Doodles (UNIQUE & BIG & COLORED) --- */
.bg-doodle {
  position: absolute;
  z-index: 0;
  opacity: 1; /* Trait franc, pas de transparence */
  pointer-events: none;
  mix-blend-mode: multiply; /* Effet encre sur papier */
}

/* Filtres pour couleurs feutres (approximations CSS filter generator) */
/* Rouge: #e63946 */
.filter-red {
  filter: invert(32%) sepia(53%) saturate(2484%) hue-rotate(334deg)
    brightness(91%) contrast(96%);
}
/* Bleu: #0057d9 */
.filter-blue {
  filter: invert(23%) sepia(99%) saturate(2283%) hue-rotate(213deg)
    brightness(91%) contrast(101%);
}
/* Vert: #2e7d32 */
.filter-green {
  filter: invert(33%) sepia(81%) saturate(685%) hue-rotate(87deg)
    brightness(91%) contrast(88%);
}
/* Noir (par défaut ou renforcé) */
.filter-black {
  filter: brightness(0);
}

/* 1. Hero: Apple (Rouge) */
.d-apple-unique {
  width: 450px;
  top: -50px;
  right: -100px;
  transform: rotate(15deg);
  filter: invert(32%) sepia(53%) saturate(2484%) hue-rotate(334deg)
    brightness(91%) contrast(96%); /* Red */
}

/* 2. Services: Scale (Bleu) */
.d-scale-unique {
  width: 400px;
  bottom: 0;
  left: -100px;
  transform: rotate(-10deg);
  filter: invert(23%) sepia(99%) saturate(2283%) hue-rotate(213deg)
    brightness(91%) contrast(101%); /* Blue */
}

/* 3. About: Heart (Rouge) */
.d-heart-unique {
  width: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  filter: invert(32%) sepia(53%) saturate(2484%) hue-rotate(334deg)
    brightness(91%) contrast(96%); /* Red */
  opacity: 0.15; /* Exception: garder subtil pour le coeur en fond de texte */
}

/* 4. Expertise: Intestin (Vert) */
.d-intestine-unique {
  width: 600px;
  top: -100px;
  right: -200px;
  transform: rotate(45deg);
  filter: invert(33%) sepia(81%) saturate(685%) hue-rotate(87deg)
    brightness(91%) contrast(88%); /* Green */
}

/* 5. FAQ: Brain (Bleu) */
.d-brain-unique {
  width: 350px;
  bottom: 50px;
  left: -50px;
  transform: rotate(-15deg);
  filter: invert(23%) sepia(99%) saturate(2283%) hue-rotate(213deg)
    brightness(91%) contrast(101%); /* Blue */
}

/* 6. CTA: Stomach (Noir/Gris foncé pour pas voler la vedette) */
.d-stomach-unique {
  width: 300px;
  top: -80px;
  right: 10%;
  transform: rotate(20deg);
  /* Pas de filtre = Noir naturel du SVG */
  opacity: 0.8;
}

/* --- Typography --- */
h1,
h2,
h3 {
  font-family: var(--font-hand);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.text-outline {
  color: var(--marker-black);
  font-weight: 700;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 1rem;
}

.section-header-center {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-top: 1rem;
}

/* --- Navigation (Kabuki Style V2) --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem var(--spacing-container);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;

  /* Fond papier texturé */
  background-color: #fdfbf7;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");

  /* Bordure inférieure "griffonnée" via mask */
  border-bottom: none; /* On remplace la ligne droite */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Ombre portée très légère */
  transition: all 0.3s var(--easing);
}

/* Ajout d'un trait imparfait en bas */
.nav::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--marker-black);
  opacity: 0.1; /* Trait très subtil */
  mask: url("https://www.figma.com/api/mcp/asset/37ca0754-894f-45ae-941e-415c9cd2321d")
    repeat-x bottom;
  -webkit-mask: url("https://www.figma.com/api/mcp/asset/37ca0754-894f-45ae-941e-415c9cd2321d")
    repeat-x bottom;
}

.nav-logo {
  font-family: var(--font-hand); /* Manuscrit */
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--marker-black);
  position: relative;
  display: inline-block;
  transform: rotate(-2deg); /* Effet tampon */
}

/* Petit rond imparfait autour du logo */
.nav-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  width: 55px;
  height: 55px;
  border: 2px solid var(--color-accent); /* Rouge marqueur */
  border-radius: 50% 60% 40% 70% / 50% 50% 60% 60%; /* Encore plus organique */
  opacity: 0.8;
  pointer-events: none;
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  font-family: var(
    --font-hand-alt
  ); /* Changement pour Kalam (plus cohérent avec le reste) */
  font-size: 1.1rem; /* Un peu plus gros car font manuscrite */
  font-weight: 700;
  color: var(--marker-black);
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--marker-blue);
}

/* Soulignement gribouillé au hover */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--marker-blue);
  transition: width 0.3s var(--easing);
  transform: rotate(-1deg);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--marker-black);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 100px; /* Retour à la forme pillule standard */
  font-family: var(
    --font-body
  ); /* Manrope (cohérent avec les autres boutons) */
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s var(--easing);
  border: 1px solid var(--marker-black);
  box-shadow: none;
}

.nav-cta:hover {
  background: var(--color-accent); /* Devient rouge au survol */
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: var(--marker-black);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-weight: 500;
  transition: transform 0.3s var(--easing);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--color-accent);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--marker-black);
  border: 1px solid var(--marker-black);
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-weight: 500;
  transition: all 0.3s var(--easing);
}

.btn-secondary:hover {
  background: var(--marker-black);
  color: #fff;
}

.btn-primary.small {
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  padding: 8rem var(--spacing-container) 4rem;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.9;
  margin-bottom: 2rem;
  position: relative;
  letter-spacing: -0.02em;
  font-family: var(--font-hand);
  color: var(--marker-black);
}

/* Hand-drawn underline for hero SUPPRIMÉ */
.hero-title::after {
  content: none; /* Désactiver l'élément */
}

/* Whiteboard Marker Colors for Titles */
h2.title-marker-red {
  color: var(--color-accent) !important; /* #e63946 - Marker Red */
}

h2.title-marker-blue {
  color: var(--marker-blue) !important; /* #0057d9 - Marker Blue */
}

h2.title-marker-green {
  color: var(--marker-green) !important; /* #2e7d32 - Marker Green */
}

h2.title-marker-black {
  color: var(--marker-black) !important; /* #212121 - Marker Black */
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-secondary);
  line-height: 1.6;
  max-width: 450px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-visual .img-container {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  /* Kabuki twist: Asymmetric border radius */
  border-radius: 100px 4px 4px 4px;
}

.hero-visual img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

/* --- Services Grid (3 Cols) --- */
.services {
  padding: 8rem var(--spacing-container);
  position: relative;
}

.section-header-center h2 {
  font-size: clamp(3rem, 5vw, 4rem);
  color: var(--marker-black);
  position: relative;
  display: inline-block;
}

.section-header-center h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 25px;
  background-color: currentColor; /* Inherit title color */
  -webkit-mask: url("https://www.figma.com/api/mcp/asset/8a57c8db-7b9b-4105-86a0-487e897a3987")
    no-repeat center;
  mask: url("https://www.figma.com/api/mcp/asset/8a57c8db-7b9b-4105-86a0-487e897a3987")
    no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  opacity: 0.5;
}

.services-grid {
  display: flex; /* Utiliser Flex pour mieux gérer l'empilement */
  justify-content: center;
  align-items: center;
  gap: 0; /* Pas de gap, on gère avec des marges négatives */
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* --- STICKY NOTES STYLE --- */
.sticky-note {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  /* Taille STRICTEMENT fixe */
  width: 350px !important;
  height: 350px !important;
  min-width: 350px !important;
  min-height: 350px !important;
  flex-shrink: 0; /* Empêche absolument le rétrécissement */

  /* Pas de box-shadow demandé initialement, mais rajouté léger/diffus */
  box-shadow: 5px 10px 25px rgba(0, 0, 0, 0.08); /* Ombre très douce et étalée */
  border-radius: 2px 2px 40px 2px;
  /* Pas de transition au hover */
  position: relative;
  color: #000;
}

.sticky-note h3 {
  font-family: var(--font-hand);
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #000;
  line-height: 0.9;
}

.sticky-note p {
  font-family: var(--font-hand-alt);
  font-size: 1.3rem;
  line-height: 1.3;
  color: #000;
}

/* Sticky Note Variations (Rotations et Empilement Lisible) */
.note-yellow {
  background-color: var(--sticky-yellow);
  transform: rotate(-6deg);
  z-index: 1 !important; /* Force layer 1 */
  margin-right: -15px;
}

.note-pink {
  background-color: var(--sticky-pink);
  transform: rotate(4deg) translateY(-20px);
  z-index: 2 !important; /* Force layer 2 (on top) */
  margin: 0 10px;
}

.note-blue {
  background-color: var(--sticky-blue);
  transform: rotate(-3deg);
  z-index: 1 !important; /* Force layer 1 */
  margin-left: -15px;
}

/* Hover Effect SUPPRIMÉ TOTALEMENT */
.sticky-note:hover {
  transform: inherit; /* Garde la rotation d'origine */
  z-index: auto; /* Ne change PAS le z-index */
  cursor: default;
}

/* --- About --- */
.about {
  padding: 8rem var(--spacing-container);
  position: relative;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative; /* Essential anchor */
}

.about-visual img {
  border-radius: 4px 100px 4px 4px; /* Asymmetric */
  filter: grayscale(20%);
}

.about-content h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  /* color handled by utility class */
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -5px;
  width: 105%;
  height: 25px;
  background-color: currentColor; /* Inherit title color */
  -webkit-mask: url("https://www.figma.com/api/mcp/asset/135dcdf5-299f-4ff4-8a5e-73e0fa4432bf")
    no-repeat center;
  mask: url("https://www.figma.com/api/mcp/asset/135dcdf5-299f-4ff4-8a5e-73e0fa4432bf")
    no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  opacity: 0.8;
}

.check-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
}

.check-mark {
  color: var(--marker-green);
  font-weight: 700;
  font-family: var(--font-hand);
  font-size: 1.5rem;
}

/* --- Expertise / Video --- */
.expertise {
  padding: 6rem var(--spacing-container);
  text-align: center;
  position: relative;
}

.video-wrapper {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  margin: 0 auto 4rem;
  background: #eee;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  background-image: url("assets/hero_wellness_1764462912831.png"); /* Placeholder BG */
  background-size: cover;
  background-position: center;
}

.video-placeholder-text {
  position: absolute;
  bottom: 2rem;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.play-button {
  font-size: 3rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  transition: transform 0.3s;
}

.video-wrapper:hover .play-button {
  transform: scale(1.1);
  background: var(--color-accent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-number {
  display: block;
  font-family: var(--font-hand);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--marker-black);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--color-secondary);
  letter-spacing: 0.05em;
}

/* --- FAQ --- */
.faq {
  padding: 6rem var(--spacing-container);
  background: transparent; /* No white box blocking doodles */
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff; /* Box content itself is white */
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
}

.faq-item summary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--color-accent);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-content {
  padding-top: 1rem;
  color: var(--color-secondary);
  line-height: 1.6;
}

/* --- Instagram (Polaroid Style) --- */
.instagram-feed {
  padding: 6rem var(--spacing-container);
  text-align: center;
  overflow: hidden;
}

.insta-handle {
  display: block; /* Force le retour à la ligne */
  margin-top: 0.5rem; /* Rapprocher un peu du titre */
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--color-secondary);
  text-decoration: none; /* Enlever soulignement par défaut */
  transition: color 0.3s;
}

.insta-handle:hover {
  color: var(--color-accent);
  text-decoration: underline; /* Souligner au survol */
}

.insta-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.polaroid {
  background: #fff;
  padding: 15px 15px 40px 15px; /* Polaroid padding bottom */
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s var(--easing);
  width: 280px;
  transform-origin: center;
}

.polaroid:hover {
  transform: scale(1.05) rotate(0deg) !important;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.polaroid-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: #eee;
  overflow: hidden;
  margin-bottom: 10px;
}

.polaroid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.polaroid:hover .polaroid-img img {
  transform: scale(1.1);
}

.polaroid-caption {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  color: var(--marker-black);
  text-align: center;
}

/* Random rotations for polaroids */
.p-1 {
  transform: rotate(-3deg);
}
.p-2 {
  transform: rotate(2deg) translateY(15px);
}
.p-3 {
  transform: rotate(-4deg);
}
.p-4 {
  transform: rotate(1deg) translateY(-10px);
}

/* --- Big CTA --- */
.big-cta-section {
  padding: 8rem var(--spacing-container);
  background: #fdfbf7; /* Can specific color if needed */
  text-align: center;
  position: relative;
}

.cta-content {
  position: relative; /* Anchor for decor */
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  /* color handled by utility class */
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.cta-content h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 115%;
  height: 30px;
  background-color: currentColor; /* Inherit title color */
  -webkit-mask: url("https://www.figma.com/api/mcp/asset/ff4165d0-ff13-4a23-ba33-e1acefa60c5f")
    no-repeat center;
  mask: url("https://www.figma.com/api/mcp/asset/ff4165d0-ff13-4a23-ba33-e1acefa60c5f")
    no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  opacity: 0.9;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--color-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-magnetic {
  display: inline-block;
  padding: 1.5rem 3rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 100px;
  font-size: 1.2rem;
  font-weight: 500;
  transition: transform 0.3s var(--easing), background 0.3s;
}

.btn-magnetic:hover {
  background: #d62839;
  transform: scale(1.05);
}

/* --- Footer --- */
.footer {
  padding: 4rem var(--spacing-container) 2rem;
  position: relative;
  background: var(--color-bg);
  margin-top: 4rem;
}

/* Ligne de séparation effet feutre */
.footer-doodle-line {
  width: 100%;
  height: 3px;
  background: var(--marker-black);
  position: absolute;
  top: 0;
  left: 0;
  transform: skewY(-0.5deg); /* Légère inclinaison imparfaite */
  border-radius: 50%;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-hand);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--marker-black);
}

.footer-tagline {
  font-family: var(--font-hand-alt);
  font-size: 1.2rem;
  color: var(--color-secondary);
}

.footer-col h4 {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--color-secondary);
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: color 0.3s;
  position: relative;
}

.footer-col ul li a:hover {
  color: var(--color-accent);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-secondary);
}

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-links a:hover {
  text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav {
    padding: 1.5rem;
  }
  .nav-links {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual .img-container {
    border-radius: 4px;
    aspect-ratio: 16/9;
  }

  /* Services Grid Responsive */
  .services-grid {
    flex-direction: column; /* Empilement vertical */
    gap: 2rem; /* Espace entre les notes */
    margin-top: 2rem;
  }

  .sticky-note {
    width: 100% !important;
    max-width: 320px !important; /* Taille adaptée mobile */
    height: 320px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 auto !important; /* Centrage */
  }

  .sticky-note h3 {
    font-size: 2.5rem; /* Titre un peu plus petit */
  }

  /* Reset des positions spécifiques pour mobile */
  .note-yellow {
    transform: rotate(-2deg) !important;
    margin-right: 0;
  }

  .note-pink {
    transform: rotate(1deg) !important; /* Plus de décalage Y */
    margin: 0;
  }

  .note-blue {
    transform: rotate(-1deg) !important;
    margin-left: 0;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: 2;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  /* Adjust decor for mobile so it doesn't overlap text AND doesn't overflow */
  .bg-doodle {
    opacity: 0.15;
    transform: scale(0.6); /* Réduire encore plus */
    max-width: 100vw; /* Ne jamais dépasser la largeur d'écran */
  }

  /* Repositionnement safe pour mobile */
  .d-apple-unique {
    top: 0;
    right: -50px;
  }
  .d-scale-unique {
    bottom: 0;
    left: -50px;
  }
  .d-intestine-unique {
    right: -80px;
    top: -50px;
  }
  .d-brain-unique {
    left: -50px;
    bottom: 0;
  }
  .d-stomach-unique {
    right: 0;
    top: -50px;
  }

  .decor-cta {
    left: 5%;
    width: 80px;
  }
}
