/* ============================================================
   Crème Studio — Main Stylesheet
   ============================================================
   TABLE OF CONTENTS
   ------------------
   1.  Fonts & Variables
   2.  Base / Reset
   3.  Header & Navigation
   4.  Partners (Hero)
   5.  Pourquoi (Bento Grid)
   6.  Processus (Timeline)
   7.  Featured Projects (Mosaic)
   8.  Services (Tiles Stack)
   9.  Testimonials (Founders)
   10. Pricing
   11. Contact
   12. Footer
   13. Animations & Scroll Reveals
   14. Media Queries
   ============================================================ */

/* ============================================================
   1. FONTS & VARIABLES
   ============================================================ */
@font-face {
  font-family: Youth;
  src: url('../assets/fonts/Youth-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Youth;
  src: url('../assets/fonts/Youth-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@keyframes float-gentle {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes scroll-left-diagonal {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Animation easing variables --- */
/* (Color & layout variables defined in :root below) */

[data-text-reveal] {
  perspective: 300px;
}

.word {
  white-space: nowrap;
  display: inline-block;
}

.word > * {
  display: inline-block;
  transition: opacity .64s var(--ease);
}

.word > *:not(.--visible) {
  opacity: .1;
}

[data-inview]:not(.--visible) {
  transform: translateY(40px);
  opacity: 0;
}

[data-inview].--visible {
  transition: transform .84s var(--easeOut), opacity .84s var(--easeOut);
}

@keyframes scroll-right-diagonal {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.bands-overlay {
  position: relative;
  z-index: 999;
  width: 100%;
  height: 480px;
  overflow: hidden;
  margin-top: -160px;
  margin-bottom: -160px;
  pointer-events: none;
}

.bands-overlay__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.bands-overlay__strip {
  position: absolute;
  left: -25%;
  width: 150%;
  height: 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: "Arial Rounded MT Bold", Impact, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.bands-overlay__strip--left {
  top: 180px;
  z-index: 1002;
  background-color: #ffe600;
  color: #111;
  transform-origin: 58% center;
  transform: rotate(-5deg);
}

.bands-overlay__strip--right {
  top: 220px;
  z-index: 1001;
  background-color: #222;
  color: #fff;
  transform-origin: 58% center;
  transform: rotate(5deg);
}

.bands-overlay__content {
  flex: none;
  display: inline-block;
  padding-right: 2rem;
}

.bands-overlay__content--left {
  animation: bands-slide-left 35s linear infinite;
}

.bands-overlay__content--right {
  animation: bands-slide-right 45s linear infinite;
}

@keyframes bands-slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes bands-slide-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Easing */
  --ease: cubic-bezier(.36, .33, 0, 1);
  --easeOut: cubic-bezier(.22, .61, .36, 1);

  /* Brand palette */
  --bialy-dym: whitesmoke;
  --atrament: #3905c8;
  --trawka: #00c26b;
  --sloneczko: #ffea29;
  --jagodka: #ca74ff;
  --chmurka: #43c1f9;
  --swinka: #ff66bc;
  --niebo: #4891ff;
  --pomarancza: #fc6b44;
  --czarny: black;
  --bialy: white;

  /* Layout & nav */
  --bg: #fbf9ef;
  --base: #171412;
  --orange: #f72;
  --purple: #3d2fa9;
  --border-radius: .75em;
  --border-radius-min: .37em;
  --white: white;
  --grey: #8e827c;
  --padding: 2em;
  --bg-d: #f2f0e7;
}

@font-face {
  font-family: Alpina;
  src: url("https://cdn.prod.website-files.com/66e83ac7fb8a8683214ed93d/6747411ef26efe4d021f6868_GT-Alpina-Standard-Bold-Italic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Labil;
  src: url("https://cdn.prod.website-files.com/66e83ac7fb8a8683214ed93d/675056d615d46f9e5d3abb5a_LabilGrotesk-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  background-color: #f5f2ea;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  display: none;
}

.body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-color: #f5f2ea;
  background-image: none;
  overflow: hidden;
}

.button {
  z-index: 1;
  background-color: var(--bialy-dym);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  height: 38px;
  padding: 0 16px 4px;
  font-family: Labil, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  transition: transform .2s;
  display: flex;
  position: relative;
}

.button:hover { transform: translate(4px, 4px); }

/* Hero & Canvas Styles */
#home {
  width: 100% !important;
  padding: 0 !important;
  overflow: hidden;
}
#home .w-container,
#home .container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
  height: 100%;
}
.hero {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: -20px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  width: 100% !important;
  height: 100%;
}

.herocanvas {
  aspect-ratio: 1363 / 788;
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.footer__h2 {
  font-feature-settings: 'ss02';
}

/* --- Footer: emails & social handles → même font que "Contacts" (Labil) --- */
.footer__kontakt-text,
.footer__social-texts .footer__kontakt-text,
.footer__social-texts .footer__kontakty-h3 {
  font-family: Labil, Arial, sans-serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
  font-feature-settings: 'ss02';
}
/* --- Footer: remove underline from all links (emails + socials) --- */
.footer__kontakt a,
.footer__social-wrap,
.footer__kontakt-text,
.footer__social-texts .footer__kontakt-text {
  text-decoration: none !important;
}

/* --- Tous les titres de sections → même font que "Contacts" (Labil) --- */
.h2,
.partners__title,
.transform-section__surtitle,
.transform-section__subtitle,
.services .headline .h2,
.pricing .h2,
.featured-intro .h2 {
  font-family: Labil, Arial, sans-serif !important;
  font-feature-settings: 'ss02';
}

/* --- Footer legal links (CGU, CGV, etc.) --- */
.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1.5rem;
  grid-column: 1 / -1;
}

.footer__legal-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Labil, Arial, sans-serif;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease, filter 0.25s ease;
}

.footer__legal-btn:hover {
  filter: brightness(1.1);
}

.footer__legal-btn:active {
  filter: brightness(0.95);
}

/* ---- CGU : forme TICKET (coins découpés, style billet) ---- */
.footer__legal-btn--cgu {
  transform: rotate(-2.5deg);
  background: linear-gradient(135deg, #ffe14d 0%, #ffc800 100%);
  color: #3905c8;
  font-size: 1.2rem;
  padding: 0.85rem 2.2rem;
  letter-spacing: 0.05em;
  border-radius: 4px 20px 4px 20px;
  box-shadow: 4px 4px 0 #3905c8;
}
.footer__legal-btn--cgu:hover {
  transform: rotate(0deg) translateY(-5px) scale(1.07);
  box-shadow: 6px 8px 0 #3905c8;
}

/* ---- CGV : forme CIRCLE-ISH (pastille ronde) ---- */
.footer__legal-btn--cgv {
  transform: rotate(-1.5deg);
  background: linear-gradient(135deg, #ff9a3c 0%, #ff6b35 100%);
  color: #b5431f;
  font-size: 1.15rem;
  padding: 1.2rem 2.4rem;
  border-radius: 26px 9px 22px 14px / 12px 24px 10px 28px;
  box-shadow: 4px 5px 0 #b5431f;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
}
.footer__legal-btn--cgv:hover {
  transform: rotate(0deg) translateY(-4px) scale(1.08);
  box-shadow: 6px 8px 0 #b5431f;
}

/* ---- Mentions légales : forme SKEWED TAG (parallélogramme) ---- */
.footer__legal-btn--mentions {
  transform: rotate(-1deg) skewX(-6deg);
  background: linear-gradient(135deg, #00e68a 0%, #00b870 100%);
  color: #1a1a2e;
  font-size: 1rem;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
  box-shadow: 4px 4px 0 #007a45;
}
.footer__legal-btn--mentions span {
  display: inline-block;
  transform: skewX(6deg);
}
.footer__legal-btn--mentions:hover {
  transform: rotate(0deg) skewX(-3deg) translateY(-4px) scale(1.05);
  box-shadow: 6px 8px 0 #007a45;
}

/* ---- Confidentialité : forme DIAMOND / losange arrondi ---- */
.footer__legal-btn--confidentialite {
  transform: rotate(4deg);
  background: linear-gradient(135deg, #ff6b6b 0%, #ff2d55 100%);
  color: #fff;
  font-size: 0.82rem;
  padding: 1rem 1.6rem;
  border-radius: 24px 6px 24px 6px;
  letter-spacing: 0.05em;
  box-shadow: 3px 5px 0 #a31035;
  line-height: 1.1;
}

.footer__legal-btn--confidentialite:hover {
  transform: rotate(1deg) translateY(-5px) scale(1.08);
  box-shadow: 5px 8px 0 #a31035;
}

/* --- Button shadow (offset border) --- */
.button-wrap::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 4px;
  left: 4px;
  border-radius: 14px;
  background-color: var(--atrament);
}

.partners {
  background: #f5f2ea;
  padding: 0;
  overflow: hidden;
}

.partners__inner {
  position: relative;
}

.partners__bgword {
  display: none !important;
}

.partners__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.partners__title {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  font-family: Labil, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--base, #171412);
  position: relative;
  margin-top: calc(7rem - 50px);
}

.partners__copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.partners__desc {
  margin: 0;
  max-width: 36rem;
  color: rgba(0, 0, 0, 0.85);
  font-size: 1.05rem;
  line-height: 1.55;
  font-family: Labil, Arial, sans-serif;
}

.partners__desc--muted {
  color: rgba(0, 0, 0, 0.65);
}

.partners__quote-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  margin-left: 100px;
}

.partners__desc--quote {
  font-family: Labil, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-feature-settings: 'ss02';
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 1.1;
  color: #3905c8;
  letter-spacing: -0.02em;
}

.partners__quotes {
  width: 3rem;
  height: auto;
  flex-shrink: 0;
  margin-top: 0.2rem;
  fill: #1b1b1b;
}

.partners__quotes--left {
  transform: scaleX(-1);
  align-self: flex-start;
  margin-top: 0;
  position: relative;
  top: 16px;
}

.partners__quotes--right {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.4rem;
  position: relative;
  top: -30px;
  left: 10px;
}

@media (max-width: 991px) {
  .partners__title {
    margin-top: calc(4rem - 50px);
  }

  .partners__quote-wrap {
    flex-wrap: wrap;
  }
}

.partners__logos {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 120px;
  overflow: hidden;
  margin-top: 30px;
}

.partners__logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  animation: partners-marquee-scroll 30s linear infinite;
}

.partners__logos-row {
  display: flex;
  align-items: center;
  gap: 80px;
  flex: none;
}

.partners__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 88px;
  opacity: 0.9;
}

.partners__logo-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partners__logos-fade {
  z-index: 2;
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, #f5f2ea, #f5f2ea00 12.5% 87.5%, #f5f2ea);
}

@keyframes partners-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.partners__footnote {
  margin: 1.5rem 0 0;
  text-align: left;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1b1b1b;
}

@media (max-width: 991px) {
  .partners {
    padding: 0;
  }

  .partners__top {
    grid-template-columns: 1fr;
  }

  .partners__bgword {
    inset: auto auto calc(3.25rem + 50px + 35px) 0.5rem;
    transform: rotate(-6deg);
  }

  .partners__logos-row {
    gap: 60px;
  }
}

@media (max-width: 479px) {
  .partners__logos {
    height: 90px;
  }

  .partners__logo {
    width: 180px;
    height: 70px;
  }

  .partners__logos-row {
    gap: 50px;
  }
}

/* Mockup shared */
.ba-mockup {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ba-mockup__browser {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #1b1b1b;
}

.ba-mockup__browser--before {
  background: #d4d4d4;
}

.ba-mockup__dots {
  display: flex;
  gap: 6px;
}

.ba-mockup__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
}

.ba-mockup__browser--before .ba-mockup__dots span {
  background: #aaa;
}

.ba-mockup__url {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  font-family: monospace;
  color: #999;
  background: #2a2a2a;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
}

.ba-mockup__url--before {
  background: #c0c0c0;
  color: #666;
}

/* AFTER body (le bon site) */
.ba-mockup__body--after {
  flex: 1;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 3rem;
  color: #fff;
}

.ba-mockup__hero-after {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ba-mockup__hero-after h3 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.ba-mockup__hero-after h3 strong {
  font-weight: 800;
}

.ba-mockup__hero-after p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.ba-mockup__badge--after {
  display: inline-block;
  width: fit-content;
  padding: 0.3rem 0.8rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: #fff;
}

.ba-mockup__cta-after {
  display: inline-block;
  width: fit-content;
  margin-top: 0.5rem;
  padding: 0.75rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0a0a1a;
  background: #ffe600;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.ba-mockup__cards-after {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.ba-mockup__card-after {
  flex: 1;
  height: 70px;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

/* BEFORE body (le mauvais site) */
.ba-mockup__body--before {
  flex: 1;
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem;
  font-family: 'Times New Roman', serif;
  color: #333;
}

.ba-mockup__hero-before {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ba-mockup__hero-before h3 {
  font-size: 1.4rem;
  font-weight: normal;
  color: #0000cc;
  text-decoration: underline;
  margin: 0;
}

.ba-mockup__cta-before {
  display: inline-block;
  width: fit-content;
  margin-top: 0.5rem;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
  background: #ff0000;
  border: 2px outset #cc0000;
  font-family: 'Comic Sans MS', cursive, sans-serif;
}

.ba-mockup__blocks-before {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.ba-mockup__block-before {
  flex: 1;
  height: 60px;
  background: #ddd;
  border: 1px solid #bbb;
}

@media (max-width: 767px) {
  .ba-mockup__body--after {
    padding: 1.5rem 1.5rem;
  }

  .ba-mockup__hero-after h3 {
    font-size: 1.4rem;
  }

  .ba-mockup__hero-after p {
    font-size: 0.8rem;
  }

  .ba-mockup__cards-after {
    flex-direction: column;
    gap: 0.5rem;
  }

  .ba-mockup__card-after {
    height: 40px;
  }

  .ba-mockup__hero-before h3 {
    font-size: 1.1rem;
  }
}

/* ============================================================
   FEATURED / SHOWROOM — Neo-Brutalist DA
   ============================================================ */
.featured-section {
  background: #f5f2ea;
  position: relative;
  overflow: hidden;
}

.featured.u-section {
  padding: 7rem 0 5rem;
}

/* --- Header — editorial left-aligned --- */
.featured .headline {
  margin-bottom: 4rem;
  display: flex;
  width: 100%;
}

.featured-intro.u-intro {
  gap: 0.6rem;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
}

.featured__lead {
  font-family: Alpina, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: rgba(23, 20, 18, 0.65);
  margin: 0;
  letter-spacing: 0.01em;
}

.featured__title {
  font-family: Labil, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--base);
  margin: 0;
}

.featured__title-hl {
  background: linear-gradient(transparent 58%, var(--sloneczko) 58%, var(--sloneczko) 90%, transparent 90%);
}

/* backward compat */
.featured-intro .h2 { text-align: center; }
.featured-intro .arrow { width: 2rem; color: var(--base); }
.featured-intro-title {
  text-align: center;
  font-family: Labil, Arial, sans-serif;
  font-weight: 700;
  font-feature-settings: 'ss02';
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.2;
  color: var(--base);
  margin: 0;
}

/* --- Staggered Mosaique Grid — show all 6 --- */
.projects_mosaique {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 87rem;
  margin: 0 auto;
}

/* Offset even columns for staggered effect */
.projects_mosaique_item:nth-child(even) {
  margin-top: 4rem;
}

/* Show only 4 */
.projects_mosaique_item:nth-child(n+5) {
  display: none;
}

/* --- Neo-Brutalist Project Card --- */
.project_card {
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  width: 100%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--base, #171412);
  box-shadow: 5px 5px 0 var(--base, #171412);
  background: #fff;
  color: var(--base, #171412);
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1),
              box-shadow 0.35s cubic-bezier(.25,.8,.25,1),
              border-color 0.35s ease;
}

/* Color-coded top accent stripe */
.project_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: 5;
  background: var(--base, #171412);
}

.project_card[data-accent="purple"]::before { background: var(--atrament, #3905c8); }
.project_card[data-accent="green"]::before  { background: var(--trawka, #00c26b); }
.project_card[data-accent="orange"]::before { background: var(--pomarancza, #fc6b44); }
.project_card[data-accent="yellow"]::before { background: var(--sloneczko, #ffea29); }
.project_card[data-accent="brown"]::before  { background: #8b6642; }
.project_card[data-accent="red"]::before    { background: #e63946; }

/* Number label — top-left */
.project_card_number {
  display: none;
}

/* Category badge — top-right rotated */
.project_card_badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 5;
  font-family: Labil, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--base, #171412);
  background: var(--sloneczko, #ffea29);
  border: 2px solid var(--base, #171412);
  box-shadow: 2px 2px 0 var(--base, #171412);
  border-radius: 4px;
  padding: 0.25rem 0.55rem;
  transform: rotate(2deg);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.project_card[data-accent="green"] .project_card_badge {
  background: var(--trawka, #00c26b);
  color: #fff;
  border-color: var(--base, #171412);
  box-shadow: 2px 2px 0 var(--base, #171412);
}

.project_card[data-accent="orange"] .project_card_badge {
  background: var(--pomarancza, #fc6b44);
  color: #fff;
  border-color: var(--base, #171412);
  box-shadow: 2px 2px 0 var(--base, #171412);
}

.project_card[data-accent="purple"] .project_card_badge {
  background: var(--atrament, #3905c8);
  color: #fff;
  border-color: var(--base, #171412);
  box-shadow: 2px 2px 0 var(--base, #171412);
}

.project_card[data-accent="brown"] .project_card_badge {
  background: #8b6642;
  color: #fff;
  border-color: var(--base, #171412);
  box-shadow: 2px 2px 0 var(--base, #171412);
}

.project_card[data-accent="red"] .project_card_badge {
  background: #e63946;
  color: #fff;
  border-color: var(--base, #171412);
  box-shadow: 2px 2px 0 var(--base, #171412);
}

/* Thumbnail — fills center area */
.project_card_thumbnail {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.project_card_thumbnail .u-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

/* Bottom bar — title + meta */
.project_card_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-top: 2px solid var(--base, #171412);
  background: #fff;
  gap: 0.75rem;
  position: relative;
  z-index: 3;
}

.project_card_title {
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  color: var(--base, #171412);
}

.project_card_meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.project_card_year {
  display: none;
}

.project_card_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--base, #171412);
  border-radius: 50%;
  background: var(--bg, #fbf9ef);
  color: var(--base, #171412);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

/* --- Hover states (desktop only) — clean lift + accent shadow --- */

/* Accent stripe grows on hover */
.project_card::before {
  transition: height 0.35s cubic-bezier(.25,.8,.25,1);
}

html:not(.w-mod-touch) .project_card:hover {
  transform: translateY(-6px);
}

html:not(.w-mod-touch) .project_card[data-accent="purple"]:hover {
  box-shadow: 6px 10px 0 var(--atrament, #3905c8);
  border-color: var(--atrament, #3905c8);
}
html:not(.w-mod-touch) .project_card[data-accent="green"]:hover {
  box-shadow: 6px 10px 0 var(--trawka, #00c26b);
  border-color: var(--trawka, #00c26b);
}
html:not(.w-mod-touch) .project_card[data-accent="orange"]:hover {
  box-shadow: 6px 10px 0 var(--pomarancza, #fc6b44);
  border-color: var(--pomarancza, #fc6b44);
}
html:not(.w-mod-touch) .project_card[data-accent="yellow"]:hover {
  box-shadow: 6px 10px 0 var(--sloneczko, #ffea29);
  border-color: var(--sloneczko, #ffea29);
}
html:not(.w-mod-touch) .project_card[data-accent="brown"]:hover {
  box-shadow: 6px 10px 0 #8b6642;
  border-color: #8b6642;
}
html:not(.w-mod-touch) .project_card[data-accent="red"]:hover {
  box-shadow: 6px 10px 0 #e63946;
  border-color: #e63946;
}

html:not(.w-mod-touch) .project_card:hover::before {
  height: 0;
}

html:not(.w-mod-touch) .project_card:hover .project_card_thumbnail .u-cover {
  transform: scale(1.04);
}

html:not(.w-mod-touch) .project_card:hover .project_card_arrow {
  background: var(--base, #171412);
  color: #fff;
  transform: rotate(45deg);
}

html:not(.w-mod-touch) .project_card:hover .project_card_badge {
  transform: rotate(0deg);
}

/* Scroll reveal stagger — alternating for staggered grid */
.projects_mosaique_item[data-inview] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1),
              transform 0.6s cubic-bezier(.4,0,.2,1);
}

.projects_mosaique_item[data-inview].--visible {
  opacity: 1;
  transform: translateY(0);
}

.projects_mosaique_item[data-inview]:nth-child(1) { transition-delay: 0s; }
.projects_mosaique_item[data-inview]:nth-child(2) { transition-delay: 0.12s; }
.projects_mosaique_item[data-inview]:nth-child(3) { transition-delay: 0.06s; }
.projects_mosaique_item[data-inview]:nth-child(4) { transition-delay: 0.18s; }

/* --- Tablet (3 columns) --- */
@media (min-width: 768px) and (max-width: 1023px) {
  .projects_mosaique {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .projects_mosaique_item:nth-child(even) {
    margin-top: 2.5rem;
  }
}

/* --- Mobile --- */
@media (max-width: 767px) {
  .featured.u-section {
    padding: 5rem 0 3.5rem;
  }

  .featured .headline {
    margin-bottom: 2.5rem;
    margin-left: 0;
  }

  .featured__title {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .projects_mosaique {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .projects_mosaique_item:nth-child(even) {
    margin-top: 0;
  }

  .project_card {
    aspect-ratio: 1 / 1;
    transform: none !important;
  }

  .project_card_arrow {
    background: var(--base, #171412);
    color: #fff;
  }

}

/* ============================================================
   TILES STACK — What We Ship (style Brand Appart)
   ============================================================ */
.services.u-section {
  padding: 8rem 0 1.25rem;
  background: #f5f2ea;
}

.services .headline {
  margin-bottom: 3rem;
}

.services .headline .h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
}

.tiles_stack_wrapper {
  position: relative;
  height: 300vh;
}

.tiles_stack_list {
  position: relative;
  perspective: 100px;
}

@media screen and (min-width: 768px) {
  .tiles_stack_list {
    perspective: 20vw;
  }
}

.tiles_stack_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.tiles_stack_item:nth-child(1) {
  position: relative;
}

.service-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem;
  min-height: 420px;
  transform-style: preserve-3d;
}

.service-card-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.service-card-count {
  font-size: 1.1rem;
  opacity: .6;
}

.service-card--discovery .service-card-count {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  font-weight: 700;
  font-family: Labil, Arial, sans-serif;
  opacity: 0.4;
}

.service_card_title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.service-card--discovery .service_card_title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  font-weight: 700;
  font-family: Labil, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.service-card-desc {
  font-size: .95rem;
  line-height: 1.55;
  opacity: .8;
}

.service-card--discovery .service-card-desc {
  opacity: .5;
}

.service-card-desc p {
  margin: 0;
}


/* Discovery Card (Card 1) — Wide Layout with Testimonial & Illustrations */
.service-card--discovery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 3rem 2rem;
  padding: 2.5rem;
  min-height: 420px;
  overflow: hidden;
}

.service-card-header {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.service-card--discovery .service-card-desc {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  max-width: 100%;
}

.service-card--discovery .service-card-desc p {
  font-family: Labil, Arial, sans-serif;
}

/* Bottom row: testimonial left + images right */
.service-card-bottom {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.service-card-bottom .service-card-testimonial {
  flex: 0 0 320px;
  max-width: 320px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 0;
}

/* Testimonial Block */
.service-card-testimonial {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
  font-style: normal;
  font-family: Labil, Arial, sans-serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 1;
  font-family: Labil, Arial, sans-serif;
}

.testimonial-role {
  font-size: 0.9rem;
  opacity: 0.8;
  font-family: Labil, Arial, sans-serif;
}

/* Illustrations — base */
.service-card-illustrations {
  display: flex;
  align-items: flex-end;
  min-width: 0;
}

.illustration-item {
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

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

/* ---- Étape 1 : images carrées, débordement à droite ---- */
.illustrations--step1 {
  gap: 2rem;
  margin-right: -150px;
}

.illus-step1 {
  width: 300px;
  height: 300px;
}

/* ---- Étape 2 : images rectangulaires, alignées à droite ---- */
.illustrations--step2 {
  gap: 1.5rem;
  margin-right: 0;
  flex: 1;
  justify-content: flex-end;
}

.illus-step2 {
  width: 350px;
  height: 262px;
}

/* ---- Étape 3 : décalées à droite, 2 entières + 3ème coupée ---- */
.illustrations--step3 {
  gap: 1.5rem;
  margin-right: 0px;
  flex: 1;
  justify-content: flex-end;
}

.illus-step3 {
  width: 350px;
  height: 262px;
}

/* Mobile */
@media screen and (max-width: 767px) {
  .service-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2rem 1.5rem;
  }


  .service-card--discovery {
    padding: 2rem 1.5rem;
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .service-card--discovery .service-card-desc {
    grid-column: 1;
    grid-row: 2;
  }

  .service-card-bottom {
    grid-row: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .service-card-bottom .service-card-testimonial {
    flex: none;
    max-width: 100%;
  }

  .service-card-illustrations {
    width: 100%;
    overflow-x: auto;
    margin-right: 0;
  }

  .tiles_stack_wrapper {
    height: 260vh;
  }
}

/* ============================================================
   SECTION FOUNDERS — Avis clients
   ============================================================ */
.founders.u-section {
  overflow: visible;
  background: #f5f2ea;
  padding: 6rem 0;
}

.founders_headline.headline {
  text-align: left;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 3rem;
}

/* --- Cards stack: horizontal scroll container --- */
.c-cards-stack {
  position: relative;
  width: 100%;
}

.cards_stack_wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 1.5rem 3.5rem 5.5rem;
}
.cards_stack_wrapper::-webkit-scrollbar { display: none; }

.cards_stack_list {
  display: flex;
  gap: 1.5rem;
  padding: 0;
}

.cards_stack_item {
  width: 340px;
  min-width: 300px;
  max-width: 85vw;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cards_stack_item:hover {
  transform: translateY(-6px);
}

/* --- Founder card --- */
.founder_card {
  border-radius: 1rem;
  background-color: #fff;
  width: 100%;
  border: 2px solid rgba(57, 5, 200, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.cards_stack_item:hover .founder_card {
  box-shadow: 0 12px 32px rgba(57, 5, 200, 0.12);
  border-color: rgba(57, 5, 200, 0.2);
}

.founder_card.inner.u-flex {
  gap: 1.5rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding: 1.75rem;
}

.founder_card_top.u-flex {
  flex: 0 auto;
  flex-flow: row;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  gap: 1rem;
}

.founder_card_btm {
  gap: 1.5rem;
  flex-flow: column;
  flex: 1;
}

.founder_card_btm.u-flex {
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
}

/* --- Rating stars --- */
.rating.u-flex {
  color: var(--orange, #f26522);
  gap: .2em;
}

.rating_star {
  width: 1.1em;
}

/* --- Blockquote --- */
.block-quote {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
  border: 0;
  margin: 0;
  padding: 0;
  color: var(--base, #171412);
  display: -webkit-box;
  -webkit-line-clamp: 10;
  line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Contact Sales link --- */
.link-block-5.w-inline-block {
  text-decoration: none;
  flex-shrink: 0;
}

.link {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: var(--base, #171412);
  align-items: center;
  display: flex;
  font-family: Labil, Arial, sans-serif;
  font-size: .75em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: opacity .3s ease;
}

.link:hover {
  opacity: .6;
}

.link-title.text-youth {
  font-family: Labil, Arial, sans-serif;
}

.link-icon {
  display: flex;
  align-items: center;
}

.icon-svg {
  width: .75em;
  height: .75em;
  display: flex;
  align-items: center;
}

/* --- Author (shared) --- */
.author.u-flex {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.author_pic {
  aspect-ratio: 1;
  width: 3.5em;
  position: relative;
}

.author_pic .visual-container {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.author_pic .visual-container img.u-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.u-rounded {
  border-radius: 50%;
  overflow: hidden;
}

.author-infos {
  text-align: left;
  font-size: .8em;
  line-height: 1.2;
}

.author_name.u-block {
  display: block;
  font-weight: 700;
  font-family: Labil, Arial, sans-serif;
}

.author_job.u-block {
  display: block;
  opacity: .5;
  font-family: Labil, Arial, sans-serif;
}

.u-block {
  display: block;
}

.u-flex {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .founders.u-section {
    padding: 4rem 0;
  }

  .cards_stack_wrapper {
    padding: 1rem 2rem 4rem;
  }

  .cards_stack_item {
    width: 20em;
  }
}

/* ============================================================
   TRANSFORM SECTION — Scroll-driven Before/After
   ============================================================ */
.transform-section {
  position: relative;
  height: 300vh;
  background: #f5f2ea;
  overflow: clip;
  margin-top: 6rem;
  margin-bottom: 0;
  z-index: 1;
}

.transform-section__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 2rem;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1;
}

.transform-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.transform-section__surtitle {
  font-family: Labil, Arial, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--base);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.transform-section__subtitle-wrap {
  position: relative;
  height: 1.5em;
  overflow: visible;
}

.transform-section__subtitle {
  font-family: Labil, Arial, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.transform-section__subtitle--before {
  color: var(--base, #171412);
  opacity: .45;
}

.transform-section__subtitle--after {
  color: var(--base, #171412);
}

.transform-section__subtitle.is-active {
  opacity: 1;
  transform: translateY(0);
}

.transform-section__subtitle--before.is-active {
  opacity: .45;
}

/* --- Viewer container --- */
.transform-section__viewer {
  position: relative;
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 16 / 9;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.04),
    0 16px 48px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.transform-section__after,
.transform-section__before {
  position: absolute;
  inset: 0;
}

.transform-section__after { z-index: 1; }

.transform-section__before {
  z-index: 2;
  clip-path: inset(0 0% 0 0);
}

.transform-section__after .ba-mockup,
.transform-section__before .ba-mockup {
  width: 100%;
  height: 100%;
}

/* --- Handle — clean & minimal --- */
.transform-section__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  transform: translateX(-50%);
}

.transform-section__handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
}

.transform-section__handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--base, #171412);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

/* --- Transform Stats — Clean & Elegant --- */
.transform-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 1400px;
  margin-top: 1.5rem;
}

.transform-stat {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.05);
  transition: background .5s ease, border-color .5s ease, transform .4s ease;
}

.transform-stat:hover {
  transform: translateY(-3px);
}

.transform-stat.is-after {
  background: var(--base, #171412);
  border-color: transparent;
}

.transform-stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  color: var(--base, #171412);
  transition: color .5s ease;
}

.transform-stat__icon svg {
  width: 22px;
  height: 22px;
}

.transform-stat.is-after .transform-stat__icon {
  color: rgba(255,255,255,0.5);
}

.transform-stat__value {
  position: relative;
  height: 2.4rem;
  overflow: hidden;
}

.transform-stat__before,
.transform-stat__after {
  display: block;
  font-family: Labil, Arial, sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 2.4rem;
  letter-spacing: -0.02em;
  transition: transform .55s cubic-bezier(.4,0,.2,1), opacity .4s ease;
}

.transform-stat__before {
  color: var(--base, #171412);
  opacity: .7;
}

.transform-stat__after {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  opacity: 0;
}

/* Flipped state — after values visible */
.transform-stat.is-after .transform-stat__before {
  transform: translateY(-100%);
  opacity: 0;
}

.transform-stat.is-after .transform-stat__after {
  transform: translateY(0);
  opacity: 1;
}

.transform-stat__label {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(23, 20, 18, 0.35);
  margin-top: 0.3rem;
  transition: color .5s ease;
}

.transform-stat.is-after .transform-stat__label {
  color: rgba(255, 255, 255, 0.35);
}

/* --- Badge label on viewer --- */
.transform-section__label {
  position: absolute;
  top: 1rem;
  z-index: 4;
  padding: 0.4rem 1rem;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.5s ease;
}

.transform-section__label--before {
  left: 1rem;
  background: rgba(192,57,43,0.15);
  color: #c0392b;
  border: 1px solid rgba(192,57,43,0.3);
}

.transform-section__label--after {
  right: 1rem;
  background: rgba(39,174,96,0.15);
  color: #27ae60;
  border: 1px solid rgba(39,174,96,0.3);
}

/* --- Scroll hint --- */
.transform-section__scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.5;
  animation: scroll-hint-bounce 2s ease-in-out infinite;
  z-index: 2;
}

.transform-section__scroll-hint span {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--base);
}

.transform-section__scroll-hint svg {
  opacity: 0.6;
}

@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* --- Progress bar --- */
.transform-section__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0,0,0,0.06);
  z-index: 4;
}

.transform-section__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--base, #171412);
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
}

@media (max-width: 767px) {
  .transform-section { height: 250vh; }
  .transform-section__sticky { padding: 1.5rem 1rem; }
  .transform-section__viewer { aspect-ratio: 4 / 3; max-width: 100%; border-radius: 1rem; }
  .transform-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 1rem; }
  .transform-stat__before, .transform-stat__after { font-size: 1.3rem; line-height: 2rem; }
  .transform-stat__value { height: 2rem; }
  .transform-stat { padding: 1rem 0.75rem; }
  .transform-section__label { display: none; }
  .transform-section__scroll-hint { bottom: 1rem; }
  .featured .headline { margin-left: 0; }
  .pricing__headline.headline { margin-left: 0; }
}

/* ============================================================
   HEADER NAV — Brand Appart Style (pixel-perfect reproduction)
   ============================================================ */

/* --- Text utilities --- */
.text-youth { font-family: Labil, Arial, sans-serif; line-height: 90%; }
.text-small { font-size: .75em; }
.text-grey { color: var(--grey); }

/* --- Icon SVG reset --- */
.icon svg,
.icon { display: block; width: 100%; max-width: 100%; height: auto; }

/* --- Header (full-screen overlay, pointer-events:none) --- */
.header {
  z-index: 10;
  pointer-events: none;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 1.5em;
  display: flex;
  position: fixed;
  top: 0; left: 0;
  box-sizing: border-box;
}

.header_inner {
  flex: 1;
  position: relative;
}

/* --- Brand circle logo (top-left) --- */
.brand {
  border: 2px solid #3905c8;
  color: var(--bg);
  pointer-events: all;
  border-radius: 50%;
  padding: .25em;
  text-decoration: none;
  display: inline-block;
}

.brand_bg {
  aspect-ratio: 1;
  background-color: var(--purple);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  display: flex;
}

.brand_logo_min { 
  width: 100%; 
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Nav links (center-left) --- */
.nav {
  z-index: 9;
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  pointer-events: all;
  flex-flow: column;
  display: flex;
  position: absolute;
  top: 50%;
  left: calc(.5em - 10px);
  transform: translateY(-50%);
}

.nav_link {
  aspect-ratio: 1;
  border-radius: var(--border-radius);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  color: var(--base);
  background-color: #0000000d;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 4em;
  display: flex;
  position: relative;
  text-decoration: none;
  overflow: visible;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), background-color 0.3s ease, box-shadow 0.3s ease;
}
.nav_link:hover {
  transform: scale(1.15) translateX(4px);
  background-color: rgba(57, 5, 200, 0.08);
}

.nav_link_icon { 
  color: #3905c8 !important; 
  width: 48%; 
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  transition: transform 0.3s ease; 
}
.nav_link:hover .nav_link_icon { color: #3905c8 !important; transform: scale(1.15); }

.nav_link_btn_inner {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav_link_tag {
  display: none;
}

.nav_link_tag_title {
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 700;
  line-height: .8;
}
.nav_link_tag_title.text-youth { font-weight: 900; }

.nav_link_dot {
  background-color: var(--orange);
  opacity: 0;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  transform: translateY(6px);
}

/* --- Mobile header bar (bottom-left on desktop) --- */
.header_mobile {
  grid-column-gap: .8em;
  grid-row-gap: .8em;
  text-align: center;
  flex-flow: column;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

/* --- BA Logo (full text) --- */
.ba_logo {
  color: var(--base);
  pointer-events: all;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 4.8em;
  display: flex;
  text-decoration: none;
}
.ba_logo_text {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--base);
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.02em;
  display: block;
}

/* --- Lang --- */
.lang {
  pointer-events: all;
  cursor: pointer;
  transition: color 0.2s ease;
}
.lang:hover { color: var(--base); }

/* --- CTA button (top-right) --- */
.header_btns {
  position: absolute;
  inset: 0% 0% auto auto;
}

.btn {
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, var(--base) 0%, #2a2a2a 100%);
  color: var(--bg);
  text-transform: uppercase;
  pointer-events: all;
  font-size: .95em;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn.btn-cta {
  background: linear-gradient(135deg, #3905c8 0%, #7c3aed 50%, #3905c8 100%);
  background-size: 200% 200%;
  animation: ctaGradient 3s ease infinite;
  border-radius: 60px;
  box-shadow: 0 4px 20px rgba(57, 5, 200, 0.35), 0 0 40px rgba(57, 5, 200, 0.1);
  color: #fff;
  font-size: 1em;
  font-weight: 800;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}
.btn.btn-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  transform: rotate(30deg);
  pointer-events: none;
}
.btn.btn-cta:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 30px rgba(57, 5, 200, 0.5), 0 0 60px rgba(124, 58, 237, 0.2);
  background: linear-gradient(135deg, #7c3aed 0%, #3905c8 50%, #7c3aed 100%);
  background-size: 200% 200%;
}

@keyframes ctaGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-sparkle {
  font-size: 0.75em;
  opacity: 0.8;
  animation: sparkle 2s ease-in-out infinite;
  display: inline-block;
}
.btn-sparkle:last-child { }

@keyframes sparkle {
  0%, 100% { opacity: 0.5; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.btn:not(.btn-cta):hover { 
  transform: scale(1.06) translateY(-2px); 
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #2a2a2a 0%, var(--base) 100%);
}

.btn-inner { padding: 1.1em 1.8em 1em; display: flex; align-items: center; gap: 0.5em; }
.btn-text.text-youth { white-space: nowrap; }

/* --- Scroll progress (right center) --- */
.page_scroll_progress {
  display: none;
}

.scroll_progress_line {
  background-color: #0000001a;
  width: 1px;
  flex: 1;
}

.scroll_progress_cursor {
  aspect-ratio: 1;
  border: 1px solid #0000001a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 1em;
  display: flex;
  transition: transform 0.1s linear;
}

.scroll_progress_cursor_dot {
  aspect-ratio: 1;
  background-color: var(--base);
  border-radius: 50%;
  width: .3em;
}

/* --- Current time (bottom-right) --- */
.current_time {
  grid-column-gap: .2em;
  grid-row-gap: .2em;
  pointer-events: all;
  margin-bottom: 0;
  display: flex;
}
.current_time.text-small {
  position: absolute;
  inset: auto 0% 0% auto;
}

/* --- Menu toggle (hidden on desktop) --- */
.menu_toggle { display: none; }
.menu_toggle_icon {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  width: 40%;
  display: flex;
}
.menu_toggle_line {
  background-color: var(--base, #171412);
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center center;
}

/* --- Nav overlay (hidden on desktop) --- */
.nav_overlay { display: none; }

/* --- Push content right so the nav doesn't overlap --- */
.main {
  margin-left: 6em;
}
.section.is--relative,
body > div[style*="background-color: #1b1b1b"] {
  margin-left: 6em;
}

/* ============================================================
   HEADER — Mobile (<= 767px)
   ============================================================ */
@media screen and (max-width: 767px) {
  .header {
    height: auto;
    padding: 20px;
  }

  .brand { display: none; }

  .header_mobile {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    inset: 0 0 0% 0%;
  }

  .ba_logo {
    flex-flow: row;
    justify-content: center;
    align-items: flex-start;
    width: auto;
    max-width: 150px;
    margin-right: auto;
  }

  .header_btns { display: none; }
  .current_time.text-small.text-grey,
  .page_scroll_progress { display: none; }

  .header_inner { z-index: 1; }

  .menu_toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 9999;
    aspect-ratio: 1;
    border-radius: 12px;
    background-color: var(--sloneczko, #ffea29);
    border: 2px solid var(--base, #171412);
    box-shadow: 3px 3px 0 var(--base, #171412);
    cursor: pointer;
    pointer-events: all;
    justify-content: center;
    align-items: center;
    width: 44px;
    display: flex;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .menu_toggle:active {
    transform: translate(2px, 2px);
    box-shadow: 0 0 0 var(--base, #171412);
  }
  .menu_toggle.is-open {
    background-color: var(--sloneczko, #ffea29);
    box-shadow: 3px 3px 0 var(--base, #171412);
    border-color: var(--base, #171412);
  }

  /* --- Full-screen mobile menu — Néobrutaliste --- */
  .nav {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(23, 20, 18, 0.45);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    backdrop-filter: blur(28px) saturate(1.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 5.5rem 1.75rem 3rem;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: opacity 0.35s cubic-bezier(.22,.61,.36,1);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: all;
  }

  .nav_link {
    display: flex;
    width: 100%;
    max-width: 360px;
    padding: 1.2rem 1.5rem;
    border-bottom: none;
    border-radius: 0.85rem;
    background: #fff;
    color: var(--base, #171412);
    text-decoration: none;
    border: 2.5px solid var(--base, #171412);
    transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s ease;
    position: relative;
    overflow: visible;
    aspect-ratio: auto;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  /* Each link gets a different brand-color shadow */
  .nav_link:nth-child(1) {
    box-shadow: 5px 5px 0 var(--atrament, #3905c8);
    transform: rotate(-1.2deg);
  }
  .nav_link:nth-child(2) {
    box-shadow: 5px 5px 0 var(--sloneczko, #ffea29);
    transform: rotate(0.8deg);
  }
  .nav_link:nth-child(3) {
    box-shadow: 5px 5px 0 var(--trawka, #00c26b);
    transform: rotate(-0.6deg);
  }
  .nav_link:nth-child(4) {
    box-shadow: 5px 5px 0 var(--pomarancza, #fc6b44);
    transform: rotate(1deg);
  }

  .nav_link:active {
    transform: translate(2px, 2px) rotate(0deg) !important;
    box-shadow: 1px 1px 0 var(--base, #171412) !important;
  }
  .nav_link,
  .nav_link:hover,
  .nav_link:focus,
  .nav_link:active,
  .nav_link.is-current {
    color: var(--base, #171412) !important;
    background: #fff !important;
  }

  .nav_link_icon {
    color: var(--atrament, #3905c8) !important;
    width: 24px;
    flex-shrink: 0;
  }
  .nav_link:nth-child(2) .nav_link_icon { color: #c5a800 !important; }
  .nav_link:nth-child(3) .nav_link_icon { color: var(--trawka, #00c26b) !important; }
  .nav_link:nth-child(4) .nav_link_icon { color: var(--pomarancza, #fc6b44) !important; }

  .nav_link_tag {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    color: var(--base, #171412) !important;
    background: transparent !important;
    border-radius: 0;
    margin-left: 0;
    padding: 0;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
  }
  .nav_link:hover .nav_link_tag { transform: none !important; }

  .nav_link_tag_title {
    font-family: Labil, Arial, sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    color: var(--base, #171412) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav_link_btn_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    transform: none;
  }

  .nav_link_dot.is-mobile { display: none; }

  /* --- Menu footer (injected by JS) --- */
  .nav__menu-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 360px;
  }
  .nav__menu-socials {
    display: flex;
    gap: 0.75rem;
  }
  .nav__menu-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }
  .nav__menu-social-link:hover,
  .nav__menu-social-link:active {
    background: var(--sloneczko, #ffea29);
    border-color: var(--base, #171412);
    color: var(--base, #171412);
    box-shadow: 3px 3px 0 rgba(255,255,255,0.15);
    transform: translate(-2px, -2px);
  }
  .nav__menu-social-link svg { width: 20px; height: 20px; }
  .nav__menu-brand {
    font-family: Labil, Arial, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
  }

  /* Burger → X animation */
  .menu_toggle.is-open .menu_toggle_line:first-child {
    transform: translateY(7.5px) rotate(45deg);
  }
  .menu_toggle.is-open .menu_toggle_line:nth-child(2) {
    opacity: 0;
  }
  .menu_toggle.is-open .menu_toggle_line:last-child {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .nav_overlay {
    display: none;
  }

  .main,
  .section.is--relative,
  body > div[style*="background-color: #1b1b1b"] {
    margin-left: 0;
  }
}

@media screen and (max-width: 479px) {
  .header_mobile {
    justify-content: flex-end;
    align-items: center;
    display: flex;
  }
}

/* ============================================================
   SECTION — Pourquoi Crème Agency (Bento Grid) — Redesign
   ============================================================ */
.pourquoi { padding: 7rem 0 4rem; }

/* --- Header --- */
.pourquoi__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  text-align: center;
}
.pourquoi__title {
  font-family: Labil, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--base);
  margin: 0;
}
.pourquoi__title-accent {
  color: transparent;
  -webkit-text-stroke: 2px rgba(23, 20, 18, 0.18);
}
.pourquoi__title-hl {
  background: linear-gradient(transparent 58%, var(--sloneczko, #ffea29) 58%, var(--sloneczko, #ffea29) 90%, transparent 90%);
}

/* Big cartoon "4" */
.pourquoi__big-number {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 1rem;
}
.pourquoi__big-num {
  font-family: Labil, Arial, sans-serif;
  font-weight: 900;
  font-size: 2.5em;
  line-height: 0.85;
  color: var(--sloneczko, #ffea29);
  -webkit-text-stroke: 3px var(--base, #171412);
  text-shadow: 6px 6px 0 var(--base, #171412);
  display: inline-block;
  transform: rotate(8deg);
  margin-right: 0em;
}
.pourquoi__big-label {
  font-family: Labil, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.0;
  color: var(--base, #171412);
  letter-spacing: -0.03em;
  margin: 0;
  text-transform: uppercase;
}
.pourquoi__big-accent {
  font-family: Alpina, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.4em;
  color: var(--atrament, #3905c8);
  text-transform: none;
}

.pourquoi__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--base);
  background: var(--sloneczko);
  border: 2.5px solid var(--base);
  border-radius: 0.5rem;
  padding: 0.35em 0.9em;
  transform: rotate(-2.5deg);
  box-shadow: 4px 4px 0 var(--atrament);
}
/* --- Bento Grid (desktop) --- */
.pourquoi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  max-width: 1380px;
  margin: 0 auto;
}

/* --- Card base --- */
.pourquoi__card {
  border: 2.5px solid var(--base);
  border-radius: 1.25rem;
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

/* Card variants — backgrounds + per-card colored shadows */
.pourquoi__card--experts {
  grid-row: span 2;
  background: #ffe0ec;
  justify-content: space-between;
  box-shadow: 5px 5px 0 #c94d8e;
  gap: 0.5rem;
  position: relative;
}
.pourquoi__card--experts .pourquoi__card-img--centered {
  width: 100%;
  max-width: 360px;
  max-height: 300px;
  margin: 0.5rem auto;
  display: block;
  object-fit: contain;
  transform: none;
  transform-origin: center;
  border-radius: 0.75rem;
  flex: 1;
  min-height: 0;
}
.pourquoi__card--rapide {
  background: #ece4ff;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--atrament);
  position: relative;
}
.pourquoi__card--rapide .pourquoi__card-top-row {
  min-height: 200px;
}
.pourquoi__card--rapide .pourquoi__card-img-side {
  width: auto;
  max-width: 90%;
  max-height: 200px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  border-radius: 0.75rem;
}
.pourquoi__card--delais .pourquoi__card-img-side {
  width: auto;
  max-width: 70%;
  max-height: 150px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  border-radius: 0.75rem;
}
.pourquoi__card--delais {
  background: #f5f0e5;
  box-shadow: 5px 5px 0 var(--pomarancza);
  position: relative;
}
.pourquoi__card--qualite {
  grid-column: span 2;
  background: rgba(0, 194, 107, 0.08);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 5px 5px 0 var(--trawka);
}

/* Hover — illustrations scale up */
.pourquoi__card:hover .pourquoi__card-img,
.pourquoi__card:hover .pourquoi__card-img-side,
.pourquoi__card:hover .pourquoi__card-img-qualite {
  transform: scale(1.08);
}

/* Icon badges */
.pourquoi__card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border: 2.5px solid var(--base);
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 3px 3px 0 var(--base);
  transform: rotate(-3deg);
}
.pourquoi__card-icon svg {
  width: 58%;
  height: 58%;
}
.pourquoi__card-icon--violet { background: var(--atrament); }
.pourquoi__card-icon--rose { background: #fc6b44; }
.pourquoi__card-icon--bleu { background: #c94d8e; }
.pourquoi__card-icon--vert { background: var(--trawka); }

/* Card body */
.pourquoi__card-body { display: flex; flex-direction: column; gap: 0.4rem; }
.pourquoi__card-heading {
  font-size: clamp(1.1rem, 1.8vw, 1.65rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--base);
  margin: 0;
}
.pourquoi__card-text {
  font-family: Labil, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(23, 20, 18, 0.6);
  margin: 0;
}

/* Color accent spans */
.text-atrament { color: var(--atrament); }
.text-rose { color: var(--pomarancza); }
.text-pink { color: #FFA7D7; }
.text-trawka { color: var(--trawka); }

/* Card images */
.pourquoi__card-img {
  width: 55%;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  max-height: 180px;
  transition: transform 0.4s var(--ease);
}
.pourquoi__card-top-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: 0.25rem 0;
}
.pourquoi__card-top-row .pourquoi__card-icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.pourquoi__card-img-side {
  width: auto;
  max-width: 70%;
  object-fit: contain;
  max-height: 140px;
  margin: 0 auto;
  display: block;
  transition: transform 0.4s var(--ease);
}
.pourquoi__card-qualite-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.pourquoi__card-img-qualite {
  width: 17rem;
  object-fit: contain;
  max-height: 200px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

/* Mobile stack (hidden on desktop) */
.pourquoi__mobile-stack { display: none; }

/* --- Industry Tags --- */
.pourquoi__industries {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.pourquoi__industries-title {
  font-family: Labil, Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(23, 20, 18, 0.5);
  text-align: center;
  margin: 0;
}
.pourquoi__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
.pourquoi__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  padding: 0 1.1rem;
  font-family: Labil, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--base);
  background: var(--bg);
  border: 2.5px solid var(--base);
  border-radius: 50px;
  cursor: default;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.pourquoi__tag:hover {
  background: var(--base);
  color: var(--bg);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--atrament);
}

/* --- Global Scroll Entrance Animations --- */

/* Base hidden state for all animated elements */
[data-inview] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(.22,.61,.36,1),
              transform 0.6s cubic-bezier(.22,.61,.36,1);
}
[data-inview].--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Partners — slide up */
.partners__inner[data-inview] {
  transform: translateY(40px);
  transition-duration: 0.7s;
}
.partners__inner[data-inview].--visible {
  transform: translateY(0);
}

/* Pricing header — slide up with slight rotation */
.pricing__nb-header[data-inview] {
  transform: translateY(36px) rotate(0.5deg);
  transition-duration: 0.65s;
}
.pricing__nb-header[data-inview].--visible {
  transform: translateY(0) rotate(0deg);
}

/* Pricing card — pop in with scale */
.pricing__nb-card[data-inview] {
  transform: translateY(40px) scale(0.96) rotate(-1.5deg);
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1),
              transform 0.7s cubic-bezier(.34,1.56,.64,1);
}
.pricing__nb-card[data-inview].--visible {
  transform: translateY(0) scale(1) rotate(-1.5deg);
}

/* Contact card — slide from left */
.contact-card[data-inview] {
  transform: translateX(-40px) translateY(20px);
  transition: opacity 0.65s cubic-bezier(.22,.61,.36,1),
              transform 0.65s cubic-bezier(.22,.61,.36,1);
}
.contact-card[data-inview].--visible {
  transform: translateX(0) translateY(0);
}

/* Contact left — slide from right */
.contact-left[data-inview] {
  transform: translateX(40px) translateY(20px);
  transition: opacity 0.65s cubic-bezier(.22,.61,.36,1),
              transform 0.65s cubic-bezier(.22,.61,.36,1);
  transition-delay: 0.15s;
}
.contact-left[data-inview].--visible {
  transform: translateX(0) translateY(0);
}

/* Featured intro */
.featured-intro[data-inview] {
  transform: translateY(36px);
  transition-duration: 0.6s;
}
.featured-intro[data-inview].--visible {
  transform: translateY(0);
}

/* Project mosaic cards — staggered slide up + rotation */
.projects_mosaique_item[data-inview] {
  transform: translateY(50px) rotate(1.5deg);
  transition: opacity 0.6s cubic-bezier(.22,.61,.36,1),
              transform 0.6s cubic-bezier(.34,1.56,.64,1);
}
.projects_mosaique_item[data-inview].--visible {
  transform: translateY(0) rotate(0deg);
}
.projects_mosaique_item[data-inview]:nth-child(2) { transition-delay: 0.08s; }
.projects_mosaique_item[data-inview]:nth-child(3) { transition-delay: 0.16s; }
.projects_mosaique_item[data-inview]:nth-child(4) { transition-delay: 0.24s; }
.projects_mosaique_item[data-inview]:nth-child(5) { transition-delay: 0.32s; }
.projects_mosaique_item[data-inview]:nth-child(6) { transition-delay: 0.40s; }

/* Pourquoi section */
.pourquoi__header[data-inview] {
  transform: translateY(36px);
  transition-duration: 0.65s;
}
.pourquoi__header[data-inview].--visible {
  transform: translateY(0);
}

.pourquoi__card[data-inview],
.pourquoi__mcard[data-inview] {
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.55s cubic-bezier(.22,.61,.36,1),
              transform 0.55s cubic-bezier(.34,1.56,.64,1);
}
.pourquoi__card[data-inview].--visible,
.pourquoi__mcard[data-inview].--visible {
  transform: translateY(0) scale(1);
}

.pourquoi__industries[data-inview] {
  transform: translateY(28px);
}
.pourquoi__industries[data-inview].--visible {
  transform: translateY(0);
}

/* Processus section */
.processus__header[data-inview] {
  transform: translateY(36px);
  transition-duration: 0.65s;
}
.processus__header[data-inview].--visible {
  transform: translateY(0);
}

.processus__card[data-inview] {
  transform: translateY(50px);
  transition: opacity 0.6s cubic-bezier(.22,.61,.36,1),
              transform 0.6s cubic-bezier(.22,.61,.36,1);
}
.processus__card[data-inview].--visible {
  transform: translateY(0);
}

.processus__mstep[data-inview] {
  transform: translateY(40px);
  transition: opacity 0.55s cubic-bezier(.22,.61,.36,1),
              transform 0.55s cubic-bezier(.22,.61,.36,1);
}
.processus__mstep[data-inview].--visible {
  transform: translateY(0);
}

/* Staggered delays for grid cards */
.pourquoi__card--rapide,
.processus__card:nth-child(2),
.pourquoi__mcard:nth-child(2),
.processus__mstep:nth-child(2) { transition-delay: 0.1s; }
.pourquoi__card--delais,
.processus__card:nth-child(3),
.pourquoi__mcard:nth-child(3),
.processus__mstep:nth-child(3) { transition-delay: 0.2s; }
.pourquoi__card--qualite,
.processus__card:nth-child(4),
.pourquoi__mcard:nth-child(4),
.processus__mstep:nth-child(4) { transition-delay: 0.3s; }

/* --- Project Pages — Entrance Animations --- */

/* Shared hidden state for project page data-inview elements */
.projet-details [data-inview] {
  opacity: 0;
}
.projet-details [data-inview].--visible {
  opacity: 1;
}

/* Hero — smooth lift */
.projet-hero[data-inview] {
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(.22,.61,.36,1),
              transform 0.8s cubic-bezier(.22,.61,.36,1);
}
.projet-hero[data-inview].--visible {
  transform: translateY(0);
}

/* Preview card — lift + slight scale */
.projet-preview[data-inview] {
  transform: translateY(50px) scale(0.97);
  transition: opacity 0.8s cubic-bezier(.22,.61,.36,1),
              transform 0.8s cubic-bezier(.34,1.56,.64,1);
}
.projet-preview[data-inview].--visible {
  transform: translateY(0) scale(1);
}

/* Content sections — staggered lift per section */
.projet-section[data-inview] {
  transform: translateY(44px);
  transition: opacity 0.65s cubic-bezier(.22,.61,.36,1),
              transform 0.65s cubic-bezier(.22,.61,.36,1);
}
.projet-section[data-inview].--visible {
  transform: translateY(0);
}

/* Section label badges — pop-in (GSAP-driven, CSS fallback) */
.projet-section__label {
  opacity: 0;
  transform: scale(0.6) rotate(-6deg);
  transition: opacity 0.45s cubic-bezier(.22,.61,.36,1),
              transform 0.55s cubic-bezier(.34,1.56,.64,1);
}
.projet-section[data-inview].--visible .projet-section__label {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: 0.25s;
}

/* Stats — bouncy pop-in with stagger */
.projet-stat[data-inview] {
  transform: translateY(30px) scale(0.92);
  transition: opacity 0.5s cubic-bezier(.22,.61,.36,1),
              transform 0.55s cubic-bezier(.34,1.56,.64,1);
}
.projet-stat[data-inview].--visible {
  transform: translateY(0) scale(1);
}
.projet-stat[data-inview]:nth-child(2) { transition-delay: 0.12s; }
.projet-stat[data-inview]:nth-child(3) { transition-delay: 0.24s; }

/* Quote initials — elastic pop (GSAP-driven, CSS fallback) */
.projet-quote__initials {
  opacity: 0;
  transform: scale(0.4) rotate(-12deg);
  transition: opacity 0.5s ease,
              transform 0.65s cubic-bezier(.34,1.56,.64,1);
}
.projet-section[data-inview].--visible .projet-quote__initials {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: 0.35s;
}

/* Quote text — fade slide */
.projet-quote__right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s cubic-bezier(.22,.61,.36,1),
              transform 0.6s cubic-bezier(.22,.61,.36,1);
}
.projet-section[data-inview].--visible .projet-quote__right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

/* List items — staggered slide-in (GSAP-driven) */
.projet-list li {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.4s cubic-bezier(.22,.61,.36,1),
              transform 0.4s cubic-bezier(.22,.61,.36,1);
}

/* CTA — lift + scale */
.projet-cta[data-inview] {
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1),
              transform 0.7s cubic-bezier(.34,1.56,.64,1);
}
.projet-cta[data-inview].--visible {
  transform: translateY(0) scale(1);
}

/* CTA badge — pop-in spin (GSAP-driven, CSS fallback) */
.projet-cta__badge {
  opacity: 0;
  transform: rotate(8deg) scale(0);
  transition: opacity 0.5s ease,
              transform 0.6s cubic-bezier(.34,1.56,.64,1);
}
.projet-cta[data-inview].--visible .projet-cta__badge {
  opacity: 1;
  transform: rotate(8deg) scale(1);
  transition-delay: 0.15s;
}

/* --- Pourquoi — Mobile --- */
@media screen and (max-width: 767px) {
  .pourquoi { padding: 4.5rem 0 2.5rem; }
  .pourquoi__header { margin-bottom: 0.5rem; }
  .pourquoi__grid { display: none; }
  .pourquoi__mobile-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .pourquoi__mcard {
    border: 2.5px solid var(--base);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .pourquoi__mcard:nth-child(1) { background: #ece4ff; box-shadow: 4px 4px 0 var(--atrament); }
  .pourquoi__mcard:nth-child(2) { background: #ffe0ec; box-shadow: 4px 4px 0 #c94d8e; }
  .pourquoi__mcard:nth-child(3) { background: #f5f0e5; box-shadow: 4px 4px 0 var(--pomarancza); }
  .pourquoi__mcard:nth-child(4) { background: rgba(0,194,107,0.08); box-shadow: 4px 4px 0 var(--trawka); }

  .pourquoi__card-heading { font-size: 1.25rem; }
  .pourquoi__card-text { font-size: 0.85rem; color: rgba(23, 20, 18, 0.6); }
  .pourquoi__industries { margin-top: 2rem; }
}


/* ============================================================
   SECTION — Processus Étape par Étape  (Redesign)
   ============================================================ */
.processus {
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
}

/* --- Header --- */
.processus__header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 5rem;
  text-align: center;
}
.processus__title {
  font-family: Labil, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--base, #171412);
  margin: 0;
}
.processus__title-accent {
  color: transparent;
  -webkit-text-stroke: 2px rgba(23, 20, 18, 0.2);
}
.processus__title-hl {
  background: linear-gradient(transparent 58%, var(--sloneczko, #ffea29) 58%, var(--sloneczko, #ffea29) 90%, transparent 90%);
}
.processus__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--base, #171412);
  background: var(--sloneczko, #ffea29);
  border: 2.5px solid var(--base, #171412);
  border-radius: 0.5rem;
  padding: 0.35em 0.9em;
  transform: rotate(-2.5deg);
  box-shadow: 4px 4px 0 rgba(255, 234, 41, 0.35);
}

/* --- Desktop Timeline --- */
.processus__timeline {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Card --- */
.processus__card {
  position: relative;
  z-index: 1;
}
.processus__card-num {
  position: absolute;
  top: -1.2rem;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
  opacity: 0.05;
  color: var(--base, #171412);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.processus__card--01 .processus__card-num,
.processus__card--03 .processus__card-num { left: -0.5rem; }
.processus__card--02 .processus__card-num,
.processus__card--04 .processus__card-num { right: -0.5rem; text-align: right; }

.processus__card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  cursor: pointer;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg, #fbf9ef);
  border: 2.5px solid var(--base, #171412);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.processus__card-inner--reverse {
  direction: rtl;
}
.processus__card-inner--reverse > * {
  direction: ltr;
}

/* Per-step accent shadows & rotations */
.processus__card--01 .processus__card-inner {
  box-shadow: 6px 6px 0 var(--atrament, #3905c8);
  transform: rotate(-0.5deg);
}
.processus__card--02 .processus__card-inner {
  box-shadow: -6px 6px 0 var(--sloneczko, #ffea29);
  transform: rotate(0.5deg);
}
.processus__card--03 .processus__card-inner {
  box-shadow: 6px 6px 0 var(--trawka, #00c26b);
  transform: rotate(-0.3deg);
}
.processus__card--04 .processus__card-inner {
  box-shadow: -6px 6px 0 var(--pomarancza, #fc6b44);
  transform: rotate(0.4deg);
}

/* Hover — Lottie zoom */
.processus__card:hover .processus__lottie {
  transform: scale(1.08);
}

/* --- Lottie frame --- */
.processus__card-lottie {
  display: flex;
  align-items: stretch;
  background: var(--atrament, #3905c8);
  overflow: hidden;
  transform: translateX(-50px);
}
.processus__lottie {
  width: 100%;
  min-height: 280px;
  background: transparent;
  overflow: hidden;
  transition: transform 0.45s var(--ease);
}

/* --- Card content --- */
.processus__card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.5rem;
}
.processus__step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin: 0;
  color: #fff;
  border: 2.5px solid var(--base, #171412);
  border-radius: 0.5rem;
  padding: 0.35em 1em;
  width: fit-content;
}
.processus__card--01 .processus__step-label { background: var(--atrament, #3905c8); box-shadow: 5px 5px 0 rgba(57, 5, 200, 0.4); transform: rotate(-0.5deg); }
.processus__card--02 .processus__step-label { background: #b8a300; box-shadow: -5px 5px 0 rgba(184, 163, 0, 0.4); transform: rotate(0.5deg); }
.processus__card--03 .processus__step-label { background: var(--trawka, #00c26b); box-shadow: 5px 5px 0 rgba(0, 194, 107, 0.4); transform: rotate(-0.3deg); }
.processus__card--04 .processus__step-label { background: var(--pomarancza, #fc6b44); box-shadow: -5px 5px 0 rgba(252, 107, 68, 0.4); transform: rotate(0.4deg); }

.processus__step-title {
  font-family: Labil, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--base, #171412);
  margin: 0;
}
.processus__step-text {
  font-family: Labil, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.75;
  color: rgba(23, 20, 18, 0.65);
  margin: 0;
}


/* --- Mobile: hidden on desktop --- */
.processus__mobile-steps { display: none; }

/* --- Tablet --- */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .processus { padding: 6rem 0 4rem; }
  .processus__header { margin-bottom: 3.5rem; }
  .processus__card-inner,
  .processus__card-inner--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .processus__lottie { min-height: 220px; }
  .processus__card-content { padding: 2rem; }
  .processus__timeline::before { display: none; }
  .processus__card-dot { display: none; }
}

/* --- Mobile --- */
@media screen and (max-width: 767px) {
  .processus { padding: 5rem 0 3.5rem; }
  .processus__header { margin-bottom: 2.5rem; }
  .processus__timeline { display: none; }
  .processus__mobile-steps {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding: 0 0.25rem;
  }
  .processus__mstep {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--bg, #fbf9ef);
    border: 2.5px solid var(--base, #171412);
    border-radius: 1rem;
    padding: 1.5rem;
    overflow: hidden;
  }
  .processus__mstep-num {
    position: absolute;
    top: -0.3rem;
    right: 0.75rem;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    opacity: 0.05;
    color: var(--base, #171412);
    pointer-events: none;
  }
  .processus__mstep--01 { box-shadow: 5px 5px 0 var(--atrament, #3905c8); }
  .processus__mstep--02 { box-shadow: 5px 5px 0 var(--sloneczko, #ffea29); }
  .processus__mstep--03 { box-shadow: 5px 5px 0 var(--trawka, #00c26b); }
  .processus__mstep--04 { box-shadow: 5px 5px 0 var(--pomarancza, #fc6b44); }
  .processus__lottie {
    min-height: 170px;
    border-radius: 0.75rem;
    border: 2px solid var(--base, #171412);
    background: var(--atrament, #3905c8);
  }
  .processus__step-label { font-size: 0.9rem; background: var(--atrament, #3905c8); box-shadow: 5px 5px 0 rgba(57, 5, 200, 0.4); transform: rotate(-0.5deg); }
  .processus__mstep--02 .processus__step-label { background: #b8a300; box-shadow: -5px 5px 0 rgba(184, 163, 0, 0.4); transform: rotate(0.5deg); }
  .processus__mstep--03 .processus__step-label { background: var(--trawka, #00c26b); box-shadow: 5px 5px 0 rgba(0, 194, 107, 0.4); transform: rotate(-0.3deg); }
  .processus__mstep--04 .processus__step-label { background: var(--pomarancza, #fc6b44); box-shadow: -5px 5px 0 rgba(252, 107, 68, 0.4); transform: rotate(0.4deg); }
  .processus__step-title { font-size: 1.5rem; }
  .processus__step-text { font-size: 1.1rem; color: rgba(23, 20, 18, 0.65); }
}

/* --- Footer right-side artwork scale down --- */
.footer__rive-wrap,
.footer__rive-wrap-3 {
  transform: scale(0.82);
  transform-origin: right bottom;
}

.footer__rive,
.footer__rive-3 {
  max-width: 82%;
  margin-left: auto;
}

.footer__mobile-img {
  transform: scale(0.82);
  transform-origin: right center;
}

/* ============================================================
   LEGAL PAGES — CGU, CGV, Mentions légales, Confidentialité
   ============================================================ */
.legal-page {
  background: #f5f2ea;
  min-height: 100vh;
}

.legal-hero {
  background: var(--base, #171412);
  padding: 10rem 2rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(57,5,200,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.legal-hero__tag {
  display: inline-block;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  margin-bottom: 1.5rem;
}

.legal-hero__title {
  font-family: Labil, Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-feature-settings: 'ss02';
}

.legal-hero__subtitle {
  font-family: Labil, Arial, sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  font-weight: 500;
}

.legal-content {
  max-width: 800px;
  margin: 0;
  margin-left: 2rem;
  padding: 1rem 2rem 1.75rem;
}

.legal-content .legal-hero__title {
  color: #3905c8 !important;
}

.legal-content .legal-hero__subtitle {
  color: rgba(23,20,18,0.6) !important;
}

.legal-section {
  margin-bottom: 3.5rem;
}

.legal-section__title {
  font-family: Labil, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--base, #171412);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(57,5,200,0.1);
}

.legal-section__text {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(23,20,18,0.75);
  margin: 0 0 1rem;
}

.legal-section__text strong {
  color: var(--base, #171412);
  font-weight: 700;
}

.legal-section__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
}

.legal-section__list li {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(23,20,18,0.75);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.legal-section__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3905c8;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #3905c8;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
  margin-bottom: 3rem;
}

.legal-back:hover {
  opacity: 0.6;
}

.legal-back svg {
  width: 16px;
  height: 16px;
}

.legal-footer {
  background: var(--base, #171412);
  padding: 1rem 2rem;
  text-align: center;
}

.legal-footer__text {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.legal-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.legal-footer__link {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.legal-footer__link:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .legal-hero {
    padding: 8rem 1.5rem 1rem;
  }

  .legal-content {
    padding: 0.75rem 1.5rem 1.5rem;
  }

  .legal-section__title {
    font-size: 1.25rem;
  }
}

/* --- Legal Pages — Entrance Animations --- */
.legal-content .legal-hero__title,
.legal-content .legal-hero__subtitle,
.legal-back,
.legal-section,
.legal-section__title,
.legal-section__text,
.legal-section__list li {
  will-change: opacity, transform;
}

/* --- Custom Accueil button : forme OCTOGONALE (8 côtés arrondis) --- */
.footer__legal-btn--accueil {
  transform: rotate(-1.5deg);
  background: linear-gradient(135deg, #ff9a3c 0%, #ff6b35 100%);
  color: #b5431f;
  font-weight: 800;
  padding: 1.2rem 2.4rem;
  border-radius: 26px 9px 22px 14px / 12px 24px 10px 28px;
  box-shadow: 4px 5px 0 #b5431f;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
}
.footer__legal-btn--accueil:hover {
  transform: rotate(0deg) translateY(-4px) scale(1.08);
  box-shadow: 6px 8px 0 #b5431f;
}

/* --- Left align legal content --- */
.legal-section {
  text-align: left !important;
}

.legal-section__title {
  text-align: left !important;
}

.legal-section__text {
  text-align: left !important;
}

.legal-section__list {
  text-align: left !important;
}

.legal-back {
  text-align: left !important;
  justify-content: flex-start !important;
}

/* ============================================================
   PROJECT PAGES
   ============================================================ */

/* --- Hero --- */
.projet-hero {
  padding: 8rem 0 5rem;
  color: #fff;
  overflow: hidden;
}

.projet-hero__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.projet-hero__text {
  flex: 1;
  min-width: 0;
}

.projet-back {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-family: Labil, Arial, sans-serif;
  transition: color 0.2s;
}

.projet-back:hover {
  color: #fff;
}

.projet-hero__title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 1rem;
  font-family: Labil, Arial, sans-serif;
  letter-spacing: -0.03em;
}

.projet-hero__subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  margin: 0 0 2rem;
  font-family: Labil, Arial, sans-serif;
}

.projet-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.projet-tag {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-family: Labil, Arial, sans-serif;
}

.projet-hero__visual {
  flex: 0 0 45%;
  max-width: 45%;
}

.projet-hero__img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* ============================================================
   PROJET DETAILS — Redesigned Néobrutaliste Crème Agency
   Premium editorial layout with numbered sections, layered cards,
   accent decorations, elevated stats & testimonial.
   ============================================================ */

/* --- Container --- */
.projet-details {
  background: #f5f2ea;
  padding: 4rem 0 2rem;
  color: #171412;
  position: relative;
  overflow: hidden;
  counter-reset: projet-step;
}

/* Subtle decorative background word */
.projet-details::before {
  content: 'Projet';
  position: absolute;
  top: 2rem;
  right: -2rem;
  font-family: Alpina, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 16rem);
  line-height: 0.85;
  color: rgba(57, 5, 200, 0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

/* --- Section row: single column, label overlaps card --- */
.projet-section {
  display: block;
  padding: 0 0 2.5rem;
  position: relative;
  z-index: 1;
  counter-increment: projet-step;
}

.projet-section:last-of-type {
  padding-bottom: 0;
}

/* Vertical connector line between sections — disabled */

/* --- Label: positioned as badge at top-left of card --- */
.projet-section__label {
  position: absolute;
  top: -12px;
  left: 20px;
  z-index: 5;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--base, #171412);
  background: var(--sloneczko, #ffea29);
  padding: 0.3rem 0.85rem;
  border: 2px solid var(--base, #171412);
  border-radius: 5px;
  box-shadow: 2px 2px 0 var(--base, #171412);
  white-space: nowrap;
}

/* Hide pseudo-elements — no more numbers or rotated badges */
.projet-section__label::before,
.projet-section__label::after {
  display: none;
}

/* --- Content card: elevated white card --- */
.projet-section__content {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 2.5px solid var(--base, #171412);
  border-radius: 1.15rem;
  box-shadow: 6px 6px 0 var(--base, #171412);
  padding: 2.5rem 2.75rem;
  position: relative;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
}

.projet-section__content:hover {
  transform: none;
}

/* Alternate shadow accent colors per section */
.projet-section:nth-of-type(1) .projet-section__content {
  box-shadow: 6px 6px 0 var(--atrament, #3905c8);
}
.projet-section:nth-of-type(1) .projet-section__content:hover {
  box-shadow: 6px 6px 0 var(--atrament, #3905c8);
}
.projet-section:nth-of-type(2) .projet-section__content {
  box-shadow: 6px 6px 0 var(--trawka, #00c26b);
}
.projet-section:nth-of-type(2) .projet-section__content:hover {
  box-shadow: 6px 6px 0 var(--trawka, #00c26b);
}
.projet-section:nth-of-type(3) .projet-section__content {
  box-shadow: 6px 6px 0 var(--pomarancza, #fc6b44);
}
.projet-section:nth-of-type(3) .projet-section__content:hover {
  box-shadow: 6px 6px 0 var(--pomarancza, #fc6b44);
}
.projet-section:nth-of-type(4) .projet-section__content {
  box-shadow: 6px 6px 0 #e84393;
}
.projet-section:nth-of-type(4) .projet-section__content:hover {
  box-shadow: 6px 6px 0 #e84393;
}

/* Step numbers removed — label badges only */

/* --- Section title --- */
.projet-section__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  font-family: Labil, Arial, sans-serif;
  letter-spacing: -0.03em;
  color: var(--base, #171412);
  text-transform: none;
}

/* Yellow highlight on first word of title */
.projet-section__title-hl {
  background: linear-gradient(transparent 58%, var(--sloneczko, #ffea29) 58%, var(--sloneczko, #ffea29) 90%, transparent 90%);
}

/* --- Paragraph text --- */
.projet-section__content p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--base, #171412);
  opacity: 0.68;
  margin: 0 0 1.25rem;
  font-family: Labil, Arial, sans-serif;
}

.projet-section__content p:last-child {
  margin-bottom: 0;
}

/* --- Feature list --- */
.projet-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.projet-list li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--base, #171412);
  opacity: 0.8;
  font-family: Labil, Arial, sans-serif;
  font-weight: 500;
}

.projet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 18px;
  height: 18px;
  background: var(--atrament, #3905c8);
  border-radius: 50%;
  border: 2px solid var(--base, #171412);
}

.projet-list li::after {
  content: '';
  position: absolute;
  left: 4.5px;
  top: calc(0.35rem + 5px);
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* --- Stats: vibrant cards with layered shadows --- */
.projet-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.25rem;
}

.projet-stat {
  text-align: center;
  background: var(--atrament, #3905c8);
  color: #fff;
  border: 2.5px solid var(--base, #171412);
  border-radius: 1rem;
  box-shadow: 5px 5px 0 var(--base, #171412);
  padding: 1.75rem 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease;
}

.projet-stat:hover {
  transform: none;
  box-shadow: 5px 5px 0 var(--base, #171412);
}

/* Decorative large number watermark */
.projet-stat::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -10px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.projet-stat__number {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  font-family: Labil, Arial, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--sloneczko, #ffea29);
  position: relative;
  z-index: 1;
}

.projet-stat__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.65;
  font-family: Labil, Arial, sans-serif;
  position: relative;
  z-index: 1;
}

/* Alternate stat colors for variety */
.projet-stat:nth-child(2) {
  background: var(--sloneczko, #ffea29);
}

.projet-stat:nth-child(3) {
  background: var(--trawka, #00c26b);
}

.projet-stat:nth-child(2) .projet-stat__number {
  color: var(--base, #171412);
}

.projet-stat:nth-child(2) .projet-stat__label {
  color: var(--base, #171412);
}

.projet-stat:nth-child(3) .projet-stat__number {
  color: #fff;
}

/* --- Quote / Testimonial: horizontal flex layout --- */
.projet-quote {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

.projet-quote__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-width: 100px;
  text-align: center;
}

.projet-quote__initials {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--atrament, #3905c8);
  color: #fff;
  font-family: Labil, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--base, #171412);
  box-shadow: 3px 3px 0 var(--base, #171412);
}

.projet-quote__name {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--base, #171412);
  display: block;
}

.projet-quote__role {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--base, #171412);
  opacity: 0.45;
  display: block;
}

.projet-quote__right {
  flex: 1;
  min-width: 0;
  padding-top: 0.25rem;
}

.projet-quote__text {
  font-size: 1.02rem;
  line-height: 1.75;
  font-family: Labil, Arial, sans-serif;
  font-weight: 500;
  color: var(--base, #171412);
  opacity: 0.68;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .projet-quote {
    flex-direction: column;
    gap: 1.25rem;
  }

  .projet-quote__left {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
    min-width: auto;
  }

  .projet-quote__initials {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }
}

/* --- Site Preview — Browser-style card --- */
.projet-preview {
  padding: 0 0 2.5rem;
  position: relative;
  z-index: 1;
}

.projet-preview__card {
  background: #fff;
  border: 2.5px solid var(--base, #171412);
  border-radius: 1.15rem;
  box-shadow: 6px 6px 0 var(--base, #171412);
  overflow: hidden;
  position: relative;
}

/* Browser chrome bar */
.projet-preview__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--base, #171412);
  border-bottom: 2.5px solid var(--base, #171412);
}

.projet-preview__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
}
.projet-preview__dot--red { background: var(--pomarancza, #fc6b44); }
.projet-preview__dot--yellow { background: var(--sloneczko, #ffea29); }
.projet-preview__dot--green { background: var(--trawka, #00c26b); }

.projet-preview__url {
  flex: 1;
  margin-left: 0.75rem;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 0.35rem 1rem;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Image area */
.projet-preview__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #141414;
}

/* Bottom footer with link */
.projet-preview__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-top: 2.5px solid var(--base, #171412);
  background: #fff;
}

.projet-preview__site-name {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--base, #171412);
  letter-spacing: -0.01em;
}

.projet-preview__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: var(--atrament, #3905c8);
  padding: 0.6rem 1.4rem;
  border: 2px solid var(--base, #171412);
  border-radius: 8px;
  box-shadow: 3px 3px 0 var(--base, #171412);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.projet-preview__link:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--base, #171412);
}

.projet-preview__link svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.projet-preview__link:hover svg {
  transform: translateX(3px);
}

/* Placeholder when no image */
.projet-preview__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  background: #f0ede5;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--base, #171412);
  opacity: 0.35;
}

@media screen and (max-width: 767px) {
  .projet-preview__img {
    max-height: 240px;
  }

  .projet-preview__footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .projet-preview__link {
    width: 100%;
    justify-content: center;
  }
}

/* --- CTA — Premium Neobrutalist Card --- */
.projet-cta {
  text-align: left;
  padding: 2rem 0 1rem;
  margin-top: 0;
  position: relative;
  max-width: 680px;
  z-index: 1;
}

.projet-cta__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--sloneczko, #ffea29);
  font-size: 1.8rem;
  line-height: 1;
  border: 2.5px solid var(--base, #171412);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--base, #171412);
  transform: rotate(8deg);
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 3;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}

.projet-cta:hover .projet-cta__badge {
  transform: rotate(-4deg) scale(1.1);
}

.projet-cta__card {
  background: #fff;
  border: 2.5px solid var(--base, #171412);
  border-radius: 1.25rem;
  box-shadow: 7px 7px 0 var(--sloneczko, #ffea29);
  overflow: visible;
  position: relative;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
}

.projet-cta__card:hover {
  transform: translate(-2px, -3px);
  box-shadow: 9px 10px 0 var(--sloneczko, #ffea29);
}

/* Accent stripe on top of CTA card — hidden */
.projet-cta__accent {
  display: none;
}

.projet-cta__body {
  padding: 2.5rem 3rem 3rem;
}

.projet-cta__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin: 0 0 0.75rem;
  font-family: Labil, Arial, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--base, #171412);
  text-transform: uppercase;
}

.projet-cta__desc {
  font-size: 1.05rem;
  opacity: 0.5;
  margin: 0 0 2rem;
  font-family: Labil, Arial, sans-serif;
  line-height: 1.65;
  color: var(--base, #171412);
}

.projet-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--atrament, #3905c8);
  color: #fff;
  padding: 1.15rem 2.25rem;
  border-radius: 0.65rem;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2.5px solid var(--base, #171412);
  box-shadow: 5px 5px 0 var(--base, #171412);
  transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.25s ease;
  position: relative;
}

.projet-cta__btn svg {
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
  flex-shrink: 0;
}

.projet-cta__btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--base, #171412);
  color: #fff;
  gap: 1rem;
}

.projet-cta__btn:hover svg {
  transform: translateX(5px);
}

/* --- Project pages responsive --- */
@media screen and (max-width: 991px) {
  .projet-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .projet-details {
    padding: 5rem 0 3.5rem;
  }

  .projet-details::before {
    display: none;
  }

  .projet-hero {
    padding: 6rem 0 3rem;
  }

  .projet-hero__inner {
    flex-direction: column;
    gap: 2rem;
  }

  .projet-hero__visual {
    flex: none;
    max-width: 100%;
  }

  .projet-section {
    padding-bottom: 2rem;
  }

  .projet-section__label {
    font-size: 0.6rem;
    top: -10px;
    left: 14px;
  }

  .projet-section__content {
    padding: 1.75rem 1.5rem;
    box-shadow: 4px 4px 0 var(--base, #171412);
  }

  .projet-section__content:hover {
    transform: none;
    box-shadow: 4px 4px 0 var(--base, #171412);
  }

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

  .projet-stat {
    padding: 1.4rem 1rem;
  }

  .projet-stat:hover {
    transform: none;
  }

  .projet-list {
    grid-template-columns: 1fr;
  }

  .projet-quote__initials {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .projet-cta {
    max-width: 100%;
    padding-top: 4rem;
  }

  .projet-cta__badge {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    top: -18px;
    right: 8px;
  }

  .projet-cta__body {
    padding: 2rem 1.5rem 2.25rem;
  }

  .projet-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   SECTION PRICING — NÉOBRUTALISTE
   ============================================================ */

.pricing {
  padding: 4rem 0 8rem;
  background: #f5f2ea;
  scroll-margin-top: 30px;
}

/* En-tête centré */
.pricing__nb-header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.pricing__nb-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3905c8;
  background: rgba(57,5,200,0.08);
  border: 1.5px solid rgba(57,5,200,0.3);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  transform: rotate(-0.5deg);
}

.pricing__nb-h2 {
  font-family: Labil, Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--base, #171412);
  margin: 0;
}

.pricing__nb-h2-ghost {
  color: transparent;
  -webkit-text-stroke: 2px rgba(23, 20, 18, 0.18);
}
.pricing__nb-h2-hl {
  background: linear-gradient(transparent 58%, var(--sloneczko, #ffea29) 58%, var(--sloneczko, #ffea29) 90%, transparent 90%);
}

.pricing__nb-lead {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(23,20,18,0.45);
  margin: 0;
}
.pricing__nb-badge-lead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--atrament, #3905c8);
  border: 2.5px solid var(--base, #171412);
  border-radius: 0.5rem;
  padding: 0.35em 0.9em;
  transform: rotate(-2.5deg);
  box-shadow: 4px 4px 0 var(--base, #171412);
  margin-top: 0.75rem;
}

/* Layout 2 colonnes : carte gauche + lottie droite */
.pricing__nb-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.pricing__nb-card-wrap {
  flex: 0 0 auto;
  width: 50%;
  display: flex;
  justify-content: center;
}

.pricing__nb-lottie-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pricing__nb-lottie {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 4 / 3;
}

.pricing__nb-card {
  width: 100%;
  max-width: 520px;
  background: #fff;
  cursor: pointer;
  border: 2.5px solid #171412;
  border-radius: 1.5rem;
  padding: 3rem 3rem 2.5rem;
  box-shadow: 8px 8px 0 #3905c8;
  transform: rotate(-1.5deg);
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing__nb-card:hover {
  transform: rotate(-1.5deg);
  box-shadow: 8px 8px 0 #3905c8;
}

/* Badge "collant" en haut de la carte */
.pricing__nb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #171412;
  background: #ffea29;
  border: 1.5px solid #171412;
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  width: fit-content;
  position: absolute;
  top: -14px;
  left: 2.5rem;
  transform: rotate(1.5deg);
}

/* Bloc prix */
.pricing__nb-price-block {
  margin-top: 0.5rem;
}

.pricing__nb-price-row {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  line-height: 1;
}

.pricing__nb-euro {
  font-family: Labil, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #171412;
  margin-top: 0.25em;
}

.pricing__nb-amount {
  font-family: Labil, Arial, sans-serif;
  font-size: 7rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: #171412;
}

.pricing__nb-period-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0.6rem;
  gap: 0.25rem;
  margin-left: 0.25rem;
}

.pricing__nb-period {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #171412;
}

.pricing__nb-subprice {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.72rem;
  color: rgba(23,20,18,0.4);
}

/* Séparateur */
.pricing__nb-hr {
  border: none;
  border-top: 1.5px solid rgba(23,20,18,0.1);
  margin: 0;
}

/* Liste features */
.pricing__nb-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.pricing__nb-feat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #171412;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(23,20,18,0.08);
}

.pricing__nb-feat:last-child {
  border-bottom: none;
}

.pricing__nb-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  border: 2px solid #171412;
  color: #3905c8;
}

/* Bouton CTA néobrutaliste */
.pricing__nb-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: var(--sloneczko, #ffea29);
  color: var(--base, #171412);
  font-family: Labil, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1.15rem 2.2rem;
  border-radius: 0.75rem;
  border: 2.5px solid var(--base, #171412);
  box-shadow: 5px 5px 0 var(--base, #171412);
  transform: rotate(-1deg);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s ease;
}

.pricing__nb-cta:hover {
  transform: rotate(0deg) translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--base, #171412);
  color: var(--base, #171412);
}

.pricing__nb-cta:active {
  transform: rotate(0deg) translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--base, #171412);
}

.pricing__nb-cta svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.pricing__nb-cta:hover svg {
  transform: translateX(5px);
}

/* Garantie */
.pricing__nb-guarantee {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.72rem;
  color: rgba(23,20,18,0.35);
  text-align: center;
  margin: 0;
}

/* Tablet — pricing lottie bigger */
@media (max-width: 991px) and (min-width: 768px) {
  .pricing__nb-row {
    gap: 1rem;
  }
  .pricing__nb-card-wrap {
    flex: 0 0 auto;
    width: 44%;
  }
  .pricing__nb-lottie-wrap {
    flex: 1 1 56%;
  }
  .pricing__nb-lottie {
    width: 100%;
    max-width: none;
    min-height: 400px;
  }
  .pricing__nb-card {
    padding: 2rem 1.75rem 1.75rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .pricing {
    padding: 3rem 0 5rem;
  }

  .pricing__nb-row {
    flex-direction: column;
    gap: 2rem;
  }

  .pricing__nb-card-wrap {
    width: 100%;
  }

  .pricing__nb-lottie-wrap {
    display: none;
  }

  .pricing__nb-card {
    padding: 2.5rem 2rem 2rem;
    border-radius: 1.25rem;
    box-shadow: 6px 6px 0 #3905c8;
    transform: rotate(-0.5deg);
  }

  .pricing__nb-card:hover {
    transform: rotate(-0.5deg);
    box-shadow: 6px 6px 0 #3905c8;
  }

  .pricing__nb-h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }

  .pricing__nb-amount {
    font-size: 5.5rem;
  }

  .pricing__nb-cta {
    font-size: 0.82rem;
  }
}

/* ============================================================
   SECTION CONTACT FORM
   ============================================================ */

.contact-section {
  background: #f5f2ea;
  padding: 8rem 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* ---- Colonne gauche ---- */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: flex-start;
  padding-top: 20px;
}

.contact-title {
  font-family: Labil, Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--base, #171412);
  margin: 0;
  font-feature-settings: 'ss02';
}
.contact-title-accent {
  color: transparent;
  -webkit-text-stroke: 2px rgba(23, 20, 18, 0.18);
}
.contact-title-hl {
  background: linear-gradient(transparent 58%, var(--sloneczko, #ffea29) 58%, var(--sloneczko, #ffea29) 90%, transparent 90%);
}
.contact-badge-lead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--atrament, #3905c8);
  border: 2.5px solid var(--base, #171412);
  border-radius: 0.5rem;
  padding: 0.35em 0.9em;
  transform: rotate(-2.5deg);
  box-shadow: 4px 4px 0 var(--base, #171412);
  margin-bottom: 0.75rem;
}

.contact-desc {
  font-family: Labil, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(23, 20, 18, 0.55);
  line-height: 1.65;
  max-width: 400px;
  margin: 0;
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-trust__label {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(23, 20, 18, 0.4);
  margin: 0;
}

.contact-trust__logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.contact-trust__logos img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.contact-trust__logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ---- Colonne droite ---- */
.contact-right {
  position: relative;
}

.contact-card {
  background: #fff;
  border: 2px solid #171412;
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 8px 8px 0 #ffea29;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
  box-shadow: 8px 8px 0 #ffea29;
  transform: none;
}

.contact-card__title {
  font-family: Labil, Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: #171412;
  letter-spacing: -0.02em;
  margin: 0;
}

.contact-card__avail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #00a355;
  background: rgba(0, 194, 107, 0.1);
  border: 1px solid rgba(0, 194, 107, 0.25);
  padding: 0.5rem 0.9rem;
  border-radius: 0.5rem;
}

.contact-card__avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00c26b;
  flex-shrink: 0;
  animation: avail-blink 2s ease-in-out infinite;
}

@keyframes avail-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* ---- Formulaire ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__label {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #171412;
  letter-spacing: 0.01em;
}

.contact-form__req {
  color: #3905c8;
}

.contact-form__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-form__input-icon {
  position: absolute;
  left: 0.85rem;
  color: rgba(23, 20, 18, 0.35);
  pointer-events: none;
  z-index: 1;
}

.contact-form__flag {
  position: absolute;
  left: 0.75rem;
  font-size: 1.05rem;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.contact-form__input {
  width: 100%;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #171412;
  background: #f8f7f4;
  border: 1.5px solid rgba(23, 20, 18, 0.12);
  border-radius: 0.6rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.contact-form__input--icon {
  padding-left: 2.6rem;
}

.contact-form__input:focus {
  border-color: #3905c8;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(57, 5, 200, 0.08);
}

.contact-form__input::placeholder {
  color: rgba(23, 20, 18, 0.3);
}

.contact-form__textarea {
  width: 100%;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #171412;
  background: #f8f7f4;
  border: 1.5px solid rgba(23, 20, 18, 0.12);
  border-radius: 0.6rem;
  padding: 0.75rem 1rem;
  outline: none;
  resize: none;
  height: 95px;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.contact-form__textarea:focus {
  border-color: #3905c8;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(57, 5, 200, 0.08);
}

.contact-form__textarea::placeholder {
  color: rgba(23, 20, 18, 0.3);
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  background: var(--atrament, #3905c8);
  color: #fff;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1.15rem 2.2rem;
  border-radius: 0.75rem;
  border: 2.5px solid var(--base, #171412);
  box-shadow: 5px 5px 0 var(--base, #171412);
  cursor: pointer;
  transform: rotate(0.5deg);
  transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s ease;
  margin-top: 0.25rem;
}

.contact-form__submit:hover {
  transform: rotate(0deg) translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--base, #171412);
}

.contact-form__submit:active {
  transform: rotate(0deg) translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--base, #171412);
}

.contact-form__submit svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.contact-form__submit:hover svg {
  transform: translateX(5px);
}

/* ---- Mobile ---- */
@media (max-width: 991px) {
  .contact-grid {
    gap: 3.5rem;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 4rem 0;
  }

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

  .contact-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }

  .contact-desc {
    max-width: 100%;
  }

  .contact-form-bg {
    border-radius: 1.5rem;
    padding: 1rem;
  }

  .contact-card {
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE REFINEMENTS
   Tablet (768–991px) · Mobile (≤767px) · Small Mobile (≤479px)
   ============================================================ */

/* ------------------------------------------------------------ *
 *  TABLET  —  768 px → 991 px
 * ------------------------------------------------------------ */
@media screen and (min-width: 768px) and (max-width: 991px) {

  /* --- Header / Nav sidebar: compact --- */
  .header { padding: 1.25em; }
  .brand_bg { width: 3em; }
  .nav_link { width: 3.5em; }

  .main,
  .section.is--relative,
  body > div[style*="background-color: #1b1b1b"] {
    margin-left: 5em;
  }

  /* --- Hero --- */
  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  /* --- Partners --- */
  .partners__quote-wrap { margin-left: 0; }

  /* --- Featured Work --- */
  .featured .headline { margin-left: 0; }

  /* --- Service card illustrations: scale down --- */
  .illus-step1 { width: 180px; height: 180px; }
  .illus-step2,
  .illus-step3 { width: 220px; height: 165px; }
  .illustrations--step1 { margin-right: -60px; gap: 1rem; }

  .service-card-bottom .service-card-testimonial {
    flex: 0 0 260px;
    max-width: 260px;
  }

  /* --- Transform section --- */
  .transform-stats { gap: 0.75rem; }

  /* --- Bands overlay --- */
  .bands-overlay {
    height: 380px;
    margin-top: -120px;
    margin-bottom: -120px;
  }
  .bands-overlay__strip { height: 70px; font-size: 2.2rem; }

  /* --- Contact --- */
  .contact-title { font-size: clamp(2.2rem, 5vw, 3rem); }

  /* --- Pricing --- */
  .pricing__nb-card { max-width: 460px; padding: 2.5rem 2.5rem 2rem; }

  /* --- Legal pages --- */
  .legal-content { margin-left: 0; }
}

/* ------------------------------------------------------------ *
 *  MOBILE  —  ≤ 767 px  (additions to existing breakpoints)
 * ------------------------------------------------------------ */
@media screen and (max-width: 767px) {

  /* --- No bottom bar needed — dropdown nav --- */
  .main { padding-bottom: 0; }

  /* --- Hero --- */
  #home {
    height: 100svh !important;
    min-height: 100svh !important;
  }
  .hero {
    margin-top: 0;
    height: 100% !important;
  }
  .herocanvas {
    aspect-ratio: auto !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* --- Partners: full mobile overhaul --- */
  .partners {
    padding: 3rem 0 2rem !important;
  }
  .partners__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .partners__top {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    margin-bottom: 2rem !important;
    width: 100%;
  }
  .partners__title {
    font-size: clamp(2.4rem, 10vw, 3.5rem) !important;
    margin-top: 0 !important;
    line-height: 0.95 !important;
  }
  .partners__bgword {
    position: relative !important;
    inset: unset !important;
    font-size: clamp(3.5rem, 14vw, 6rem) !important;
    transform: rotate(-6deg) !important;
    margin: -0.6rem 0 -0.4rem !important;
    opacity: 1;
  }
  .partners__copy {
    width: 100%;
  }
  .partners__quote-wrap {
    margin-left: 0 !important;
    display: block !important;
  }
  .partners__quotes--left {
    display: inline-block !important;
    position: relative !important;
    top: 0.2rem !important;
    width: 1rem !important;
    height: auto !important;
    margin-right: 0.2rem !important;
    vertical-align: baseline !important;
    transform: scaleX(-1) !important;
  }
  .partners__desc--quote {
    font-size: clamp(1.5rem, 6.5vw, 2.4rem) !important;
    line-height: 1.2 !important;
    display: inline !important;
  }
  .partners__quotes--right {
    display: inline-block !important;
    position: relative !important;
    top: 0.2rem !important;
    left: 0.2rem !important;
    width: 1rem !important;
    height: auto !important;
    vertical-align: baseline !important;
  }
  .partners__logos {
    width: 100% !important;
    height: 70px !important;
    margin-top: 1.5rem !important;
  }
  .partners__logo {
    width: 140px !important;
    height: 55px !important;
  }
  .partners__logos-row {
    gap: 40px !important;
  }
  .partners__footnote {
    font-size: 0.75rem !important;
    margin-top: 1rem !important;
    line-height: 1.4 !important;
    color: rgba(27, 27, 27, 0.7) !important;
  }

  /* --- Services --- */
  .services .headline { margin-bottom: 2rem; }

  .illustrations--step1,
  .illustrations--step2,
  .illustrations--step3 {
    margin-right: -1.5rem;
    gap: 0.75rem;
  }
  .illus-step1 { width: 150px; height: 150px; }
  .illus-step2,
  .illus-step3 { width: 170px; height: 127px; }

  .service-card-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .testimonial-avatar { width: 48px; height: 48px; }

  /* --- Contact: show text/title ABOVE form --- */
  .contact-left { order: -1; }
  .contact-card { box-shadow: 6px 6px 0 #ffea29; }
  .contact-trust__logos { gap: 0.75rem; }
  .contact-trust__logos img { height: 22px; }

  /* --- Bands overlay --- */
  .bands-overlay {
    height: 260px;
    margin-top: -80px;
    margin-bottom: -80px;
  }
  .bands-overlay__strip {
    height: 50px;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
  .bands-overlay__strip--left { top: 120px; }
  .bands-overlay__strip--right { top: 150px; }

  /* --- Legal --- */
  .legal-content { margin-left: 0; }

  /* --- Project pages --- */
  .projet-cta__title { white-space: normal; }

  /* --- Footer legal buttons --- */
  .footer__legal-links { justify-content: center; }
  .footer__legal-btn--cgu,
  .footer__legal-btn--cgv,
  .footer__legal-btn--mentions,
  .footer__legal-btn--confidentialite,
  .footer__legal-btn--accueil {
    font-size: 0.8rem;
    padding: 0.65rem 1.4rem;
  }

  /* --- Pricing --- */
  .pricing__nb-card { max-width: 100%; }

  /* --- Global typography scale --- */
  .h2 {
    font-size: clamp(1.6rem, 6vw, 2.5rem) !important;
    line-height: 1.15;
  }
}

/* ------------------------------------------------------------ *
 *  SMALL MOBILE  —  ≤ 479 px
 * ------------------------------------------------------------ */
@media screen and (max-width: 479px) {

  /* --- Nav fullscreen: small mobile tweaks --- */
  .nav { padding: 4rem 1.5rem 2rem; }
  .nav_link { padding: 1rem 0.75rem; }
  .nav_link_tag_title { font-size: 0.95rem; }

  /* --- Partners (≤479 tighter) --- */
  .partners__title {
    font-size: clamp(2rem, 10vw, 2.8rem) !important;
  }
  .partners__desc--quote {
    font-size: clamp(1.2rem, 6vw, 1.8rem) !important;
  }
  .partners__logo {
    width: 120px !important;
    height: 48px !important;
  }
  .partners__logos-row {
    gap: 30px !important;
  }
  .partners__logos {
    height: 60px !important;
  }

  /* --- Service cards --- */
  .service-card--discovery { padding: 1.5rem 1.25rem; }
  .service-card--discovery .service_card_title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .service-card--discovery .service-card-count {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .illus-step1 { width: 120px; height: 120px; }
  .illus-step2,
  .illus-step3 { width: 140px; height: 105px; }

  /* --- Pricing --- */
  .pricing__nb-card {
    padding: 2rem 1.25rem 1.5rem;
    transform: rotate(0deg);
    box-shadow: 5px 5px 0 #3905c8;
  }
  .pricing__nb-card:hover {
    transform: none;
    box-shadow: 5px 5px 0 #3905c8;
  }
  .pricing__nb-badge { left: 1.25rem; }
  .pricing__nb-amount { font-size: 4rem; }
  .pricing__nb-euro { font-size: 1.5rem; }
  .pricing__nb-h2 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .pricing__nb-feat { font-size: 0.88rem; gap: 0.65rem; }

  /* --- Contact --- */
  .contact-title { font-size: clamp(1.8rem, 8vw, 2.2rem); }
  .contact-card { padding: 1.5rem 1.15rem; gap: 1rem; }
  .contact-form__submit { font-size: 0.82rem; padding: 1rem 1.5rem; }

  /* --- Bands overlay --- */
  .bands-overlay {
    height: 220px;
    margin-top: -60px;
    margin-bottom: -60px;
  }
  .bands-overlay__strip { height: 42px; font-size: 1.2rem; }
  .bands-overlay__strip--left { top: 100px; }
  .bands-overlay__strip--right { top: 125px; }

  /* --- Project pages --- */
  .projet-hero { padding: 5rem 0 2rem; }
  .projet-hero__title { font-size: clamp(2rem, 10vw, 3rem); }
  .projet-cta__btn { width: 100%; justify-content: center; }
  .projet-quote { padding: 0; }
  .projet-stats { gap: 1.5rem; }
  .projet-stat__number { font-size: clamp(1.5rem, 8vw, 2rem); }

  /* --- Legal pages --- */
  .legal-hero { padding: 6rem 1rem 0.75rem; }
  .legal-content { padding: 0.5rem 1rem 1rem; }
  .legal-section__title { font-size: 1.15rem; }
  .legal-section__text { font-size: 0.9rem; }

  /* --- Footer legal buttons --- */
  .footer__legal-btn--cgu,
  .footer__legal-btn--cgv,
  .footer__legal-btn--mentions,
  .footer__legal-btn--confidentialite,
  .footer__legal-btn--accueil {
    font-size: 0.72rem;
    padding: 0.55rem 1.1rem;
  }
}

/* ============================================================
   FULL RESPONSIVE PASS — Gap Fixes & Refinements
   ============================================================ */

/* ------------------------------------------------------------ *
 *  LARGE TABLET  —  992 px → 1199 px
 * ------------------------------------------------------------ */
@media screen and (min-width: 992px) and (max-width: 1199px) {

  /* Partners — tighter quote margin */
  .partners__quote-wrap { margin-left: 40px; }
  .partners__desc--quote { font-size: clamp(2rem, 4.5vw, 3.8rem); }

  /* Pourquoi — slightly smaller bento */
  .pourquoi__grid { gap: 1rem; }
  .pourquoi__card-heading { font-size: 1.4rem; }

  /* Processus — tighter timeline */
  .processus__timeline { gap: 1.5rem; }

  /* Founders — smaller cards */
  .cards_stack_item { width: 28em; }

  /* Pricing — scale card */
  .pricing__nb-card { max-width: 500px; padding: 3rem 2.5rem 2.5rem; }

  /* Contact — tighter gap */
  .contact-grid { gap: 3.5rem; }
}

/* ------------------------------------------------------------ *
 *  TABLET  —  768 px → 991 px  (additions)
 * ------------------------------------------------------------ */
@media screen and (min-width: 768px) and (max-width: 991px) {

  /* Pourquoi — 2-column bento instead of 3 */
  .pourquoi__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
  }
  .pourquoi__card:last-child {
    grid-column: 1 / -1;
  }
  .pourquoi__big-label { font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
  .pourquoi__big-num { font-size: 2em; }
  .pourquoi__industries { margin-top: 2rem; }

  /* Processus — 2 columns */
  .processus__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Founders — scroll cards smaller */
  .cards_stack_item { width: 22em; }
  .cards_stack_wrapper { padding: 1rem 1.5rem 4rem; }
  .block-quote { font-size: 0.9rem; }

  /* Contact — stacked on tablet */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-left { order: -1; }

  /* Transform section */
  .transform-section__viewer { max-width: 90%; }
}

/* ------------------------------------------------------------ *
 *  MOBILE  —  ≤ 767 px  (additions)
 * ------------------------------------------------------------ */
@media screen and (max-width: 767px) {

  /* Global container padding */
  .w-container,
  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  /* Pourquoi — big 4 scale down */
  .pourquoi__big-label { font-size: clamp(1.6rem, 7vw, 2.5rem); }
  .pourquoi__big-num {
    font-size: 2.8em;
    -webkit-text-stroke: 2px var(--base, #171412);
    text-shadow: 4px 4px 0 var(--base, #171412);
  }
  .pourquoi__badge { font-size: clamp(0.7rem, 1.8vw, 0.95rem); }

  /* Partners — tighten */
  .partners__top { gap: 1.5rem; margin-bottom: 2rem; }
  .partners__title { margin-top: calc(2rem - 20px); }
  .partners__copy { gap: 0.5rem; }
  .partners__desc { font-size: 0.95rem; }

  /* Founders — full width scroll */
  .cards_stack_wrapper { padding: 0.5rem 1rem 3rem; }
  .cards_stack_item { width: 85vw; max-width: 22em; }
  .founder_card_top { padding: 1.5rem 1.25rem; }
  .block-quote { font-size: 0.85rem; line-height: 1.5; }

  /* Transform section */
  .transform-section { margin-top: 3rem; }
  .transform-section__header { margin-bottom: 1.5rem; }
  .transform-stat { min-width: auto; }

  /* Service cards */
  .services.u-section { padding: 5rem 0 1rem; }

  /* Pricing — badge lead */
  .pricing__nb-badge-lead { font-size: clamp(0.75rem, 1.8vw, 1rem); }
  .pricing__nb-h2-ghost { font-size: inherit; }

  /* Contact badge */
  .contact-badge-lead { font-size: clamp(0.72rem, 1.8vw, 0.95rem); }

  /* Footer — Webflow minified: responsive text */
  .footer__h2 { font-size: clamp(2.5rem, 10vw, 4rem) !important; }
  .footer__kontakty {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .footer__kontakty > * {
    grid-column: unset !important;
    grid-row: unset !important;
  }
  .footer__kontakty-h3 { font-size: clamp(1rem, 3vw, 1.3rem) !important; }
  .footer__kontakt-text { font-size: clamp(0.85rem, 2.5vw, 1rem) !important; word-break: break-word; text-decoration: none !important; }
  .footer__kontakt a { text-decoration: none !important; }
  .footer__social-wrap {
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-top: 0.5rem !important;
  }
  .footer__social-icon { width: 44px !important; height: 44px !important; }
  .footer__social-texts {
    gap: 0 !important;
    line-height: 1.2 !important;
  }
  .footer__social-texts .footer__kontakty-h3 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .footer__social-texts .footer__kontakt-text {
    margin-top: 0 !important;
    padding-top: 0 !important;
    text-decoration: none !important;
  }
  .footer__social-wrap {
    text-decoration: none !important;
  }
  .footer { padding: 3rem 0 !important; }
  .footer__kontakt { min-width: 0 !important; }
}

/* ------------------------------------------------------------ *
 *  SMALL MOBILE  —  ≤ 479 px  (additions)
 * ------------------------------------------------------------ */
@media screen and (max-width: 479px) {

  /* Global tighter padding */
  .w-container,
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Pourquoi — further scale */
  .pourquoi__big-label { font-size: clamp(1.4rem, 8vw, 2rem); }
  .pourquoi__big-num { font-size: 2.5em; margin-right: -0.05em; }
  .pourquoi__mcard { padding: 1.25rem; }
  .pourquoi__card-heading { font-size: 1.1rem; }
  .pourquoi__industries { margin-top: 1.5rem; }
  .pourquoi__tag { font-size: 0.65rem; padding: 0.3em 0.7em; }

  /* Partners — handled in ≤767 and ≤479 blocks above */

  /* Founders */
  .cards_stack_item { width: 88vw; max-width: 20em; }
  .founder_card_top { padding: 1.25rem 1rem; }
  .block-quote { font-size: 0.8rem; }

  /* Featured */
  .featured__title { font-size: clamp(2rem, 10vw, 3rem); }
  .featured__lead { font-size: clamp(1.1rem, 3.5vw, 1.6rem); }

  /* Processus */
  .processus__title { font-size: clamp(2rem, 9vw, 3rem); }
  .processus__title-hl { padding: 0 0.05em; }

  /* Contact */
  .contact-title { font-size: clamp(1.6rem, 7.5vw, 2rem); }
  .contact-badge-lead { font-size: 0.7rem; padding: 0.3em 0.75em; }
  .contact-desc { font-size: 0.9rem; }

  /* Footer */
  .footer__h2 { font-size: clamp(2rem, 9vw, 3rem) !important; }
  .footer__kontakty {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  .footer__kontakty > * {
    grid-column: unset !important;
    grid-row: unset !important;
  }
  .footer__social-wrap {
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-top: 0.25rem !important;
  }
}

/* ================================================================
   SECTION ÉCOSYSTÈME — 3 outils (Atelier / Roue / Fidélité)
   Version safe : pas d'animations infinies
   ================================================================ */

.ecosysteme { padding: 6rem 0 5rem; position: relative; }

.ecosysteme__header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.ecosysteme__badge {
  display: inline-block;
  background: var(--sloneczko);
  color: var(--base);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 2.5px solid var(--base);
  border-radius: 6px;
  box-shadow: 3px 3px 0 var(--base);
  transform: rotate(-2deg);
}
.ecosysteme__title {
  font-family: Labil, Arial, sans-serif;
  font-size: clamp(1.8rem, 5.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--base);
  margin: 0;
}
.ecosysteme__title-hl {
  display: inline-block;
  background-image: linear-gradient(transparent 58%, var(--sloneczko) 58%, var(--sloneczko) 92%, transparent 92%);
  padding: 0 0.15em;
}
.ecosysteme__lead {
  font-family: Labil, Arial, sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(23, 20, 18, 0.68);
  max-width: 620px;
  margin: 0 auto;
}
.ecosysteme__lead strong { color: var(--base); font-weight: 800; }

.ecosysteme__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 720px) {
  .ecosysteme__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .ecosysteme__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.eco-card {
  position: relative;
  border: 2.5px solid var(--base);
  border-radius: 1.5rem;
  padding: 1.6rem 1.5rem 1.75rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.eco-card:hover { transform: translate(-3px, -5px); }

.eco-card--atelier {
  background: linear-gradient(180deg, #ede4ff 0%, #fff 70%);
  box-shadow: 7px 7px 0 var(--atrament);
}
.eco-card--atelier:hover { box-shadow: 11px 13px 0 var(--atrament); }
.eco-card--roue {
  background: linear-gradient(180deg, #fff5c9 0%, #fff 70%);
  box-shadow: 7px 7px 0 var(--sloneczko);
}
.eco-card--roue:hover { box-shadow: 11px 13px 0 var(--sloneczko); }
.eco-card--fidelite {
  background: linear-gradient(180deg, #c9f4dd 0%, #fff 70%);
  box-shadow: 7px 7px 0 var(--trawka);
}
.eco-card--fidelite:hover { box-shadow: 11px 13px 0 var(--trawka); }

.eco-card__sticker {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: var(--base);
  color: var(--sloneczko);
  font-family: Labil, Arial, sans-serif;
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  border-radius: 6px;
  border: 2.5px solid var(--base);
  box-shadow: 2.5px 2.5px 0 var(--sloneczko);
  transform: rotate(6deg);
  z-index: 2;
}

.eco-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 5rem;
}
.eco-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  border: 2.5px solid var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 3px 3px 0 var(--base);
  transform: rotate(-4deg);
  color: #fff;
}
.eco-card__icon--atelier { background: var(--atrament); }
.eco-card__icon--roue { background: var(--sloneczko); color: var(--base); }
.eco-card__icon--fidelite { background: var(--trawka); }

.eco-card__chip {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 11px;
  background: #fff;
  color: var(--base);
  border: 2px solid var(--base);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--base);
}

.eco-mockup {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-d);
  border: 2px solid var(--base);
  box-shadow: inset 0 -4px 0 rgba(23, 20, 18, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease);
}
.eco-card:hover .eco-mockup { transform: scale(1.03); }

/* Mockup 1: Dashboard */
.eco-mockup--dashboard { background: #f0edff; padding: 0.9rem; }
.em-window {
  width: 100%;
  height: 100%;
  background: #fff;
  border: 2px solid var(--base);
  border-radius: 0.6rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 3px 3px 0 var(--atrament);
}
.em-window-top {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 6px 10px;
  background: var(--atrament);
  color: #fff;
  border-bottom: 2px solid var(--base);
  font-family: Labil, Arial, sans-serif;
}
.em-traffic-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0,0,0,0.3);
}
.em-traffic-dot--red { background: #ff5f57; }
.em-traffic-dot--yellow { background: #ffbd2e; }
.em-traffic-dot--green { background: #28ca42; }
.em-window-title {
  flex: 1;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.em-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--sloneczko);
}
.em-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sloneczko);
  display: inline-block;
}
.em-window-body {
  flex: 1;
  padding: 0.7rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.em-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.em-stat-label {
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--grey);
  text-transform: uppercase;
}
.em-stat-row { display: flex; align-items: baseline; gap: 0.4rem; }
.em-stat-value {
  font-family: Labil, Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--base);
  line-height: 1;
}
.em-stat-delta {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--trawka);
  background: rgba(0, 194, 107, 0.15);
  padding: 2px 6px;
  border-radius: 999px;
}
.em-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  flex: 1;
  padding: 0.15rem 0 0.1rem;
  min-height: 40px;
}
.em-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--atrament), #6428ff);
  border: 1.5px solid var(--base);
  border-radius: 3px 3px 0 0;
}
.em-bar-1 { height: 40%; }
.em-bar-2 { height: 60%; }
.em-bar-3 { height: 35%; }
.em-bar-4 { height: 75%; }
.em-bar-5 { height: 55%; }
.em-bar-6 { height: 90%; background: linear-gradient(180deg, var(--sloneczko), var(--pomarancza)); }
.em-bar-7 { height: 68%; }
.em-pills { display: flex; gap: 0.3rem; }
.em-pill {
  font-size: 0.55rem;
  font-weight: 800;
  padding: 3px 7px;
  background: #fff;
  color: var(--base);
  border: 1.5px solid var(--base);
  border-radius: 999px;
}

/* Mockup 2: Roue */
.eco-mockup--wheel { background: #fff9d4; }
.em-wheel {
  width: 90%;
  height: 90%;
  display: block;
  filter: drop-shadow(4px 6px 0 rgba(23, 20, 18, 0.25));
}
.em-wheel-rotate {
  transform-origin: 120px 120px;
  transition: transform 1.2s cubic-bezier(0.18, 0.9, 0.35, 1);
}
.eco-card--roue:hover .em-wheel-rotate {
  transform: rotate(720deg);
}

/* Mockup 3: Carte wallet */
.eco-mockup--card { background: #e4f7ec; padding: 0.9rem; }
.em-wallet {
  width: 100%;
  max-width: 270px;
  aspect-ratio: 1.586;
  background: linear-gradient(135deg, var(--atrament), #5a1be0);
  border: 2.5px solid var(--base);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--base);
  padding: 0.75rem 0.9rem 0.7rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transform: rotate(-2.5deg);
  transition: transform 0.4s var(--ease);
}
.eco-card--fidelite:hover .em-wallet { transform: rotate(0deg) scale(1.04); }
.em-wallet-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.em-wallet-logo {
  width: 24px; height: 24px;
  background: #fff;
  border: 1.5px solid var(--base);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 1.5px 1.5px 0 var(--base);
  flex-shrink: 0;
}
.em-wallet-name-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.em-wallet-badge {
  font-size: 0.42rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
}
.em-wallet-name {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.em-wallet-chip {
  width: 22px; height: 16px;
  border-radius: 3px;
  background: linear-gradient(135deg, #ffe27a, #c69b2b);
  border: 1px solid var(--base);
  flex-shrink: 0;
}
.em-wallet-label {
  font-size: 0.44rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-bottom: 5px;
}
.em-wallet-dots {
  display: flex;
  gap: 3px;
  flex-wrap: nowrap;
}
.em-wallet-dots > span {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--base);
  flex-shrink: 0;
  flex: 0 0 14px;
}
.em-dot-f { background: var(--sloneczko); }
.em-dot-w {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
}
.em-dot-r {
  background: #fff;
  border-color: var(--base);
  position: relative;
}
.em-dot-r::after {
  content: "★";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base);
  font-size: 0.55rem;
  font-weight: 900;
  line-height: 1;
}
.em-wallet-bottom { display: flex; justify-content: flex-end; }
.em-wallet-uid {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.28);
  padding: 3px 7px;
  border-radius: 4px;
}

.eco-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.eco-card__title {
  font-family: Labil, Arial, sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--base);
  text-transform: none;
  margin: 0.2rem 0 0;
}
.eco-card__tagline {
  font-family: Labil, Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--atrament);
  margin: 0;
  line-height: 1.3;
}
.eco-card--roue .eco-card__tagline { color: var(--pomarancza); }
.eco-card--fidelite .eco-card__tagline { color: var(--trawka); }
.eco-card__text {
  font-family: Labil, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(23, 20, 18, 0.65);
  margin: 0;
}
.eco-card__feats {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.eco-card__feats li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: Labil, Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--base);
}
.eco-card__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: var(--base);
  color: var(--sloneczko);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}
.eco-card--atelier .eco-card__check { background: var(--atrament); color: #fff; }
.eco-card--roue .eco-card__check { background: var(--pomarancza); color: #fff; }
.eco-card--fidelite .eco-card__check { background: var(--trawka); color: #fff; }

.ecosysteme__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  margin-top: 1rem;
  background: var(--base);
  border: 2.5px solid var(--base);
  border-radius: 1.25rem;
  box-shadow: 6px 6px 0 var(--sloneczko);
  text-align: center;
}
.ecosysteme__footer-text {
  font-family: Labil, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.5;
  color: #fff;
  margin: 0;
}
.ecosysteme__footer-text strong {
  color: var(--sloneczko);
  font-weight: 900;
}
.ecosysteme__footer-muted {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  display: block;
  font-size: 0.88em;
  margin-top: 0.3rem;
}
.ecosysteme__footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  background: var(--sloneczko);
  color: var(--base);
  font-family: Labil, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2.5px solid var(--sloneczko);
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(255, 234, 41, 0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.ecosysteme__footer-cta:hover {
  transform: translate(-2px, -3px);
  box-shadow: 5px 6px 0 rgba(255, 234, 41, 0.6);
}

@media (max-width: 720px) {
  .ecosysteme { padding: 4rem 0 3rem; }
  .ecosysteme__header { margin-bottom: 2.5rem; }
  .eco-card { padding: 1.3rem 1.2rem 1.5rem; }
  .eco-card__head { padding-right: 4rem; }
  .ecosysteme__footer { padding: 1.25rem 1rem; }
}

/* ================================================================
   PAGES OUTILS — L'Atelier / La Roue / La Fidélité
   Structure: hero produit, numbers band, features, use cases,
   steps, FAQ, final CTA.
   ================================================================ */

.outil {
  --accent: var(--atrament);
  --accent-soft: #ede4ff;
  --accent-contrast: #fff;
  padding: 5rem 0 0;
  background: var(--bg);
  color: var(--base);
}
.outil--atelier   { --accent: var(--atrament);   --accent-soft: #ede4ff; --accent-contrast: #fff; }
.outil--roue      { --accent: var(--pomarancza); --accent-soft: #ffe6dd; --accent-contrast: #fff; }
.outil--fidelite  { --accent: var(--trawka);     --accent-soft: #ddf5e5; --accent-contrast: #fff; }

.outil-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- Hero produit ---- */
.outil-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0 5rem;
}
.outil-hero__left { display: flex; flex-direction: column; gap: 1.4rem; }
.outil-hero__sticker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  width: fit-content; padding: 0.55rem 1.15rem;
  background: var(--base); color: var(--bg);
  border-radius: 999px; font-size: 0.8rem; letter-spacing: 1.5px;
  font-weight: 800; transform: rotate(-1.5deg);
}
.outil-hero__title {
  font-family: Labil, sans-serif; font-weight: 900;
  font-size: clamp(3rem, 7.5vw, 6rem); line-height: 0.92;
  color: var(--base); letter-spacing: -0.03em; margin: 0;
}
.outil-hero__tagline {
  font-family: "Alpina", "GT Alpina", serif; font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem); line-height: 1.2;
  color: var(--accent); margin: 0;
}
.outil-hero__lead {
  font-size: 1.05rem; line-height: 1.6;
  color: var(--base); opacity: 0.85; max-width: 500px; margin: 0;
}
.outil-hero__actions {
  display: flex; align-items: center; gap: 1.2rem;
  flex-wrap: wrap; margin-top: 0.5rem;
}
.outil-hero__cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.7rem; background: var(--base); color: var(--bg);
  border: 2.5px solid var(--base); border-radius: 999px;
  font-family: Labil, sans-serif; font-weight: 800; font-size: 0.98rem;
  text-decoration: none; box-shadow: 5px 5px 0 var(--accent);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.outil-hero__cta:hover { transform: translate(-2px, -3px); box-shadow: 8px 8px 0 var(--accent); }
.outil-hero__tag {
  font-size: 0.85rem; color: var(--base); opacity: 0.6;
  font-family: Labil, sans-serif; font-weight: 700;
}
.outil-hero__right { display: flex; justify-content: center; align-items: center; }

/* ---- Mockup générique (browser window) ---- */
.om {
  position: relative; width: 100%; max-width: 520px;
  border: 3px solid var(--base); border-radius: 1.2rem;
  overflow: hidden; background: #fff;
  box-shadow: 12px 14px 0 var(--accent);
  transform: rotate(-1deg);
  transition: transform 0.5s var(--ease);
}
.om:hover { transform: rotate(0) translate(-4px, -6px); }
.om__bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem; background: #f3efea;
  border-bottom: 2px solid var(--base);
}
.om__dot { width: 11px; height: 11px; border-radius: 50%; display: block; }
.om__dot--r { background: #ff5f57; }
.om__dot--y { background: #ffbd2e; }
.om__dot--g { background: #28c840; }
.om__url { margin-left: auto; font-size: 0.72rem; color: var(--base); opacity: 0.6; font-family: Labil, sans-serif; font-weight: 600; }

/* Atelier — dashboard mockup body */
.om--dash__body { padding: 1.4rem; display: flex; flex-direction: column; gap: 1rem; }
.om-kpi { border: 2px solid var(--base); border-radius: 0.9rem; padding: 1rem 1.1rem; background: var(--accent-soft); }
.om-kpi__label { font-size: 0.65rem; letter-spacing: 1.3px; font-weight: 800; opacity: 0.65; }
.om-kpi__row { display: flex; align-items: baseline; justify-content: space-between; margin-top: 0.3rem; }
.om-kpi__value { font-family: Labil; font-size: 2rem; font-weight: 900; line-height: 1; }
.om-kpi__delta { background: var(--trawka); color: #fff; border-radius: 999px; padding: 0.22rem 0.65rem; font-size: 0.75rem; font-weight: 800; }
.om-bars { display: flex; align-items: flex-end; height: 54px; gap: 0.32rem; padding: 0 0.2rem; }
.om-bars span { flex: 1; background: var(--accent); border: 1.5px solid var(--base); border-radius: 3px 3px 0 0; }
.om-bars span:nth-child(1){ height: 42%; } .om-bars span:nth-child(2){ height: 62%; }
.om-bars span:nth-child(3){ height: 85%; } .om-bars span:nth-child(4){ height: 50%; }
.om-bars span:nth-child(5){ height: 92%; } .om-bars span:nth-child(6){ height: 70%; }
.om-bars span:nth-child(7){ height: 55%; }
.om-chips { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.om-chips span { padding: 0.28rem 0.7rem; border: 1.5px solid var(--base); border-radius: 999px; font-size: 0.7rem; font-weight: 700; background: #fff; }

/* Roue — wheel mockup */
.om--wheel { aspect-ratio: 1; max-width: 460px; padding: 2rem; background: var(--accent-soft); display: flex; justify-content: center; align-items: center; }
.om--wheel svg { width: 100%; height: auto; }

/* Fidélité — wallet mockup */
.om--wallet { padding: 2rem; background: linear-gradient(160deg, var(--accent-soft) 0%, #fff 100%); min-height: 360px; position: relative; }
.om-wcard { position: absolute; width: 72%; border-radius: 1rem; padding: 1.2rem 1.4rem; border: 2.5px solid var(--base); font-family: Labil; }
.om-wcard-1 { top: 40px; left: 40px; background: var(--accent); color: var(--accent-contrast); transform: rotate(-4deg); }
.om-wcard-2 { top: 110px; left: 85px; background: var(--base); color: var(--bg); transform: rotate(2.5deg); z-index: 2; box-shadow: 6px 6px 0 rgba(0,0,0,0.1); }
.om-wcard-3 { top: 180px; left: 130px; background: var(--sloneczko); color: var(--base); transform: rotate(-1deg); z-index: 3; box-shadow: 6px 6px 0 rgba(0,0,0,0.15); }
.om-wcard__chip { display: inline-block; padding: 0.18rem 0.55rem; border-radius: 999px; background: rgba(255,255,255,0.2); font-size: 0.62rem; letter-spacing: 1.2px; font-weight: 800; }
.om-wcard__name { display: block; font-size: 1.1rem; font-weight: 900; margin-top: 0.4rem; }
.om-wcard__stamps { margin-top: 0.7rem; display: flex; gap: 0.32rem; }
.om-wcard__stamps span { width: 14px; height: 14px; border-radius: 50%; border: 2px solid currentColor; opacity: 0.4; }
.om-wcard__stamps span.is-f { background: currentColor; opacity: 1; }

/* ---- Numbers band ---- */
.outil-numbers {
  background: var(--base); color: var(--bg);
  padding: 2.2rem 0; margin: 0; border-top: 2.5px solid var(--base); border-bottom: 2.5px solid var(--base);
}
.outil-numbers__grid {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: center;
}
.outil-num { display: flex; flex-direction: column; gap: 0.3rem; align-items: flex-start; }
.outil-num__value { font-family: Labil; font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900; color: var(--secondary, #ffea29); line-height: 1; }
.outil-num__label { font-size: 0.85rem; opacity: 0.75; font-family: Labil, sans-serif; letter-spacing: 0.3px; }

/* ---- Section headers ---- */
.outil-sec { padding: 5.5rem 0 4rem; }
.outil-sec__head { text-align: center; margin-bottom: 3.5rem; display: flex; flex-direction: column; gap: 0.9rem; align-items: center; }
.outil-sec__badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 1rem; background: #fff; color: var(--base);
  border: 2px solid var(--base); border-radius: 999px;
  font-size: 0.75rem; letter-spacing: 1.3px; font-weight: 800; font-family: Labil, sans-serif;
}
.outil-sec__title {
  font-family: Labil, sans-serif; font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.08;
  color: var(--base); max-width: 720px; margin: 0; letter-spacing: -0.015em;
}
.outil-sec__title .hl { background: var(--accent); color: var(--accent-contrast); padding: 0 0.28em; border-radius: 0.28em; display: inline-block; transform: rotate(-1deg); }
.outil-sec__lead { font-size: 1.05rem; line-height: 1.5; color: var(--base); opacity: 0.75; max-width: 600px; margin: 0; }

/* ---- Features grid ---- */
.outil-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.outil-feat {
  padding: 1.7rem 1.5rem; background: #fff; border: 2.5px solid var(--base);
  border-radius: 1.3rem; display: flex; flex-direction: column; gap: 0.9rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.outil-feat:hover { transform: translate(-3px, -4px); box-shadow: 7px 9px 0 var(--accent); }
.outil-feat__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent); color: var(--accent-contrast);
  display: inline-flex; align-items: center; justify-content: center;
  border: 2.5px solid var(--base); box-shadow: 3px 3px 0 var(--base);
}
.outil-feat__title { font-family: Labil, sans-serif; font-size: 1.2rem; font-weight: 800; margin: 0; line-height: 1.2; }
.outil-feat__text { font-size: 0.95rem; line-height: 1.55; margin: 0; opacity: 0.82; }

/* ---- Use cases ---- */
.outil-cases { display: grid; grid-template-columns: 1fr; gap: 1.1rem; max-width: 900px; margin: 0 auto; }
.outil-case {
  display: grid; grid-template-columns: 72px 1fr; gap: 1.4rem;
  padding: 1.7rem 1.8rem; background: #fff;
  border: 2.5px solid var(--base); border-radius: 1.3rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.outil-case:hover { transform: translateX(5px); box-shadow: 7px 8px 0 var(--accent); }
.outil-case__avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent); color: var(--accent-contrast);
  border: 2.5px solid var(--base);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-family: Labil; font-weight: 900;
}
.outil-case__body { display: flex; flex-direction: column; gap: 0.4rem; }
.outil-case__who { font-family: Labil, sans-serif; font-weight: 800; font-size: 0.82rem; letter-spacing: 0.8px; text-transform: uppercase; color: var(--accent); }
.outil-case__text { font-family: "Alpina", "GT Alpina", serif; font-style: italic; font-size: 1.1rem; line-height: 1.45; margin: 0; color: var(--base); }

/* ---- Steps ---- */
.outil-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.outil-step {
  padding: 2rem 1.7rem; border: 2.5px solid var(--base); border-radius: 1.3rem;
  background: var(--accent-soft); position: relative;
  transition: transform 0.4s var(--ease);
}
.outil-step:hover { transform: translate(-2px, -3px); }
.outil-step__num { font-family: Labil, sans-serif; font-size: 3.2rem; font-weight: 900; color: var(--accent); line-height: 1; display: block; margin-bottom: 0.8rem; }
.outil-step__title { font-family: Labil, sans-serif; font-size: 1.22rem; font-weight: 800; margin: 0 0 0.5rem 0; line-height: 1.2; }
.outil-step p { margin: 0; font-size: 0.95rem; line-height: 1.5; opacity: 0.82; }

/* ---- FAQ ---- */
.outil-faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.9rem; }
.outil-faq__item {
  border: 2.5px solid var(--base); border-radius: 1.1rem;
  background: #fff; padding: 0; overflow: hidden;
}
.outil-faq__item summary {
  list-style: none; cursor: pointer;
  padding: 1.2rem 1.6rem; font-family: Labil, sans-serif; font-weight: 800;
  font-size: 1.05rem; color: var(--base);
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.2s; gap: 1rem;
}
.outil-faq__item summary::-webkit-details-marker { display: none; }
.outil-faq__item summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 900; color: var(--accent);
  transition: transform 0.3s; line-height: 1;
}
.outil-faq__item[open] summary::after { transform: rotate(45deg); }
.outil-faq__item[open] summary { background: var(--accent-soft); }
.outil-faq__item p { padding: 0 1.6rem 1.3rem; margin: 0; font-size: 0.98rem; line-height: 1.6; color: var(--base); opacity: 0.85; }

/* ---- Final CTA ---- */
.outil-final { padding: 4rem 1.5rem 6rem; max-width: 1000px; margin: 0 auto; }
.outil-final__card {
  position: relative; background: var(--base); color: var(--bg);
  border-radius: 2rem; padding: 4rem 2.5rem; text-align: center;
  border: 2.5px solid var(--base); overflow: hidden;
  box-shadow: 10px 12px 0 var(--accent);
}
.outil-final__accent {
  position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; background: var(--accent);
  border-radius: 50%; opacity: 0.22; pointer-events: none;
}
.outil-final__accent--2 {
  position: absolute; bottom: -40px; left: -40px;
  width: 180px; height: 180px; background: var(--secondary, #ffea29);
  border-radius: 50%; opacity: 0.12; pointer-events: none;
}
.outil-final__badge {
  position: relative; display: inline-flex;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: var(--base);
  font-size: 1.7rem; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; border: 2.5px solid var(--bg); font-family: Labil;
}
.outil-final__title { position: relative; font-family: Labil, sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.1; margin: 0 0 1rem; letter-spacing: -0.02em; }
.outil-final__desc { position: relative; font-size: 1.05rem; line-height: 1.5; max-width: 600px; margin: 0 auto 2rem; opacity: 0.85; }
.outil-final__btn {
  position: relative; display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1.1rem 2.2rem; background: var(--secondary, #ffea29); color: var(--base);
  border: 2.5px solid var(--bg); border-radius: 999px;
  font-family: Labil, sans-serif; font-weight: 800; font-size: 1rem;
  text-decoration: none; transition: transform 0.3s var(--ease);
}
.outil-final__btn:hover { transform: translate(-2px, -3px); }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .outil-hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 1rem 0 4rem; }
  .outil-hero__right { order: -1; }
  .outil-feats { grid-template-columns: 1fr 1fr; }
  .outil-steps { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .outil-numbers__grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .outil-feats { grid-template-columns: 1fr; }
  .outil-case { grid-template-columns: 56px 1fr; gap: 1rem; padding: 1.3rem 1.2rem; }
  .outil-case__avatar { width: 56px; height: 56px; font-size: 1.4rem; }
  .outil-final__card { padding: 3rem 1.5rem; }
  .outil-sec { padding: 4rem 0 3rem; }
}
