/* Chrome partagé (header / footer / nav) */
/* ───────────────────────────────────────────────
   Go&Grow - Chrome partagé (header pill + footer noir)
   Repris à l'identique de index.html
─────────────────────────────────────────────── */

/* ════════════════════════════════════════════════════
   HEADER / NAVIGATION
════════════════════════════════════════════════════ */
.main-header {
  position: sticky;
  top: 20px;
  z-index: 1000;
  margin-top: 20px;
  font-family: 'Outfit', sans-serif;
}
.main-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* The floating pill */
.header-main-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 11px 14px 11px 26px;
  border-radius: 50px;
  background: #FFFFFF;
  color: #0A0A0A;
  border: 1px solid #E0E0E0;
  box-shadow: 0 6px 20px rgba(10,10,10,0.06);
  transition: background 0.3s ease, color 0.3s ease,
              box-shadow 0.3s ease, border-color 0.3s ease;
}
/* Scrolled state */
.main-header.scrolled .header-main-box {
  background: #0D0D0D;
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
}

/* Logo */
.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: inherit;
  letter-spacing: -0.3px;
}
.logo-amp { color: #FD947C; }

/* Desktop nav links */
.header-menu-box {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-menu-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.header-menu-link:hover { color: #FD947C; }

/* Header right zone */
.header-btn-box {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* ─── THEME BUTTON ─────────────────────────────────── */
.theme-button {
  display: inline-flex;
  align-items: center;
  background: #0A0A0A;
  color: #FFFFFF;
  border-radius: 50px;
  padding: 12px 24px;
  text-decoration: none;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  border: none;
  position: relative;
  transition: background 0.3s ease, color 0.3s ease, transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease;
}
.theme-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(13,13,13,0.24);
}
.main-header.scrolled .header-btn-box .theme-button {
  background: #FFFFFF;
  color: #0A0A0A;
}
.theme-button.large {
  padding: 14px 32px;
  font-size: 15px;
}
.theme-button-content {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-button-text,
.theme-button-hover-text {
  display: block;
  line-height: 1.2;
  white-space: nowrap;
}
.theme-button-hover-text {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 12px 24px;
}
.theme-button.large .theme-button-hover-text {
  padding: 14px 32px;
}
.theme-button:hover .theme-button-content {
  transform: none;
}

/* Hamburger */
.mobile-menu-open-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-open-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ─── MOBILE MENU OVERLAY ────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  z-index: 2000;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Outfit', sans-serif;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-logo-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.mobile-menu-close-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  background: #F5F5F3;
  border: none;
  font-size: 20px;
  color: #0A0A0A;
  line-height: 1;
  flex-shrink: 0;
}
.mobile-menu-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-link {
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-dropdown-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #0A0A0A;
  transition: color 0.2s ease;
}
.mobile-menu-link:hover .mobile-dropdown-title { color: #FD947C; }
.mobile-menu-cta { margin-top: 40px; }

@media (max-width: 992px) {
  .header-menu-box { display: none; }
  .header-btn-box .theme-button { display: none; }
  .mobile-menu-open-btn { display: flex; }
  .mobile-menu { display: flex; }
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.site-footer {
  width: 100%;
  background: #0D0D0D;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  margin-top: 96px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 24px 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.4px;
  color: #FFFFFF;
}
.footer-logo .footer-logo-amp { color: #FD947C; }
.footer-brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  color: #9A9A9A;
  max-width: 320px;
  margin-top: 18px;
  text-wrap: pretty;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}
.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9A9A9A;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.footer-social-link svg { width: 17px; height: 17px; display: block; }
.footer-social-link:hover {
  color: #0A0A0A;
  background: #FFFFFF;
  border-color: #FFFFFF;
}
.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 22px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 0;
}
.footer-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  color: #9A9A9A;
  text-decoration: none;
  transition: color 0.2s ease;
  width: fit-content;
}
.footer-link:hover { color: #FFFFFF; }
.footer-contact-mail {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  color: #9A9A9A;
  text-decoration: none;
  transition: color 0.2s ease;
  width: fit-content;
  margin-top: 26px;
}
.footer-contact-mail:hover { color: #FFFFFF; }
.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: #FFFFFF;
  color: #0A0A0A;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1;
  letter-spacing: -0.2px;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 50px;
  margin-top: 24px;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease;
}
.footer-contact-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(13,13,13,0.24); }
.footer-divider {
  height: 1px;
  border: none;
  background: #333333;
}
.footer-bottom {
  display: flex;
  align-items: center;
  padding: 28px 0 34px;
}
.footer-copy {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: #6B6B6B;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 48px 40px;
  }
  .footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .footer-inner { padding-top: 64px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-bottom: 48px;
  }
}


/* Pages légales */
/* ───────────────────────────────────────────────
   Go&Grow - Template pages légales
   Sobre, lisible, orienté clarté juridique
─────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --black:    #111111;
  --ink:      #2E2E2E;   /* texte courant gris foncé */
  --gray-tx:  #6B6B6B;
  --gray-lt:  #9A9A9A;
  --rule:     #E2E2E2;
  --rule-tbl: #DADADA;
  --table-bg: #F5F5F5;
  --blue:     #FD947C;
  --blue-dk:  #E0683F;   /* lien hover plus lisible */
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: #FFFFFF;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.75;
  font-size: 17px;
}

.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 28px 56px;
}

/* ── En-tête de page ───────────────────────────── */
.legal-header { margin-bottom: 40px; }

.legal-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.legal-updated {
  margin-top: 10px;
  font-style: italic;
  color: var(--gray-tx);
  font-size: 0.95rem;
}

.legal-header::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--rule);
  margin-top: 28px;
}

/* ── Corps ──────────────────────────────────────── */
.legal-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 48px 0 16px;
}

.legal-body h2:first-child { margin-top: 8px; }

.legal-body h3 {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--black);
  margin: 32px 0 12px;
}

.legal-body p {
  margin: 0 0 18px;
  color: var(--ink);
}

.legal-body .intro {
  color: var(--gray-tx);
  font-size: 1.02rem;
}

.legal-body ul {
  margin: 0 0 18px;
  padding-left: 1.4em;
  list-style: none;
}

.legal-body ul li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 4px;
}

.legal-body ul li::before {
  content: "";
  position: absolute;
  left: -0.95em;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gray-lt);
}

.legal-body ul.facts li strong { font-weight: 600; color: var(--black); }

/* ── Liens ──────────────────────────────────────── */
.legal-body a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  transition: color .15s ease;
}
.legal-body a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--blue-dk);
}

/* ── Notes / avertissements en italique ─────────── */
.legal-body .note {
  font-style: italic;
  color: var(--gray-tx);
}

.legal-body .warning {
  font-style: italic;
  color: var(--gray-tx);
  border-top: 1px solid var(--rule);
  margin-top: 36px;
  padding-top: 24px;
  font-size: 0.95rem;
}

/* ── Tableaux ───────────────────────────────────── */
.legal-body .table-scroll {
  overflow-x: auto;
  margin: 0 0 24px;
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  line-height: 1.55;
  background: #FFFFFF;
}

.legal-body thead th {
  background: #FFFFFF;
  color: var(--black);
  font-weight: 700;
  text-align: left;
  padding: 13px 16px;
  border: 1px solid var(--rule-tbl);
  border-bottom-width: 1.5px;
}

.legal-body tbody td {
  background: var(--table-bg);
  color: var(--ink);
  padding: 13px 16px;
  border: 1px solid var(--rule-tbl);
  vertical-align: top;
}

.legal-body tbody td:first-child {
  font-weight: 500;
  color: var(--black);
}

/* ── Footer ─────────────────────────────────────── */
.legal-footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 28px 28px 48px;
  text-align: center;
  border-top: 1px solid var(--rule);
}

.legal-footer p {
  font-size: 0.82rem;
  color: var(--gray-lt);
  letter-spacing: 0.01em;
}

@media (max-width: 560px) {
  .legal-wrap { padding: 48px 20px 40px; }
  .legal-header h1 { font-size: 1.85rem; }
  .legal-body h2 { font-size: 1.25rem; }
}


/* index.html */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body.page-home {
      --black:    #0A0A0A;
      --scroll-bg:#0D0D0D;
      --white:    #FFFFFF;
      --blue:     #FD947C;
      --coral:    #FD947C;
      --border:   #E0E0E0;
      --gray-bg:  #F5F5F3;
      --gray-tx:  #6B6B6B;
      --gray-lt:  #9A9A9A;
    }
html { scroll-behavior: smooth; }
body.page-home {
      font-family: 'Outfit', sans-serif;
      background: var(--white);
      color: var(--black);
      -webkit-font-smoothing: antialiased;
    }
body.page-home .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
body.page-home .main-header {
      position: sticky;
      top: 20px;
      z-index: 1000;
      margin-top: 20px;
    }
body.page-home .main-header .container {
      width: 100%;
    }
body.page-home .header-main-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 11px 14px 11px 26px;
      border-radius: 50px;
      background: var(--white);
      color: var(--black);
      border: 1px solid var(--border);
      box-shadow: 0 6px 20px rgba(10,10,10,0.06);
      transition: background 0.3s ease, color 0.3s ease,
                  box-shadow 0.3s ease, border-color 0.3s ease;
    }
body.page-home .main-header.scrolled .header-main-box {
      background: var(--scroll-bg);
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 14px 40px rgba(0,0,0,0.28);
    }
body.page-home .logo-link {
      text-decoration: none;
      color: inherit;
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
body.page-home .logo-text {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 20px;
      line-height: 1;
      color: inherit;
      letter-spacing: -0.3px;
    }
body.page-home .logo-amp { color: var(--blue); }
body.page-home .header-menu-box {
      display: flex;
      align-items: center;
      gap: 32px;
    }
body.page-home .header-menu-link {
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: 15px;
      color: inherit;
      text-decoration: none;
      transition: color 0.2s ease;
      white-space: nowrap;
    }
body.page-home .header-menu-link:hover { color: var(--blue); }
body.page-home .header-menu-item {
      position: relative;
      display: flex;
      align-items: center;
    }
body.page-home .header-menu-item > .header-menu-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
body.page-home .menu-caret {
      width: 8px;
      height: 8px;
      border-right: 1.6px solid currentColor;
      border-bottom: 1.6px solid currentColor;
      transform: rotate(45deg) translateY(-1px);
      transition: transform 0.25s ease;
      flex-shrink: 0;
    }
body.page-home .header-menu-item:hover .menu-caret {
      transform: rotate(-135deg) translateY(-1px);
    }
body.page-home .header-dropdown {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      min-width: 180px;
      background: var(--white);
      border-radius: 14px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      padding: 8px;
      display: flex;
      flex-direction: column;
      gap: 2px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    }
body.page-home .header-menu-item::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      height: 16px;
    }
body.page-home .header-menu-item:hover .header-dropdown, body.page-home .header-menu-item:focus-within .header-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(8px);
    }
body.page-home .header-dropdown-link {
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: 15px;
      color: var(--black);
      text-decoration: none;
      padding: 10px 14px;
      border-radius: 9px;
      white-space: nowrap;
      transition: color 0.2s ease, background 0.2s ease;
    }
body.page-home .header-dropdown-link:hover {
      color: var(--blue);
      background: var(--gray-bg);
    }
body.page-home .header-btn-box {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }
body.page-home .theme-button {
      display: inline-flex;
      align-items: center;
      background: var(--black);
      color: var(--white);
      border-radius: 50px;
      padding: 12px 24px;
      text-decoration: none;
      overflow: hidden;
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: 14px;
      line-height: 1;
      cursor: pointer;
      border: none;
      position: relative;
      transition: background 0.3s ease, color 0.3s ease, transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease;
    }
body.page-home .theme-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 34px rgba(13,13,13,0.24);
    }
body.page-home .main-header.scrolled .header-btn-box .theme-button {
      background: var(--white);
      color: var(--black);
    }
body.page-home .theme-button.large {
      padding: 14px 32px;
      font-size: 15px;
    }
body.page-home .theme-button.secondary {
      background: transparent;
      color: var(--black);
      box-shadow: inset 0 0 0 1.5px rgba(13,13,13,0.18);
    }
body.page-home .theme-button.secondary:hover {
      background: var(--gray-bg);
      box-shadow: inset 0 0 0 1.5px rgba(13,13,13,0.28);
    }
body.page-home .theme-button-content {
      display: flex;
      flex-direction: column;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
body.page-home .theme-button-text, body.page-home .theme-button-hover-text {
      display: block;
      line-height: 1.2;
      white-space: nowrap;
    }
body.page-home .theme-button-hover-text {
      position: absolute;
      
      top: 100%;
      left: 0;
      
      padding: 12px 24px;
    }
body.page-home .theme-button.large .theme-button-hover-text {
      padding: 14px 32px;
    }
body.page-home .theme-button:hover .theme-button-content {
      transform: none;
    }
body.page-home .mobile-menu-open-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 32px;
      height: 32px;
      cursor: pointer;
      padding: 4px;
    }
body.page-home .mobile-menu-open-btn span {
      display: block;
      width: 100%;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
body.page-home .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--white);
      z-index: 2000;
      flex-direction: column;
      padding: 24px;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
body.page-home .mobile-menu.is-open {
      transform: translateX(0);
    }
body.page-home .mobile-logo-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 48px;
    }
body.page-home .mobile-menu-close-btn {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border-radius: 50%;
      background: var(--gray-bg);
      border: none;
      font-size: 20px;
      color: var(--black);
      line-height: 1;
      flex-shrink: 0;
    }
body.page-home .mobile-menu-box {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
body.page-home .mobile-menu-link {
      text-decoration: none;
      padding: 16px 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
body.page-home .mobile-dropdown-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 28px;
      color: var(--black);
      transition: color 0.2s ease;
    }
body.page-home .mobile-menu-link:hover .mobile-dropdown-title { color: var(--blue); }
body.page-home .mobile-submenu-link { padding-left: 20px; }
body.page-home .mobile-submenu-link .mobile-dropdown-title {
      font-weight: 500;
      font-size: 22px;
      color: var(--gray-tx);
    }
body.page-home .mobile-menu-cta {
      margin-top: 40px;
    }
body.page-home .hero-section {
      padding-top: 64px;
      padding-bottom: 100px;
      background: var(--white);
    }
body.page-home .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      justify-items: center;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
body.page-home .hero-content-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }
body.page-home .section-subtitle-box {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gray-bg);
      border-radius: 50px;
      padding: 6px 14px 6px 8px;
      align-self: flex-start;
      animation: fadeInUp 0.6s ease-out 0s both;
      white-space: nowrap;
    }
body.page-home .section-subtitle-icon {
      width: 8px;
      height: 8px;
      border-radius: 3px;
      background: var(--blue);
      flex-shrink: 0;
    }
body.page-home .section-subtitle {
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: 13px;
      color: var(--gray-tx);
      line-height: 1.2;
      white-space: nowrap;
    }
body.page-home .hero-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 42px;
      line-height: 1.14;
      color: var(--black);
      letter-spacing: -1.2px;
      animation: fadeInUp 0.6s ease-out 0.1s both;
    }
body.page-home .hero-title-line {
      display: block;
      white-space: nowrap;
    }
body.page-home .hero-title-line-accent {
      display: block;
      white-space: nowrap;
      line-height: 1.3;
      padding-bottom: 8px;
      margin-top: 2px;
    }
body.page-home .section-title-style {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      color: var(--blue);
      letter-spacing: -0.5px;
    }
body.page-home .hero-text {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 17px;
      color: var(--gray-tx);
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.7;
      animation: fadeInUp 0.6s ease-out 0.2s both;
    }
body.page-home .hero-btn-box {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
      margin-top: -10px;
      animation: fadeInUp 0.6s ease-out 0.3s both;
    }
body.page-home .hero-rating-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      animation: fadeInUp 0.6s ease-out 0.4s both;
    }
body.page-home .hero-author-box {
      display: flex;
      align-items: center;
    }
body.page-home .hero-author-img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2.5px solid var(--white);
      margin-left: -8px;
      overflow: hidden;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 12px;
      color: var(--white);
    }
body.page-home .hero-author-img:first-child { margin-left: 0; }
body.page-home .hero-author-img.a1 { background: #6C8EBF; }
body.page-home .hero-author-img.a2 { background: #B07CC6; }
body.page-home .hero-author-img.a3 { background: #5CAF8A; }
body.page-home .hero-rating-box {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
body.page-home .rating-box-two {
      display: flex;
      align-items: center;
      gap: 4px;
    }
body.page-home .star-row {
      display: flex;
      align-items: center;
      gap: 2px;
    }
body.page-home .star {
      color: var(--blue);
      font-size: 13px;
      line-height: 1;
    }
body.page-home .rating-count {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 13px;
      color: var(--black);
      line-height: 1;
    }
body.page-home .hero-rating-text {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 13px;
      color: var(--gray-tx);
      line-height: 1;
    }
body.page-home .hero-images-wrapper {
      position: relative;
      animation: fadeInUp 0.6s ease-out 0.2s both;
    }
body.page-home .hero-image-box {
      width: 100%;
      height: 520px;
      background: var(--white);
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
body.page-home .hero-image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
body.page-home .hero-image-placeholder {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: var(--gray-tx);
      position: relative;
      z-index: 1;
      letter-spacing: 0.3px;
    }
body.page-home .hero-badge {
      position: absolute;
      background: var(--white);
      border-radius: 12px;
      padding: 12px 16px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.10);
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 10;
      white-space: nowrap;
    }
body.page-home .hero-badge-1 { top: 40px; left: -16px; }
body.page-home .hero-badge-2 { bottom: 40px; right: 8px; }
body.page-home .badge-icon {
      font-size: 20px;
      color: var(--blue);
      font-weight: 700;
      line-height: 1;
      flex-shrink: 0;
    }
body.page-home .badge-value {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 14px;
      color: var(--black);
      line-height: 1.2;
    }
body.page-home .badge-label {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 12px;
      color: var(--gray-tx);
      line-height: 1.2;
    }


    
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }


    @media (prefers-reduced-motion: reduce) {
body.page-home .section-subtitle-box, body.page-home .hero-title, body.page-home .hero-text, body.page-home .hero-btn-box, body.page-home .hero-rating-wrap, body.page-home .hero-images-wrapper {
        animation: none;
        opacity: 1;
        transform: none;
      }
}


    

    
    @media (max-width: 992px) {
body.page-home .header-menu-box { display: none; }
body.page-home .header-btn-box .theme-button { display: none; }
body.page-home .mobile-menu-open-btn { display: flex; }
body.page-home .mobile-menu { display: flex; }
body.page-home .hero-grid {
        grid-template-columns: 100%;
        gap: 48px;
      }
body.page-home .hero-images-wrapper { display: none; }
body.page-home .hero-title { font-size: 40px; letter-spacing: -1px; }
body.page-home .hero-title-line, body.page-home .hero-title-line-accent { white-space: normal; }
}


    
    @media (max-width: 768px) {
body.page-home .hero-section { padding-top: 40px; padding-bottom: 60px; }
body.page-home .hero-title { font-size: 32px; letter-spacing: -0.8px; }
body.page-home .hero-text { font-size: 15px; }
body.page-home .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
body.page-home .hero-images-wrapper {
        display: block;
      }
body.page-home .hero-image-box { height: 300px; }
body.page-home .hero-badge-1 { top: 16px; left: -8px; }
body.page-home .hero-badge-2 { bottom: 16px; right: -8px; }
}


    @media (max-width: 480px) {
body.page-home .hero-content-box { gap: 20px; }
body.page-home .hero-rating-wrap { gap: 10px; }
}
body.page-home .logos-section {
      background: var(--white);
      padding: 56px 0;
    }
body.page-home .logos-intro {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: var(--gray-tx);
      text-align: center;
      margin-bottom: 32px;
      letter-spacing: 0.2px;
    }
body.page-home .logos-marquee {
      position: relative;
      width: 100%;
      overflow: hidden;
    }
body.page-home .logos-marquee::before, body.page-home .logos-marquee::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 140px;
      z-index: 2;
      pointer-events: none;
    }
body.page-home .logos-marquee::before {
      left: 0;
      background: linear-gradient(to right, var(--white) 0%, rgba(255,255,255,0) 100%);
    }
body.page-home .logos-marquee::after {
      right: 0;
      background: linear-gradient(to left, var(--white) 0%, rgba(255,255,255,0) 100%);
    }
body.page-home .logos-track {
      display: flex;
      width: max-content;
      animation: logos-scroll 44s linear infinite;
    }
body.page-home .logos-marquee:hover .logos-track {
      animation-play-state: paused;
    }
body.page-home .logos-seq {
      display: flex;
      align-items: center;
      gap: 60px;
      padding-right: 60px;
      flex-shrink: 0;
    }

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

    @media (prefers-reduced-motion: reduce) {
body.page-home .logos-track { animation: none; }
}
body.page-home .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 64px;
      flex-shrink: 0;
    }
body.page-home .logo-item img {
      width: auto;
      object-fit: contain;
      opacity: 0.5;
      transition: opacity .35s ease;
      -webkit-user-drag: none;
      user-select: none;
    }
body.page-home .logo-item:hover img { opacity: 1; }
body.page-home .lg-cohabs img { height: 32px; }
body.page-home .lg-maison img { height: 25px; }
body.page-home .lg-groupesarro img { height: 50px; }
body.page-home .lg-roof img { height: 33px; }
body.page-home .lg-red img { height: 38px; }
body.page-home .lg-jeanstation img { height: 48px; }
body.page-home .lg-wheere img { height: 28px; }
body.page-home .lg-egerie img { height: 28px; }
body.page-home .lg-debongout img { height: 25px; }
body.page-home .lg-nopillo img { height: 32px; }
body.page-home .lg-beanstock img { height: 46px; }


    
    @media (max-width: 768px) {
body.page-home .logos-section { padding: 44px 0; }
body.page-home .logos-marquee::before, body.page-home .logos-marquee::after { width: 70px; }
body.page-home .logo-item { height: 52px; }
body.page-home .lg-cohabs img { height: 27px; }
body.page-home .lg-maison img { height: 21px; }
body.page-home .lg-groupesarro img { height: 42px; }
body.page-home .lg-roof img { height: 28px; }
body.page-home .lg-red img { height: 32px; }
body.page-home .lg-jeanstation img { height: 41px; }
body.page-home .lg-wheere img { height: 24px; }
body.page-home .lg-egerie img { height: 24px; }
body.page-home .lg-debongout img { height: 22px; }
body.page-home .lg-nopillo img { height: 27px; }
body.page-home .lg-beanstock img { height: 39px; }
body.page-home .logos-seq { gap: 40px; padding-right: 40px; }
}
body.page-home .about-section {
      padding: 120px 0;
      background: var(--white);
    }
body.page-home .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
body.page-home .about-content-box {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
body.page-home .about-label {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--blue);
      line-height: 1;
    }
body.page-home .about-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 40px;
      line-height: 1.18;
      letter-spacing: -1px;
      color: var(--black);
    }
body.page-home .about-title-line { display: block; }
body.page-home .about-title-accent {
      display: block;
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      letter-spacing: -0.5px;
      color: var(--blue);
      line-height: 1.3;
      padding-bottom: 6px;
      margin-top: 4px;
    }
body.page-home .about-text {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 17px;
      line-height: 1.75;
      color: var(--gray-tx);
      max-width: 500px;
    }
body.page-home .about-metrics {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
body.page-home .about-metric {
      background: #F4F4F5;
      border-radius: 20px;
      padding: 36px 38px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 14px;
      box-shadow: 0 12px 32px rgba(10,10,10,0.06);
    }
body.page-home .about-metric-value {
      font-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: 56px;
      line-height: 1;
      letter-spacing: -2.5px;
      color: var(--black);
    }
body.page-home .about-metric-value .plus { color: var(--black); }
body.page-home .about-metric-label {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 15px;
      line-height: 1.3;
      color: var(--gray-tx);
    }


    
    @media (max-width: 992px) {
body.page-home .about-grid {
        grid-template-columns: 100%;
        gap: 56px;
      }
}

    @media (max-width: 768px) {
body.page-home .about-section { padding: 72px 0; }
body.page-home .about-title { font-size: 32px; letter-spacing: -0.8px; }
body.page-home .about-text { font-size: 15px; }
body.page-home .about-metric { padding: 34px 30px; }
body.page-home .about-metric-value { font-size: 48px; }
}

    @media (max-width: 420px) {
body.page-home .about-metrics { grid-template-columns: 1fr; }
}
body.page-home .services-section {
      padding: 120px 0;
      background: var(--white);
    }
body.page-home .services-header {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 720px;
      margin-bottom: 64px;
    }
body.page-home .services-label {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--blue);
      line-height: 1;
    }
body.page-home .services-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 40px;
      line-height: 1.18;
      letter-spacing: -1px;
      color: var(--black);
      text-wrap: balance;
    }
body.page-home .services-title .em {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      color: var(--blue);
      letter-spacing: -0.5px;
    }
body.page-home .services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
body.page-home .service-card {
      background: var(--white);
      border: 1px solid #ECECEC;
      border-radius: 20px;
      padding: 44px 44px 48px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    }
body.page-home .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 44px rgba(0,0,0,0.07);
      border-color: #E0E0E0;
    }
body.page-home .service-card-num {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 400;
      font-style: italic;
      font-size: 40px;
      line-height: 1;
      letter-spacing: 0;
      color: var(--blue);
      margin-bottom: 12px;
    }
body.page-home .service-card-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 20px;
      line-height: 1.3;
      letter-spacing: -0.4px;
      color: var(--black);
      text-wrap: balance;
    }
body.page-home .service-card-text {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 15px;
      line-height: 1.65;
      color: var(--gray-tx);
    }


    
    @media (max-width: 992px) {
body.page-home .services-grid { gap: 20px; }
}

    @media (max-width: 768px) {
body.page-home .services-section { padding: 72px 0; }
body.page-home .services-title { font-size: 30px; letter-spacing: -0.8px; }
body.page-home .services-header { margin-bottom: 44px; }
body.page-home .services-grid { grid-template-columns: 1fr; }
body.page-home .service-card { padding: 38px 32px 42px; }
body.page-home .service-card-num { font-size: 38px; }
body.page-home .service-card-title { font-size: 20px; }
}
body.page-home .diff-section {
      background: var(--white);
      padding: 130px 0 140px;
    }
body.page-home .diff-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      max-width: 840px;
      margin: 0 auto;
      padding: 0 24px 72px;
      text-align: center;
    }
body.page-home .diff-label {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--blue);
      line-height: 1;
    }
body.page-home .diff-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 50px;
      line-height: 1.12;
      letter-spacing: -1.6px;
      color: var(--black);
      text-wrap: balance;
    }
body.page-home .diff-title-accent {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 400;
      font-style: italic;
      letter-spacing: -0.5px;
      color: var(--blue);
    }
body.page-home .diff-title-vs {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 400;
      font-style: italic;
      letter-spacing: 0;
      color: var(--blue);
    }
body.page-home .diff-matrix-scroll {
      max-width: 820px;
      margin: 0 auto;
      padding: 4px 24px;
    }
body.page-home .diff-matrix {
      background: #F5F5F5;
      border-radius: 20px;
      box-shadow: 0 18px 50px rgba(10,10,10,0.07);
      padding: 11px;
    }
body.page-home .diff2 {
      position: relative;
      display: grid;
      grid-template-columns: 40% 30% 30%;
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
    }
body.page-home .diff2-ggpanel {
      position: absolute;
      top: 0; bottom: 0; right: 0;
      width: 30%;
      background: #0D0D0D;
      z-index: 1;
    }
body.page-home .diff2-cell {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 0;
    }
body.page-home .diff2-head {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 17px;
      letter-spacing: -0.4px;
      padding: 19px 0 20px;
    }
body.page-home .diff2-head-alt { color: var(--gray-tx); }
body.page-home .diff2-head-gg { color: var(--white); }
body.page-home .diff2-label {
      justify-content: flex-start;
      padding-left: 24px;
      padding-right: 16px;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: -0.3px;
      line-height: 1.35;
      color: var(--black);
      text-wrap: pretty;
    }
body.page-home .diff2-amp { color: var(--blue); }
body.page-home .diff2-sep { border-bottom: 1px solid #E8E8E8; }
body.page-home .diff-mark {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      font-weight: 700;
      line-height: 1;
      flex-shrink: 0;
    }
body.page-home .diff-mark--no {
      background: #E4E4E4;
      color: #9A9A9A;
    }
body.page-home .diff-mark--yes {
      background: #4A4A4A;
      color: #FFFFFF;
    }
body.page-home .diff-mark--gg {
      width: 48px;
      height: 48px;
      font-size: 20px;
      background: #000000;
      color: var(--blue);
      border: 1.5px solid rgba(253,148,124,0.35);
    }


    
    @media (max-width: 960px) {
body.page-home .diff-matrix-scroll {
        overflow-x: auto;
        padding: 4px 20px 12px;
        -webkit-overflow-scrolling: touch;
      }
body.page-home .diff-matrix { min-width: 620px; }
}

    @media (max-width: 768px) {
body.page-home .diff-section { padding: 84px 0 92px; }
body.page-home .diff-header { padding: 0 20px 48px; }
body.page-home .diff-title { font-size: 34px; letter-spacing: -1px; }
}
body.page-home .testimonials-section {
      background: var(--white);
      padding: 120px 0;
    }
body.page-home .testimonials-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 56px;
    }
body.page-home .testimonials-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 44px;
      line-height: 1.16;
      letter-spacing: -1.2px;
      color: var(--black);
      text-wrap: balance;
    }
body.page-home .testimonials-title .em {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      color: var(--blue);
      letter-spacing: -0.5px;
    }
body.page-home .testimonials-carousel {
      width: 70%;
      max-width: 860px;
      margin: 0 auto;
    }
body.page-home .testimonials-panel {
      background: #F5F5F5;
      border-radius: 24px;
      box-shadow: 0 10px 40px rgba(10,10,10,0.05);
      padding: 30px 56px 48px;
    }
body.page-home .testimonials-tabs {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      padding-bottom: 38px;
      border-bottom: 1px solid #E7E7E7;
    }
body.page-home .testimonials-tab {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 12.5px;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: var(--gray-tx);
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px 2px;
      position: relative;
      transition: color 0.2s ease;
    }
body.page-home .testimonials-tab::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -2px;
      height: 2px;
      background: var(--blue);
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform 0.25s ease;
    }
body.page-home .testimonials-tab:hover { color: var(--black); }
body.page-home .testimonials-tab.is-active {
      color: var(--black);
    }
body.page-home .testimonials-tab.is-active::after { transform: scaleX(1); }
body.page-home .testimonials-tab-sep {
      color: #CFCFCF;
      font-size: 14px;
      user-select: none;
    }
body.page-home .testimonials-stage {
      position: relative;
      padding: 44px 0 8px;
    }
body.page-home .testimonials-slide {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
body.page-home .testimonials-slide.is-active {
      display: flex;
      animation: testiFade 0.45s ease both;
    }

    @keyframes testiFade {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }
body.page-home .testimonials-mark {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-size: 88px;
      line-height: 0.5;
      color: var(--blue);
      height: 46px;
      margin-bottom: 12px;
    }
body.page-home .testimonials-quote {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-style: italic;
      font-size: 25px;
      line-height: 1.5;
      letter-spacing: -0.3px;
      color: #2A2A2A;
      max-width: 620px;
      text-wrap: pretty;
      margin-bottom: 34px;
    }
body.page-home .testimonials-author {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
body.page-home .testimonials-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #FFFFFF;
      border: 1px solid #ECECEA;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 17px;
      letter-spacing: 0.5px;
      color: #6B6B6B;
    }
body.page-home .testimonials-avatar img {
      width: 74%;
      height: 74%;
      object-fit: contain;
    }
body.page-home .testimonials-name {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 16px;
      line-height: 1.2;
      color: var(--black);
    }
body.page-home .testimonials-role {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 13.5px;
      line-height: 1.3;
      color: var(--gray-tx);
      margin-top: 4px;
    }
body.page-home .testimonials-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 38px;
    }
body.page-home .testimonials-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #D2D2D2;
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background 0.2s ease, width 0.2s ease;
    }
body.page-home .testimonials-dot.is-active {
      background: var(--blue);
      width: 22px;
      border-radius: 4px;
    }
body.page-home .testimonials-arrows {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-top: 30px;
    }
body.page-home .testimonials-arrow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--white);
      box-shadow: 0 6px 20px rgba(10,10,10,0.10);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      color: var(--black);
      line-height: 1;
      transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }
body.page-home .testimonials-arrow:hover {
      color: var(--blue);
      transform: translateY(-2px);
      box-shadow: 0 10px 26px rgba(10,10,10,0.13);
    }


    
    @media (max-width: 992px) {
body.page-home .testimonials-carousel { width: 86%; }
}

    @media (max-width: 768px) {
body.page-home .testimonials-section { padding: 72px 0; }
body.page-home .testimonials-title { font-size: 31px; letter-spacing: -0.8px; }
body.page-home .testimonials-header { margin-bottom: 40px; }
body.page-home .testimonials-carousel { width: 100%; }
body.page-home .testimonials-panel { padding: 26px 26px 38px; }
body.page-home .testimonials-tabs { gap: 12px; flex-wrap: wrap; padding-bottom: 28px; }
body.page-home .testimonials-tab { font-size: 11px; letter-spacing: 1px; }
body.page-home .testimonials-quote { font-size: 19px; }
body.page-home .testimonials-stage { padding: 34px 0 4px; }
}
body.page-home .cases-section {
      background: var(--white);
      padding: 120px 0;
    }
body.page-home .cases-header {
      display: flex;
      flex-direction: column;
      gap: 18px;
      max-width: 720px;
      margin-bottom: 64px;
    }
body.page-home .cases-label {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--blue);
      line-height: 1;
    }
body.page-home .cases-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 40px;
      line-height: 1.18;
      letter-spacing: -1px;
      color: var(--black);
      text-wrap: balance;
    }
body.page-home .cases-title .em {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      color: var(--blue);
      letter-spacing: -0.5px;
    }
body.page-home .cases-intro {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 17px;
      line-height: 1.7;
      color: var(--gray-tx);
      max-width: 620px;
    }
body.page-home .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
body.page-home .case-card {
      background: #F5F5F5;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 18px rgba(10,10,10,0.05);
      display: flex;
      flex-direction: column;
      transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
    }
body.page-home .case-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 44px rgba(10,10,10,0.12);
    }
body.page-home .case-img {
      width: 100%;
      aspect-ratio: 16 / 9;
      background: linear-gradient(135deg, var(--blue) 0%, #F6B59F 50%, var(--coral) 100%);
      position: relative;
      overflow: hidden;
    }
body.page-home .case-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(120px 120px at 22% 28%, rgba(255,255,255,0.40), transparent 70%),
        radial-gradient(160px 160px at 82% 80%, rgba(253,148,124,0.55), transparent 70%);
      mix-blend-mode: screen;
    }
body.page-home .case-body {
      display: flex;
      flex-direction: column;
      flex: 1;
      padding: 28px 30px 30px;
    }
body.page-home .case-tag {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      align-self: flex-start;
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--black);
      line-height: 1;
    }
body.page-home .case-tag-square {
      width: 11px;
      height: 11px;
      border-radius: 3px;
      background: var(--blue);
      flex-shrink: 0;
    }
body.page-home .case-divider {
      height: 1px;
      background: #E2E2E2;
      border: none;
      margin: 18px 0 22px;
    }
body.page-home .case-problem {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 23px;
      line-height: 1.32;
      letter-spacing: -0.5px;
      color: var(--black);
      text-wrap: pretty;
      margin-bottom: 16px;
    }
body.page-home .case-problem .em {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      color: var(--blue);
      letter-spacing: -0.3px;
    }
body.page-home .case-result {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 15px;
      line-height: 1.55;
      color: var(--gray-tx);
      margin-bottom: 28px;
    }
body.page-home .case-result strong {
      font-weight: 600;
      color: #4A4A4A;
    }
body.page-home .case-link {
      margin-top: auto;
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.1px;
      color: var(--black);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s ease, gap 0.2s ease;
    }
body.page-home .case-card:hover .case-link {
      color: var(--coral);
      gap: 9px;
    }


    
    @media (max-width: 992px) {
body.page-home .cases-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
      }
}

    @media (max-width: 768px) {
body.page-home .cases-section { padding: 72px 0; }
body.page-home .cases-title { font-size: 30px; letter-spacing: -0.8px; }
body.page-home .cases-intro { font-size: 15px; }
body.page-home .cases-header { margin-bottom: 44px; }
body.page-home .case-problem { font-size: 21px; }
body.page-home .case-body { padding: 26px 26px 28px; }
}
body.page-home .offre-section {
      background: var(--white);
      padding: 120px 0;
    }
body.page-home .offre-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 18px;
      max-width: 760px;
      margin: 0 auto 64px;
    }
body.page-home .offre-label {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--blue);
      line-height: 1;
    }
body.page-home .offre-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 44px;
      line-height: 1.16;
      letter-spacing: -1.2px;
      color: var(--black);
      text-wrap: balance;
    }
body.page-home .offre-title .em {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      color: var(--blue);
      letter-spacing: -0.5px;
    }
body.page-home .offre-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 920px;
      margin: 0 auto;
      align-items: stretch;
    }
body.page-home .offre-card {
      border-radius: 20px;
      padding: 44px 40px 40px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 10px 40px rgba(10,10,10,0.06);
    }
body.page-home .offre-card--light {
      background: var(--white);
      border: 1px solid var(--border);
    }
body.page-home .offre-card--dark {
      background: var(--black);
      border: 1px solid var(--black);
    }
body.page-home .offre-card-tag {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: var(--blue);
      line-height: 1;
      margin-bottom: 20px;
    }
body.page-home .offre-card-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 27px;
      line-height: 1.2;
      letter-spacing: -0.6px;
      margin-bottom: 8px;
    }
body.page-home .offre-card--light .offre-card-title { color: var(--black); }
body.page-home .offre-card--dark  .offre-card-title { color: var(--white); }
body.page-home .offre-card-sub {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 15.5px;
      line-height: 1.55;
      margin-bottom: 28px;
    }
body.page-home .offre-card--light .offre-card-sub { color: var(--gray-tx); }
body.page-home .offre-card--dark  .offre-card-sub { color: #A9A9A9; }
body.page-home .offre-card-price {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 40px;
      line-height: 1;
      letter-spacing: -1.4px;
      margin-bottom: 28px;
    }
body.page-home .offre-card--light .offre-card-price { color: var(--black); }
body.page-home .offre-card--dark  .offre-card-price { color: var(--white); }
body.page-home .offre-card-price-unit {
      font-weight: 600;
      font-size: 18px;
      letter-spacing: -0.4px;
      margin-left: 4px;
      color: var(--gray-tx);
    }
body.page-home .offre-card-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      border-radius: 14px;
      padding: 16px 24px;
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: 15px;
      line-height: 1;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease;
    }
body.page-home .offre-card-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 34px rgba(13,13,13,0.24);
    }
body.page-home .offre-card-btn--dark { background: var(--black); color: var(--white); }
body.page-home .offre-card-btn--light { background: var(--white); color: var(--black); }
body.page-home .offre-card-divider {
      height: 1px;
      border: none;
      margin: 32px 0 26px;
    }
body.page-home .offre-card--light .offre-card-divider { background: var(--border); }
body.page-home .offre-card--dark  .offre-card-divider { background: rgba(255,255,255,0.14); }
body.page-home .offre-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: auto;
    }
body.page-home .offre-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 15px;
      line-height: 1.45;
    }
body.page-home .offre-card--light .offre-list li { color: #2A2A2A; }
body.page-home .offre-card--dark  .offre-list li { color: #D8D8D8; }
body.page-home .offre-check {
      width: 21px;
      height: 21px;
      border-radius: 50%;
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      line-height: 1;
      margin-top: 1px;
    }
body.page-home .offre-card--light .offre-check {
      background: var(--blue);
      color: var(--white);
    }
body.page-home .offre-card--dark .offre-check {
      background: var(--blue);
      color: var(--black);
    }


    
    @media (max-width: 880px) {
body.page-home .offre-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
      }
}

    @media (max-width: 768px) {
body.page-home .offre-section { padding: 72px 0; }
body.page-home .offre-title { font-size: 31px; letter-spacing: -0.8px; }
body.page-home .offre-header { margin-bottom: 44px; }
body.page-home .offre-card { padding: 38px 30px 34px; }
body.page-home .offre-card-price { font-size: 36px; }
}
body.page-home .faq-section {
      background: var(--white);
      padding: 120px 0;
    }
body.page-home .faq-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 56px;
      padding: 0 24px;
    }
body.page-home .faq-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 44px;
      line-height: 1.16;
      letter-spacing: -1.2px;
      color: var(--black);
      text-wrap: balance;
    }
body.page-home .faq-title-accent {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      letter-spacing: -0.5px;
      color: var(--blue);
    }
body.page-home .faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
body.page-home .faq-card {
      background: #F5F5F5;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(10,10,10,0.04);
    }
body.page-home .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      padding: 26px 32px;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 18px;
      line-height: 1.4;
      letter-spacing: -0.3px;
      color: var(--black);
      text-wrap: pretty;
    }
body.page-home .faq-icon {
      position: relative;
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      color: var(--gray-lt);
      transition: color 0.25s ease;
    }
body.page-home .faq-icon::before, body.page-home .faq-icon-bar {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      background: currentColor;
      border-radius: 2px;
      transform: translate(-50%, -50%);
    }
body.page-home .faq-icon::before { width: 18px; height: 2px; }
body.page-home .faq-icon-bar {
      width: 2px;
      height: 18px;
      rotate: 0deg;
      transition: rotate 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
body.page-home .faq-card.is-open .faq-icon { color: var(--black); }
body.page-home .faq-card.is-open .faq-icon-bar { rotate: 90deg; }
body.page-home .faq-card:hover .faq-icon { color: var(--black); }
body.page-home .faq-a-wrap {
      overflow: hidden;
      height: 0;
      transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
body.page-home .faq-a {
      padding: 0 32px 28px;
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.7;
      color: var(--gray-tx);
      max-width: 660px;
      text-wrap: pretty;
    }


    
    @media (max-width: 768px) {
body.page-home .faq-section { padding: 72px 0; }
body.page-home .faq-title { font-size: 30px; letter-spacing: -0.8px; }
body.page-home .faq-header { margin-bottom: 40px; }
body.page-home .faq-q { padding: 22px 24px; font-size: 16px; gap: 16px; }
body.page-home .faq-a { padding: 0 24px 24px; font-size: 15px; }
}
body.page-home .cta-section {
      width: 100%;
      background: var(--gray-bg);
      padding: 140px 24px;
      display: flex;
      justify-content: center;
    }
body.page-home .cta-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 820px;
      width: 100%;
      gap: 28px;
    }
body.page-home .cta-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 46px;
      line-height: 1.18;
      letter-spacing: -1.4px;
      color: var(--black);
      text-wrap: balance;
    }
body.page-home .cta-title-line { display: block; }
body.page-home .cta-title-accent {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      font-size: 0.92em;
      letter-spacing: -0.5px;
      color: var(--blue);
    }
body.page-home .cta-subtext {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 18px;
      line-height: 1.65;
      color: var(--gray-tx);
      max-width: 560px;
      text-wrap: pretty;
    }
body.page-home .cta-subtext span { display: block; }
body.page-home .cta-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-top: 12px;
      flex-wrap: nowrap;
    }
body.page-home .cta-pill {
      position: relative;
      display: inline-flex;
      align-items: center;
      height: 66px;
      border-radius: 999px;
      text-decoration: none;
      cursor: pointer;
      border: none;
      overflow: hidden;
      transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, background 0.2s ease;
    }
body.page-home .cta-pill:hover { transform: translateY(-2px); }
body.page-home .cta-pill > * { position: relative; z-index: 1; }
body.page-home .cta-pill::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 180px 180px;
      pointer-events: none;
    }
body.page-home .cta-pill--primary {
      background: var(--black);
      padding: 8px 38px 8px 8px;
      gap: 16px;
      box-shadow: 0 12px 34px rgba(13,13,13,0.20);
    }
body.page-home .cta-pill--primary:hover { box-shadow: 0 18px 44px rgba(13,13,13,0.28); }
body.page-home .cta-pill--primary::before { opacity: 0.10; mix-blend-mode: screen; }
body.page-home .cta-pill-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--blue);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 14px rgba(253,148,124,0.50);
    }
body.page-home .cta-pill-icon svg { width: 19px; height: 19px; display: block; }
body.page-home .cta-pill-label {
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: 15px;
      line-height: 1;
      letter-spacing: -0.2px;
      text-transform: none;
      white-space: nowrap;
    }
body.page-home .cta-pill--primary .cta-pill-label { color: var(--white); }
body.page-home .cta-pill--secondary {
      background: var(--white);
      border: 1.5px solid var(--border);
      padding: 0 40px;
    }
body.page-home .cta-pill--secondary:hover {
      background: var(--gray-bg);
      border-color: #D2D2D2;
      box-shadow: 0 14px 34px rgba(13,13,13,0.12);
    }
body.page-home .cta-pill--secondary .cta-pill-label { color: var(--black); }
body.page-home .cta-pill--secondary::before { opacity: 0.05; mix-blend-mode: multiply; }
body.page-home .cta-footnote {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-style: italic;
      font-size: 15px;
      line-height: 1.4;
      color: var(--gray-lt);
      margin-top: 6px;
    }

    @media (max-width: 768px) {
body.page-home .cta-section { padding: 90px 22px; }
body.page-home .cta-title { font-size: 32px; letter-spacing: -0.9px; }
body.page-home .cta-subtext { font-size: 16px; }
body.page-home .cta-buttons { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; }
body.page-home .cta-pill { width: 100%; justify-content: center; height: 62px; }
body.page-home .cta-pill--primary { padding-right: 24px; }
}

    @media (max-width: 420px) {
body.page-home .cta-title { font-size: 28px; }
}
body.page-home .site-footer {
      width: 100%;
      background: #0D0D0D;
      color: var(--white);
    }
body.page-home .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 88px 24px 0;
    }
body.page-home .footer-top {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr;
      gap: 56px;
      padding-bottom: 64px;
    }
body.page-home .footer-col {
      display: flex;
      flex-direction: column;
    }
body.page-home .footer-logo {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 24px;
      line-height: 1;
      letter-spacing: -0.4px;
      color: var(--white);
    }
body.page-home .footer-logo .footer-logo-amp { color: var(--blue); }
body.page-home .footer-brand-text {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 1.65;
      color: #9A9A9A;
      max-width: 320px;
      margin-top: 18px;
      text-wrap: pretty;
    }
body.page-home .footer-social {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 26px;
    }
body.page-home .footer-social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.16);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #9A9A9A;
      text-decoration: none;
      transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }
body.page-home .footer-social-link svg { width: 17px; height: 17px; display: block; }
body.page-home .footer-social-link:hover {
      color: var(--black);
      background: var(--white);
      border-color: var(--white);
    }
body.page-home .footer-col-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1;
      margin-bottom: 22px;
    }
body.page-home .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 13px;
    }
body.page-home .footer-link {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 15px;
      line-height: 1.3;
      color: #9A9A9A;
      text-decoration: none;
      transition: color 0.2s ease;
      width: fit-content;
    }
body.page-home .footer-link:hover { color: var(--white); }
body.page-home .footer-contact-mail {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 15px;
      line-height: 1.3;
      color: #9A9A9A;
      text-decoration: none;
      transition: color 0.2s ease;
      width: fit-content;
      margin-top: 26px;
    }
body.page-home .footer-contact-mail:hover { color: var(--white); }
body.page-home .footer-contact-avail {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 12.5px;
      line-height: 1.4;
      color: #6B6B6B;
      margin-top: 10px;
    }
body.page-home .footer-contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      align-self: flex-start;
      background: var(--white);
      color: var(--black);
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: 13.5px;
      line-height: 1;
      letter-spacing: -0.2px;
      text-decoration: none;
      padding: 13px 20px;
      border-radius: 50px;
      margin-top: 24px;
      white-space: nowrap;
      transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease;
    }
body.page-home .footer-contact-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(13,13,13,0.24); }
body.page-home .footer-divider {
      height: 1px;
      border: none;
      background: #333333;
    }
body.page-home .footer-bottom {
      display: flex;
      align-items: center;
      padding: 28px 0 34px;
    }
body.page-home .footer-copy {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 13px;
      line-height: 1.4;
      color: #6B6B6B;
    }


    
    @media (max-width: 992px) {
body.page-home .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 48px 40px;
      }
body.page-home .footer-col--brand { grid-column: 1 / -1; }
}

    @media (max-width: 768px) {
body.page-home .footer-inner { padding-top: 64px; }
body.page-home .footer-top {
        grid-template-columns: 1fr;
        gap: 44px;
        padding-bottom: 48px;
      }
}
body.page-home .section-cta {
      display: flex;
      justify-content: center;
      margin: 60px 0 0;
      padding: 0 24px;
    }
body.page-home .section-cta-pill {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: #0D0D0D;
      color: var(--white);
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: 15px;
      line-height: 1;
      letter-spacing: -0.2px;
      text-decoration: none;
      padding: 16px 32px;
      border-radius: 50px;
      box-shadow: 0 8px 24px rgba(13,13,13,0.16);
      transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease;
      white-space: nowrap;
    }
body.page-home .section-cta-pill:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 34px rgba(13,13,13,0.24);
    }
body.page-home .section-cta-pill .section-cta-arrow {
      transition: transform 0.25s ease;
    }
body.page-home .section-cta-pill:hover .section-cta-arrow { transform: translateX(3px); }

    @media (max-width: 768px) {
body.page-home .section-cta { padding: 0 20px; }
body.page-home .section-cta-pill { font-size: 14px; padding: 14px 26px; white-space: normal; text-align: center; }
}
body.page-home .back-to-top {
      position: fixed;
      right: 28px;
      bottom: 28px;
      z-index: 1500;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      background: var(--black);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 30px rgba(10,10,10,0.28);
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity 0.3s ease, transform 0.3s ease,
                  visibility 0.3s ease, background 0.2s ease;
    }
body.page-home .back-to-top.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
body.page-home .back-to-top:hover { transform: translateY(-3px); }
body.page-home .back-to-top.over-footer {
      background: var(--blue);
      color: var(--black);
      box-shadow: 0 10px 30px rgba(253,148,124,0.35);
    }
body.page-home .back-to-top svg { width: 20px; height: 20px; display: block; }

    @media (max-width: 768px) {
body.page-home .back-to-top { right: 18px; bottom: 18px; width: 46px; height: 46px; }
body.page-home .back-to-top svg { width: 18px; height: 18px; }
}

/* methode.html */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body.page-methode {
      --black:   #0A0A0A;
      --white:   #FFFFFF;
      --coral:   #FD947C;
      --gray-bg: #F5F5F5;
      --gray-tx: #6B6B6B;
      --gray-lt: #9A9A9A;
      --border:  #E0E0E0;
    }
html { scroll-behavior: smooth; }
body.page-methode {
      font-family: 'Outfit', sans-serif;
      background: var(--white);
      color: var(--black);
      -webkit-font-smoothing: antialiased;
    }
body.page-methode .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
body.page-methode .svc-label {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 500;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray-lt);
      line-height: 1;
    }
body.page-methode .em {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      color: var(--coral);
      letter-spacing: -0.5px;
    }
body.page-methode .svc-hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 96px 0 76px;
      gap: 24px;
    }
body.page-methode .svc-hero h1 {
      font-weight: 700;
      font-size: 56px;
      line-height: 1.1;
      letter-spacing: -1.9px;
      color: var(--black);
      max-width: 880px;
      text-wrap: balance;
    }
body.page-methode .svc-hero p {
      font-weight: 400;
      font-size: 18px;
      line-height: 1.7;
      color: var(--gray-tx);
      max-width: 640px;
      text-wrap: pretty;
    }
body.page-methode .sec-head {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
      margin-bottom: 52px;
    }
body.page-methode .sec-head h2 {
      font-weight: 700;
      font-size: 40px;
      line-height: 1.15;
      letter-spacing: -1.2px;
      color: var(--black);
      max-width: 720px;
      text-wrap: balance;
    }
body.page-methode .cta-center {
      display: flex;
      justify-content: center;
      margin-top: 56px;
    }
body.page-methode .cta-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--black);
      color: var(--white);
      font-weight: 700;
      font-size: 15px;
      line-height: 1;
      letter-spacing: -0.2px;
      text-decoration: none;
      padding: 17px 34px;
      border-radius: 50px;
      transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease;
    }
body.page-methode .cta-pill:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    }
body.page-methode .cta-pill .arr { transition: transform 0.25s ease; }
body.page-methode .cta-pill:hover .arr { transform: translateX(4px); }
body.page-methode .method-scroll {
      position: relative;
      height: 400vh;            
      background: var(--black);
    }
body.page-methode .method-scroll .sticky-stage {
      position: sticky;
      top: 0;
      height: 100vh;
      overflow: hidden;
    }
body.page-methode .method-scroll .cards { position: absolute; inset: 0; }
body.page-methode .method-scroll .card {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      padding: 120px clamp(28px, 7vw, 110px);
      opacity: 0;
      visibility: hidden;
      transform: translateY(26px);
      transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.2,0.7,0.2,1), visibility 0s linear 0.6s;
    }
body.page-methode .method-scroll .card.is-active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.2,0.7,0.2,1), visibility 0s;
    }
body.page-methode .method-scroll .card-inner { width: 100%; max-width: 1020px; margin: 0 auto; }
body.page-methode .method-scroll .card-num {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-style: italic; font-weight: 700;
      font-size: 72px; line-height: 1; letter-spacing: -1px;
      color: var(--coral); margin-bottom: 14px;
    }
body.page-methode .method-scroll .card-tag {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 500; font-size: 13px; letter-spacing: 3px;
      text-transform: uppercase; color: var(--gray-lt); margin-bottom: 18px;
    }
body.page-methode .method-scroll .card-title {
      font-weight: 700; font-size: clamp(34px, 5vw, 56px);
      line-height: 1.08; letter-spacing: -1.8px;
      color: var(--white); max-width: 16ch; text-wrap: balance;
    }
body.page-methode .method-scroll .card-title .em {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700; font-style: italic; letter-spacing: -0.5px;
      color: var(--coral); display: block; font-size: 0.62em; margin-top: 14px;
    }
body.page-methode .method-scroll .card-cols {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 56px; margin-top: 50px; max-width: 880px;
    }
body.page-methode .method-scroll .col-label {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 500; font-size: 11.5px; letter-spacing: 2.5px;
      text-transform: uppercase; margin-bottom: 16px;
      padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.12);
    }
body.page-methode .method-scroll .col--do .col-label { color: var(--gray-lt); }
body.page-methode .method-scroll .col--get .col-label { color: var(--coral); }
body.page-methode .method-scroll .col-text {
      font-weight: 400; font-size: 16.5px; line-height: 1.7; text-wrap: pretty;
    }
body.page-methode .method-scroll .col--do .col-text { color: var(--white); }
body.page-methode .method-scroll .col--get .col-text { color: var(--gray-lt); }
body.page-methode .method-scroll .dots {
      position: absolute; top: 50%; right: clamp(20px, 3.5vw, 48px);
      transform: translateY(-50%); z-index: 6;
      display: flex; flex-direction: column; align-items: center; gap: 18px;
    }
body.page-methode .method-scroll .dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: rgba(255,255,255,0.22); border: none; padding: 0;
      cursor: pointer; position: relative;
      transition: background 0.25s ease, height 0.25s ease;
    }
body.page-methode .method-scroll .dot.is-active { background: var(--coral); height: 28px; border-radius: 6px; }
body.page-methode .method-scroll .dot-label {
      position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
      font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1.5px;
      color: var(--gray-lt); opacity: 0; pointer-events: none; white-space: nowrap;
      transition: opacity 0.2s ease;
    }
body.page-methode .method-scroll .dot:hover .dot-label { opacity: 1; }
body.page-methode .method-scroll .dot.is-active .dot-label { opacity: 1; color: var(--white); }

    @media (min-width: 821px) and (max-height: 780px) {
body.page-methode .method-scroll .card { padding: 104px clamp(28px, 7vw, 110px); }
body.page-methode .method-scroll .card-num { font-size: 58px; margin-bottom: 10px; }
body.page-methode .method-scroll .card-title { font-size: clamp(30px, 4vw, 46px); }
body.page-methode .method-scroll .card-cols { margin-top: 36px; gap: 44px; }
}

    @media (max-width: 820px) {
body.page-methode .method-scroll { height: auto; }
body.page-methode .method-scroll .sticky-stage { position: static; height: auto; overflow: visible; }
body.page-methode .method-scroll .cards { position: static; }
body.page-methode .method-scroll .card {
        position: static; opacity: 1; visibility: visible; transform: none; transition: none;
        padding: 60px 24px; border-top: 1px solid rgba(255,255,255,0.08); min-height: auto;
      }
body.page-methode .method-scroll .card:first-of-type { border-top: none; padding-top: 44px; }
body.page-methode .method-scroll .card-num { font-size: 60px; }
body.page-methode .method-scroll .card-cols { grid-template-columns: 1fr; gap: 34px; margin-top: 38px; }
body.page-methode .method-scroll .dots { display: none; }
}
body.page-methode .tech-section {
      width: 100%;
      background: var(--gray-bg);
      padding: 110px 0;
    }
body.page-methode .tech-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }
body.page-methode .tech-left .svc-label { color: var(--gray-tx); display: block; margin-bottom: 22px; }
body.page-methode .tech-left h2 {
      font-weight: 700;
      font-size: 38px;
      line-height: 1.18;
      letter-spacing: -1.3px;
      color: var(--black);
      text-wrap: balance;
    }
body.page-methode .tech-left h2 .em { color: var(--coral); }
body.page-methode .tech-right > p {
      font-weight: 400;
      font-size: 16px;
      line-height: 1.75;
      color: var(--gray-tx);
      text-wrap: pretty;
    }
body.page-methode .tech-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 34px;
    }
body.page-methode .tech-metric {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 26px 22px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
body.page-methode .tech-metric-val {
      font-weight: 700;
      font-size: 36px;
      line-height: 1;
      letter-spacing: -1.5px;
      color: var(--coral);
    }
body.page-methode .tech-metric-label {
      font-weight: 400;
      font-size: 13.5px;
      line-height: 1.4;
      color: var(--black);
      text-wrap: pretty;
    }
body.page-methode .testimonials-section {
      background: var(--white);
      padding: 110px 0;
    }
body.page-methode .testimonials-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 56px;
    }
body.page-methode .testimonials-title {
      font-weight: 700;
      font-size: 44px;
      line-height: 1.16;
      letter-spacing: -1.2px;
      color: var(--black);
      text-wrap: balance;
    }
body.page-methode .testimonials-title .em {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      color: var(--coral);
      letter-spacing: -0.5px;
    }
body.page-methode .testimonials-carousel {
      width: 70%;
      max-width: 860px;
      margin: 0 auto;
    }
body.page-methode .testimonials-panel {
      background: #F5F5F5;
      border-radius: 24px;
      box-shadow: 0 10px 40px rgba(10,10,10,0.05);
      padding: 30px 56px 48px;
    }
body.page-methode .testimonials-tabs {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      padding-bottom: 38px;
      border-bottom: 1px solid #E7E7E7;
    }
body.page-methode .testimonials-tab {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 12.5px;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: var(--gray-tx);
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px 2px;
      position: relative;
      transition: color 0.2s ease;
    }
body.page-methode .testimonials-tab::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -2px;
      height: 2px;
      background: var(--coral);
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform 0.25s ease;
    }
body.page-methode .testimonials-tab:hover { color: var(--black); }
body.page-methode .testimonials-tab.is-active { color: var(--black); }
body.page-methode .testimonials-tab.is-active::after { transform: scaleX(1); }
body.page-methode .testimonials-tab-sep {
      color: #CFCFCF;
      font-size: 14px;
      user-select: none;
    }
body.page-methode .testimonials-stage {
      position: relative;
      padding: 44px 0 8px;
    }
body.page-methode .testimonials-slide {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
body.page-methode .testimonials-slide.is-active {
      display: flex;
      animation: testiFade 0.45s ease both;
    }
body.page-methode .testimonials-mark {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-size: 88px;
      line-height: 0.5;
      color: var(--coral);
      height: 46px;
      margin-bottom: 12px;
    }
body.page-methode .testimonials-quote {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-style: italic;
      font-size: 25px;
      line-height: 1.5;
      letter-spacing: -0.3px;
      color: #2A2A2A;
      max-width: 620px;
      text-wrap: pretty;
      margin-bottom: 34px;
    }
body.page-methode .testimonials-author {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
body.page-methode .testimonials-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #FFFFFF;
      border: 1px solid #ECECEA;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 17px;
      letter-spacing: 0.5px;
      color: #6B6B6B;
    }
body.page-methode .testimonials-avatar img {
      width: 74%;
      height: 74%;
      object-fit: contain;
    }
body.page-methode .testimonials-name {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 16px;
      line-height: 1.2;
      color: var(--black);
    }
body.page-methode .testimonials-role {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 13.5px;
      line-height: 1.3;
      color: var(--gray-tx);
      margin-top: 4px;
    }
body.page-methode .testimonials-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 38px;
    }
body.page-methode .testimonials-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #D2D2D2;
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background 0.2s ease, width 0.2s ease;
    }
body.page-methode .testimonials-dot.is-active {
      background: var(--coral);
      width: 22px;
      border-radius: 4px;
    }
body.page-methode .testimonials-arrows {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-top: 30px;
    }
body.page-methode .testimonials-arrow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--white);
      box-shadow: 0 6px 20px rgba(10,10,10,0.10);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      color: var(--black);
      line-height: 1;
      transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }
body.page-methode .testimonials-arrow:hover {
      color: var(--coral);
      transform: translateY(-2px);
      box-shadow: 0 10px 26px rgba(10,10,10,0.13);
    }
body.page-methode .final-cta {
      width: 100%;
      background: var(--black);
      padding: 130px 24px;
    }
body.page-methode .final-cta-inner {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 26px;
    }
body.page-methode .final-cta h2 {
      font-weight: 700;
      font-size: 46px;
      line-height: 1.18;
      letter-spacing: -1.4px;
      color: var(--white);
      text-wrap: balance;
    }
body.page-methode .final-cta h2 .line { display: block; }
body.page-methode .final-cta-sub {
      font-weight: 400;
      font-size: 18px;
      line-height: 1.65;
      color: var(--gray-lt);
      max-width: 540px;
      text-wrap: pretty;
    }
body.page-methode .final-cta-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 10px;
      flex-wrap: wrap;
    }
body.page-methode .fc-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-weight: 700;
      font-size: 15px;
      line-height: 1;
      letter-spacing: -0.2px;
      text-decoration: none;
      padding: 17px 32px;
      border-radius: 50px;
      transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
    }
body.page-methode .fc-btn--primary { background: var(--white); color: var(--black); }
body.page-methode .fc-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.30); }
body.page-methode .fc-btn--primary .arr { transition: transform 0.25s ease; }
body.page-methode .fc-btn--primary:hover .arr { transform: translateX(4px); }
body.page-methode .fc-btn--secondary { background: transparent; color: var(--white); border: 1px solid #333333; }
body.page-methode .fc-btn--secondary:hover { border-color: #555555; background: rgba(255,255,255,0.04); }
body.page-methode .footer-bottom { justify-content: space-between; gap: 16px; flex-wrap: wrap; }
body.page-methode .footer-made {
      font-weight: 400;
      font-size: 13px;
      line-height: 1.4;
      color: var(--gray-lt);
    }


    
    @media (max-width: 900px) {
body.page-methode .phase-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 32px;
      }
body.page-methode .phase-aside { flex-direction: row; align-items: center; gap: 20px; padding-top: 0; }
body.page-methode .phase-num { font-size: 46px; letter-spacing: -2px; }
body.page-methode .tech-grid { grid-template-columns: 1fr; gap: 40px; }
}

    @media (max-width: 992px) {
body.page-methode .testimonials-carousel { width: 86%; }
}

    @media (max-width: 768px) {
body.page-methode .svc-hero { padding: 64px 0 52px; }
body.page-methode .svc-hero h1 { font-size: 38px; letter-spacing: -1.2px; }
body.page-methode .svc-hero p { font-size: 16px; }
body.page-methode .sec-head h2 { font-size: 30px; letter-spacing: -0.8px; }
body.page-methode .tech-section { padding: 80px 0; }
body.page-methode .tech-left h2 { font-size: 29px; letter-spacing: -0.8px; }
body.page-methode .testimonials-section { padding: 72px 0; }
body.page-methode .testimonials-title { font-size: 31px; letter-spacing: -0.8px; }
body.page-methode .testimonials-header { margin-bottom: 40px; }
body.page-methode .testimonials-carousel { width: 100%; }
body.page-methode .testimonials-panel { padding: 26px 26px 38px; }
body.page-methode .testimonials-tabs { gap: 12px; flex-wrap: wrap; padding-bottom: 28px; }
body.page-methode .testimonials-tab { font-size: 11px; letter-spacing: 1px; }
body.page-methode .testimonials-quote { font-size: 19px; }
body.page-methode .testimonials-stage { padding: 34px 0 4px; }
body.page-methode .final-cta { padding: 84px 22px; }
body.page-methode .final-cta h2 { font-size: 30px; letter-spacing: -0.8px; }
body.page-methode .final-cta-sub { font-size: 16px; }
body.page-methode .final-cta-buttons { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; }
body.page-methode .fc-btn { justify-content: center; }
}

    @media (max-width: 480px) {
body.page-methode .tech-metrics { grid-template-columns: 1fr; }
body.page-methode .tech-metric { flex-direction: row; align-items: baseline; gap: 12px; }
}

/* services.html */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body.page-services {
      --black:   #0A0A0A;
      --white:   #FFFFFF;
      --coral:   #FD947C;
      --gray-bg: #F5F5F5;
      --gray-tx: #6B6B6B;
      --gray-lt: #9A9A9A;
      --border:  #E0E0E0;
    }
html { scroll-behavior: smooth; }
body.page-services {
      font-family: 'Outfit', sans-serif;
      background: var(--white);
      color: var(--black);
      -webkit-font-smoothing: antialiased;
    }
body.page-services .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
body.page-services .svc-label {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 500;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray-lt);
      line-height: 1;
    }
body.page-services .em {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      color: var(--coral);
      letter-spacing: -0.5px;
    }
body.page-services .svc-hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 96px 0 76px;
      gap: 24px;
    }
body.page-services .svc-hero h1 {
      font-weight: 700;
      font-size: 56px;
      line-height: 1.1;
      letter-spacing: -1.9px;
      color: var(--black);
      max-width: 880px;
      text-wrap: balance;
    }
body.page-services .svc-hero p {
      font-weight: 400;
      font-size: 18px;
      line-height: 1.7;
      color: var(--gray-tx);
      max-width: 600px;
      text-wrap: pretty;
    }
body.page-services .sec-head {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
      margin-bottom: 52px;
    }
body.page-services .sec-head h2 {
      font-weight: 700;
      font-size: 40px;
      line-height: 1.15;
      letter-spacing: -1.2px;
      color: var(--black);
      max-width: 720px;
      text-wrap: balance;
    }
body.page-services .leviers-section { padding: 56px 0 96px; }
body.page-services .leviers-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
body.page-services .lev-col {
      border-radius: 20px;
      padding: 44px 42px 40px;
    }
body.page-services .lev-col--dark { background: var(--black); }
body.page-services .lev-col--light { background: var(--gray-bg); }
body.page-services .lev-col-head {
      font-weight: 700;
      font-size: 23px;
      letter-spacing: -0.5px;
      line-height: 1.2;
      margin-bottom: 34px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(255,255,255,0.10);
    }
body.page-services .lev-col--dark .lev-col-head { color: var(--white); }
body.page-services .lev-col--light .lev-col-head {
      color: var(--black);
      border-bottom-color: var(--border);
    }
body.page-services .lev-items {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
body.page-services .lev-item {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 18px;
      align-items: start;
    }
body.page-services .lev-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
body.page-services .lev-col--dark .lev-icon {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
    }
body.page-services .lev-col--light .lev-icon {
      background: var(--white);
      border: 1px solid var(--border);
    }
body.page-services .lev-icon svg { width: 21px; height: 21px; display: block; }
body.page-services .lev-col--dark .lev-icon svg { stroke: var(--white); }
body.page-services .lev-col--light .lev-icon svg { stroke: var(--black); }
body.page-services .lev-item-title {
      font-weight: 700;
      font-size: 17px;
      letter-spacing: -0.3px;
      line-height: 1.3;
      margin-bottom: 6px;
    }
body.page-services .lev-col--dark .lev-item-title { color: var(--white); }
body.page-services .lev-col--light .lev-item-title { color: var(--black); }
body.page-services .lev-item-text {
      font-weight: 400;
      font-size: 14.5px;
      line-height: 1.6;
      text-wrap: pretty;
    }
body.page-services .lev-col--dark .lev-item-text { color: var(--gray-lt); }
body.page-services .lev-col--light .lev-item-text { color: var(--gray-tx); }
body.page-services .cta-center {
      display: flex;
      justify-content: center;
      margin-top: 52px;
    }
body.page-services .cta-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--black);
      color: var(--white);
      font-weight: 700;
      font-size: 15px;
      line-height: 1;
      letter-spacing: -0.2px;
      text-decoration: none;
      padding: 17px 34px;
      border-radius: 50px;
      transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease;
    }
body.page-services .cta-pill:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    }
body.page-services .cta-pill .arr { transition: transform 0.25s ease; }
body.page-services .cta-pill:hover .arr { transform: translateX(4px); }
body.page-services .problems-section {
      background: var(--gray-bg);
      padding: 100px 0;
    }
body.page-services .problems-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
body.page-services .problem-card {
      background: var(--white);
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(10,10,10,0.04);
      padding: 40px 40px 42px;
      display: flex;
      flex-direction: column;
    }
body.page-services .problem-num {
      font-weight: 700;
      font-size: 46px;
      line-height: 1;
      letter-spacing: -2px;
      color: var(--coral);
      margin-bottom: 22px;
    }
body.page-services .problem-title {
      font-weight: 700;
      font-size: 21px;
      letter-spacing: -0.5px;
      line-height: 1.3;
      color: var(--black);
      margin-bottom: 14px;
      text-wrap: balance;
    }
body.page-services .problem-text {
      font-weight: 400;
      font-size: 15.5px;
      line-height: 1.7;
      color: var(--gray-tx);
      text-wrap: pretty;
    }
body.page-services .faq-section { padding: 100px 0; }
body.page-services .faq-list {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
body.page-services .faq-card {
      background: var(--gray-bg);
      border-radius: 16px;
      overflow: hidden;
    }
body.page-services .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      padding: 26px 30px;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: -0.3px;
      line-height: 1.35;
      color: var(--black);
    }
body.page-services .faq-plus {
      position: relative;
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: var(--gray-lt);
      transition: color 0.2s ease;
    }
body.page-services .faq-plus::before, body.page-services .faq-plus::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      background: currentColor;
      border-radius: 2px;
      transform: translate(-50%,-50%);
      transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
    }
body.page-services .faq-plus::before { width: 16px; height: 2px; }
body.page-services .faq-plus::after { width: 2px; height: 16px; }
body.page-services .faq-card.is-open .faq-q { color: var(--black); }
body.page-services .faq-card.is-open .faq-plus { color: var(--coral); }
body.page-services .faq-card.is-open .faq-plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
body.page-services .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
    }
body.page-services .faq-a-inner {
      padding: 0 30px 28px;
      font-weight: 400;
      font-size: 15.5px;
      line-height: 1.7;
      color: var(--gray-tx);
      max-width: 660px;
      text-wrap: pretty;
    }
body.page-services .final-cta {
      width: 100%;
      background: var(--black);
      padding: 130px 24px;
    }
body.page-services .final-cta-inner {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 26px;
    }
body.page-services .final-cta h2 {
      font-weight: 700;
      font-size: 46px;
      line-height: 1.18;
      letter-spacing: -1.4px;
      color: var(--white);
      text-wrap: balance;
    }
body.page-services .final-cta h2 .line { display: block; }
body.page-services .final-cta-sub {
      font-weight: 400;
      font-size: 18px;
      line-height: 1.65;
      color: var(--gray-lt);
      max-width: 540px;
      text-wrap: pretty;
    }
body.page-services .final-cta-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 10px;
      flex-wrap: wrap;
    }
body.page-services .fc-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-weight: 700;
      font-size: 15px;
      line-height: 1;
      letter-spacing: -0.2px;
      text-decoration: none;
      padding: 17px 32px;
      border-radius: 50px;
      transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
    }
body.page-services .fc-btn--primary {
      background: var(--white);
      color: var(--black);
    }
body.page-services .fc-btn--primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.30);
    }
body.page-services .fc-btn--primary .arr { transition: transform 0.25s ease; }
body.page-services .fc-btn--primary:hover .arr { transform: translateX(4px); }
body.page-services .fc-btn--secondary {
      background: transparent;
      color: var(--white);
      border: 1px solid #333333;
    }
body.page-services .fc-btn--secondary:hover {
      border-color: #555555;
      background: rgba(255,255,255,0.04);
    }


    
    @media (max-width: 900px) {
body.page-services .leviers-grid { grid-template-columns: 1fr; }
body.page-services .problems-grid { grid-template-columns: 1fr; }
}

    @media (max-width: 768px) {
body.page-services .svc-hero { padding: 64px 0 52px; }
body.page-services .svc-hero h1 { font-size: 38px; letter-spacing: -1.2px; }
body.page-services .svc-hero p { font-size: 16px; }
body.page-services .sec-head h2 { font-size: 30px; letter-spacing: -0.8px; }
body.page-services .leviers-section { padding: 32px 0 72px; }
body.page-services .lev-col { padding: 36px 28px; }
body.page-services .problems-section { padding: 72px 0; }
body.page-services .problem-card { padding: 32px 28px; }
body.page-services .faq-section { padding: 72px 0; }
body.page-services .faq-q { font-size: 16px; padding: 22px 24px; }
body.page-services .faq-a-inner { padding: 0 24px 24px; }
body.page-services .final-cta { padding: 84px 22px; }
body.page-services .final-cta h2 { font-size: 30px; letter-spacing: -0.8px; }
body.page-services .final-cta-sub { font-size: 16px; }
body.page-services .final-cta-buttons { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; }
body.page-services .fc-btn { justify-content: center; }
}

/* offre.html */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body.page-offre {
      --black:   #0A0A0A;
      --white:   #FFFFFF;
      --coral:   #FD947C;
      --blue:    #FD947C;
      --gray-bg: #F5F5F5;
      --gray-tx: #6B6B6B;
      --gray-lt: #9A9A9A;
      --border:  #E0E0E0;
    }
html { scroll-behavior: smooth; }
body.page-offre {
      font-family: 'Outfit', sans-serif;
      background: var(--white);
      color: var(--black);
      -webkit-font-smoothing: antialiased;
    }
body.page-offre .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
body.page-offre .svc-label {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 500;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray-lt);
      line-height: 1;
    }
body.page-offre .em {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      color: var(--coral);
      letter-spacing: -0.5px;
    }
body.page-offre .svc-hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 96px 0 76px;
      gap: 24px;
    }
body.page-offre .svc-hero h1 {
      font-weight: 700;
      font-size: 56px;
      line-height: 1.1;
      letter-spacing: -1.9px;
      color: var(--black);
      max-width: 880px;
      text-wrap: balance;
    }
body.page-offre .svc-hero p {
      font-weight: 400;
      font-size: 18px;
      line-height: 1.7;
      color: var(--gray-tx);
      max-width: 600px;
      text-wrap: pretty;
    }
body.page-offre .offre-section {
      background: var(--white);
      padding: 40px 0 120px;
    }
body.page-offre .offre-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 18px;
      max-width: 760px;
      margin: 0 auto 64px;
    }
body.page-offre .offre-label {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--blue);
      line-height: 1;
    }
body.page-offre .offre-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 44px;
      line-height: 1.16;
      letter-spacing: -1.2px;
      color: var(--black);
      text-wrap: balance;
    }
body.page-offre .offre-title .em {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      color: var(--blue);
      letter-spacing: -0.5px;
    }
body.page-offre .offre-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 920px;
      margin: 0 auto;
      align-items: stretch;
    }
body.page-offre .offre-card {
      border-radius: 20px;
      padding: 44px 40px 40px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 10px 40px rgba(10,10,10,0.06);
    }
body.page-offre .offre-card--light {
      background: var(--white);
      border: 1px solid var(--border);
    }
body.page-offre .offre-card--dark {
      background: var(--black);
      border: 1px solid var(--black);
    }
body.page-offre .offre-card-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 27px;
      line-height: 1.2;
      letter-spacing: -0.6px;
      margin-bottom: 8px;
    }
body.page-offre .offre-card--light .offre-card-title { color: var(--black); }
body.page-offre .offre-card--dark  .offre-card-title { color: var(--white); }
body.page-offre .offre-card-sub {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 15.5px;
      line-height: 1.55;
      margin-bottom: 28px;
    }
body.page-offre .offre-card--light .offre-card-sub { color: var(--gray-tx); }
body.page-offre .offre-card--dark  .offre-card-sub { color: #A9A9A9; }
body.page-offre .offre-card-price {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 40px;
      line-height: 1;
      letter-spacing: -1.4px;
      margin-bottom: 28px;
    }
body.page-offre .offre-card--light .offre-card-price { color: var(--black); }
body.page-offre .offre-card--dark  .offre-card-price { color: var(--white); }
body.page-offre .offre-card-price-unit {
      font-weight: 600;
      font-size: 18px;
      letter-spacing: -0.4px;
      margin-left: 4px;
      color: var(--gray-tx);
    }
body.page-offre .offre-card-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      border-radius: 14px;
      padding: 16px 24px;
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: 15px;
      line-height: 1;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease;
    }
body.page-offre .offre-card-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 34px rgba(13,13,13,0.24);
    }
body.page-offre .offre-card-btn--dark { background: var(--black); color: var(--white); }
body.page-offre .offre-card-btn--light { background: var(--white); color: var(--black); }
body.page-offre .offre-card-divider {
      height: 1px;
      border: none;
      margin: 32px 0 26px;
    }
body.page-offre .offre-card--light .offre-card-divider { background: var(--border); }
body.page-offre .offre-card--dark  .offre-card-divider { background: rgba(255,255,255,0.14); }
body.page-offre .offre-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: auto;
    }
body.page-offre .offre-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 15px;
      line-height: 1.45;
    }
body.page-offre .offre-card--light .offre-list li { color: #2A2A2A; }
body.page-offre .offre-card--dark  .offre-list li { color: #D8D8D8; }
body.page-offre .offre-check {
      width: 21px;
      height: 21px;
      border-radius: 50%;
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      line-height: 1;
      margin-top: 1px;
    }
body.page-offre .offre-card--light .offre-check {
      background: var(--blue);
      color: var(--white);
    }
body.page-offre .offre-card--dark .offre-check {
      background: var(--blue);
      color: var(--black);
    }


    
    @media (max-width: 880px) {
body.page-offre .offre-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
      }
}

    @media (max-width: 768px) {
body.page-offre .offre-section { padding: 16px 0 72px; }
body.page-offre .offre-title { font-size: 31px; letter-spacing: -0.8px; }
body.page-offre .offre-header { margin-bottom: 44px; }
body.page-offre .offre-card { padding: 38px 30px 34px; }
body.page-offre .offre-card-price { font-size: 36px; }
}
body.page-offre .why-section {
      background: #F5F5F5;
      padding: 120px 0;
    }
body.page-offre .why-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 720px;
      margin: 0 auto 64px;
    }
body.page-offre .why-label {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: #9A9A9A;
      line-height: 1;
      margin-bottom: 20px;
    }
body.page-offre .why-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 44px;
      line-height: 1.12;
      letter-spacing: -1.4px;
      color: #0A0A0A;
      text-wrap: balance;
    }
body.page-offre .why-title .em {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      letter-spacing: -0.5px;
      color: #FD947C;
    }
body.page-offre .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1140px;
      margin: 0 auto;
    }
body.page-offre .why-card {
      background: #FFFFFF;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(10,10,10,0.04);
      padding: 40px 36px 38px;
      display: flex;
      flex-direction: column;
    }
body.page-offre .why-num {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 46px;
      line-height: 1;
      letter-spacing: -1.5px;
      color: #FD947C;
      margin-bottom: 22px;
    }
body.page-offre .why-card-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 21px;
      line-height: 1.28;
      letter-spacing: -0.5px;
      color: #0A0A0A;
      margin-bottom: 14px;
      text-wrap: pretty;
    }
body.page-offre .why-card-text {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 15.5px;
      line-height: 1.7;
      color: #6B6B6B;
      text-wrap: pretty;
    }


    @media (max-width: 980px) {
body.page-offre .why-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
}

    @media (max-width: 768px) {
body.page-offre .why-section { padding: 72px 0; }
body.page-offre .why-title { font-size: 32px; letter-spacing: -0.9px; }
body.page-offre .why-header { margin-bottom: 44px; }
}

    @media (max-width: 620px) {
body.page-offre .why-grid { grid-template-columns: 1fr; max-width: 440px; }
body.page-offre .why-card { padding: 34px 28px 32px; }
}
body.page-offre .faq-section {
      background: var(--white);
      padding: 120px 0;
    }
body.page-offre .faq-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 56px;
      padding: 0 24px;
    }
body.page-offre .faq-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 44px;
      line-height: 1.16;
      letter-spacing: -1.2px;
      color: var(--black);
      text-wrap: balance;
    }
body.page-offre .faq-title-accent {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      letter-spacing: -0.5px;
      color: var(--blue);
    }
body.page-offre .faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
body.page-offre .faq-card {
      background: #F5F5F5;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(10,10,10,0.04);
    }
body.page-offre .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      padding: 26px 32px;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 18px;
      line-height: 1.4;
      letter-spacing: -0.3px;
      color: var(--black);
      text-wrap: pretty;
    }
body.page-offre .faq-icon {
      position: relative;
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      color: var(--gray-lt);
      transition: color 0.25s ease;
    }
body.page-offre .faq-icon::before, body.page-offre .faq-icon-bar {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      background: currentColor;
      border-radius: 2px;
      transform: translate(-50%, -50%);
    }
body.page-offre .faq-icon::before { width: 18px; height: 2px; }
body.page-offre .faq-icon-bar {
      width: 2px;
      height: 18px;
      rotate: 0deg;
      transition: rotate 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
body.page-offre .faq-card.is-open .faq-icon { color: var(--black); }
body.page-offre .faq-card.is-open .faq-icon-bar { rotate: 90deg; }
body.page-offre .faq-card:hover .faq-icon { color: var(--black); }
body.page-offre .faq-a-wrap {
      overflow: hidden;
      height: 0;
      transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
body.page-offre .faq-a {
      padding: 0 32px 28px;
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.7;
      color: var(--gray-tx);
      max-width: 700px;
      text-wrap: pretty;
    }


    @media (max-width: 768px) {
body.page-offre .faq-section { padding: 72px 0; }
body.page-offre .faq-title { font-size: 30px; letter-spacing: -0.8px; }
body.page-offre .faq-header { margin-bottom: 40px; }
body.page-offre .faq-q { padding: 22px 24px; font-size: 16px; gap: 16px; }
body.page-offre .faq-a { padding: 0 24px 24px; font-size: 15px; }
}
body.page-offre .final-cta {
      width: 100%;
      background: var(--black);
      padding: 130px 24px;
    }
body.page-offre .final-cta-inner {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 26px;
    }
body.page-offre .final-cta h2 {
      font-weight: 700;
      font-size: 46px;
      line-height: 1.14;
      letter-spacing: -1.5px;
      color: var(--white);
      text-wrap: balance;
    }
body.page-offre .final-cta h2 .line { display: block; }
body.page-offre .final-cta h2 .em { color: var(--coral); }
body.page-offre .final-cta-sub {
      font-weight: 400;
      font-size: 18px;
      line-height: 1.7;
      color: #A9A9A9;
      max-width: 560px;
      text-wrap: pretty;
    }
body.page-offre .final-cta-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-top: 8px;
      flex-wrap: wrap;
    }
body.page-offre .fc-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 14px;
      padding: 16px 30px;
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: 15px;
      line-height: 1;
      text-decoration: none;
      transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
    }
body.page-offre .fc-btn--primary {
      background: var(--white);
      color: var(--black);
    }
body.page-offre .fc-btn--primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.30);
    }
body.page-offre .fc-btn--secondary {
      background: transparent;
      color: var(--white);
      border: 1px solid #333333;
    }
body.page-offre .fc-btn--secondary:hover {
      border-color: #555555;
      background: rgba(255,255,255,0.04);
    }


    @media (max-width: 768px) {
body.page-offre .svc-hero { padding: 64px 0 44px; }
body.page-offre .svc-hero h1 { font-size: 38px; letter-spacing: -1.2px; }
body.page-offre .svc-hero p { font-size: 16px; }
body.page-offre .final-cta { padding: 84px 22px; }
body.page-offre .final-cta h2 { font-size: 30px; letter-spacing: -0.8px; }
body.page-offre .final-cta-sub { font-size: 16px; }
body.page-offre .final-cta-buttons { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; }
body.page-offre .fc-btn { justify-content: center; }
}

/* contact.html */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body.page-contact {
      --black:   #0A0A0A;
      --white:   #FFFFFF;
      --coral:   #FD947C;
      --gray-bg: #F5F5F5;
      --gray-tx: #6B6B6B;
      --gray-lt: #9A9A9A;
      --border:  #E0E0E0;
    }
html { scroll-behavior: smooth; }
body.page-contact {
      font-family: 'Outfit', sans-serif;
      background: var(--white);
      color: var(--black);
      -webkit-font-smoothing: antialiased;
    }
body.page-contact .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
body.page-contact .contact-section {
      background: var(--white);
      padding: 100px 0 140px;
    }
body.page-contact .contact-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
body.page-contact .contact-head {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 22px;
      margin-bottom: 72px;
    }
body.page-contact .contact-label {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 500;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray-lt);
      line-height: 1;
    }
body.page-contact .contact-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 54px;
      line-height: 1.1;
      letter-spacing: -1.8px;
      color: var(--black);
      text-wrap: balance;
    }
body.page-contact .contact-title .em {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      color: var(--coral);
      letter-spacing: -0.5px;
    }
body.page-contact .contact-sub {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 18px;
      line-height: 1.65;
      color: var(--gray-tx);
      max-width: 540px;
      text-wrap: pretty;
    }
body.page-contact .contact-cols {
      display: grid;
      grid-template-columns: 1fr;
      max-width: 560px;
      margin: 0 auto;
    }
body.page-contact .reassure {
      background: var(--gray-bg);
      border-radius: 20px;
      padding: 44px 40px;
      display: flex;
      flex-direction: column;
    }
body.page-contact .reassure-block {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }
body.page-contact .reassure-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 17px;
      line-height: 1.3;
      letter-spacing: -0.3px;
      color: var(--black);
      text-wrap: balance;
    }
body.page-contact .reassure-text {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 14.5px;
      line-height: 1.6;
      color: var(--gray-tx);
      text-wrap: pretty;
    }
body.page-contact .reassure-divider {
      height: 1px;
      border: none;
      background: var(--border);
      margin: 26px 0;
    }
body.page-contact .reassure-proof {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
body.page-contact .proof-avatars {
      display: flex;
      align-items: center;
    }
body.page-contact .proof-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 13px;
      color: var(--white);
      border: 2px solid var(--gray-bg);
      flex-shrink: 0;
    }
body.page-contact .proof-avatar:not(:first-child) { margin-left: -12px; }
body.page-contact .proof-avatar.a1 { background: #0A0A0A; }
body.page-contact .proof-avatar.a2 { background: #FD947C; }
body.page-contact .proof-avatar.a3 { background: #6B6B6B; }
body.page-contact .proof-stars {
      color: var(--coral);
      font-size: 15px;
      letter-spacing: 2px;
      line-height: 1;
    }
body.page-contact .proof-text {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 1.5;
      color: var(--gray-tx);
    }
body.page-contact .proof-text b { font-weight: 600; color: var(--black); }
body.page-contact .form-card {
      background: var(--white);
      border-radius: 18px;
      box-shadow: 0 4px 16px rgba(10,10,10,0.04);
      border: 1px solid #F0F0F0;
      padding: 32px 32px 28px;
    }
body.page-contact .form-card-head { margin-bottom: 22px; }
body.page-contact .form-card-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 22px;
      line-height: 1.2;
      letter-spacing: -0.6px;
      color: var(--black);
    }
body.page-contact .form-card-sub {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 1.5;
      color: var(--gray-tx);
      margin-top: 6px;
    }
body.page-contact .form-card-required {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 12px;
      line-height: 1.4;
      color: var(--gray-lt);
      margin-top: 8px;
    }
body.page-contact .contact-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
body.page-contact .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
body.page-contact .field {
      display: flex;
      flex-direction: column;
    }
body.page-contact .field-label {
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0.1px;
      color: var(--black);
      margin-bottom: 6px;
    }
body.page-contact .req {
      color: var(--coral);
      font-weight: 500;
      margin-left: 1px;
    }
body.page-contact .field-input, body.page-contact .field-select {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: var(--black);
      background: var(--gray-bg);
      border: 1px solid transparent;
      border-radius: 12px;
      padding: 11px 14px;
      width: 100%;
      line-height: 1.4;
      transition: border-color 0.2s ease, background 0.2s ease;
    }
body.page-contact .field-input::placeholder { color: var(--gray-lt); }
body.page-contact .field-input:focus, body.page-contact .field-select:focus {
      outline: none;
      border-color: var(--coral);
      background: var(--white);
    }
body.page-contact .field-select {
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 42px;
    }
body.page-contact .field-select:invalid { color: var(--gray-lt); }
body.page-contact .form-divider {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 6px 0 2px;
    }
body.page-contact .form-divider::before, body.page-contact .form-divider::after {
      content: "";
      flex: 1;
      height: 1px;
      background: var(--border);
    }
body.page-contact .form-divider span {
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: 12.5px;
      letter-spacing: 0.6px;
      color: var(--gray-lt);
      white-space: nowrap;
    }
body.page-contact .pill-group {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
body.page-contact .pill-group input { position: absolute; opacity: 0; pointer-events: none; }
body.page-contact .pill {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: var(--gray-bg);
      border: 1px solid transparent;
      border-radius: 50px;
      padding: 10px 10px;
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: 13px;
      color: #4A4A4A;
      cursor: pointer;
      user-select: none;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }
body.page-contact .pill:hover { border-color: var(--border); }
body.page-contact .pill-group input:checked + .pill {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
    }
body.page-contact .pill-group input:focus-visible + .pill {
      outline: 2px solid var(--coral);
      outline-offset: 2px;
    }
body.page-contact .consent-check {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      cursor: pointer;
      margin-top: 2px;
    }
body.page-contact .consent-check input { position: absolute; opacity: 0; pointer-events: none; }
body.page-contact .consent-box {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      margin-top: 1px;
      border-radius: 4px;
      background: var(--gray-bg);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, border-color 0.2s ease;
    }
body.page-contact .consent-box svg {
      width: 13px;
      height: 13px;
      stroke: var(--white);
      stroke-width: 3;
      opacity: 0;
      transform: scale(0.6);
      transition: opacity 0.18s ease, transform 0.18s ease;
    }
body.page-contact .consent-check input:checked + .consent-box {
      background: var(--black);
      border-color: var(--black);
    }
body.page-contact .consent-check input:checked + .consent-box svg {
      opacity: 1;
      transform: scale(1);
    }
body.page-contact .consent-check input:focus-visible + .consent-box {
      outline: 2px solid var(--coral);
      outline-offset: 2px;
    }
body.page-contact .consent-text {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 13px;
      line-height: 1.55;
      color: var(--gray-tx);
    }
body.page-contact .consent-text a {
      color: var(--coral);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
body.page-contact .contact-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      background: var(--black);
      color: var(--white);
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 14px;
      line-height: 1;
      border: none;
      border-radius: 12px;
      padding: 15px 24px;
      margin-top: 4px;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
    }
body.page-contact .contact-submit:hover:not(:disabled) {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    }
body.page-contact .contact-submit:disabled {
      background: #C8C8C8;
      cursor: not-allowed;
      opacity: 1;
    }
body.page-contact .submit-mention {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 11.5px;
      line-height: 1.5;
      color: var(--gray-lt);
      text-align: center;
      margin-top: 14px;
    }
body.page-contact .submit-mention a {
      color: var(--gray-lt);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
body.page-contact .form-progress {
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-bottom: 22px;
    }
body.page-contact .form-progress-meta {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
    }
body.page-contact .form-progress-step {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gray-lt);
    }
body.page-contact .form-progress-name {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 13px;
      color: var(--black);
    }
body.page-contact .form-progress-bar {
      height: 4px;
      border-radius: 50px;
      background: #ECECEC;
      overflow: hidden;
    }
body.page-contact .form-progress-fill {
      height: 100%;
      background: var(--black);
      border-radius: 50px;
      width: 50%;
      transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
    }
body.page-contact .form-step {
      display: none;
      flex-direction: column;
      gap: 14px;
    }
body.page-contact .form-step.is-active {
      display: flex;
      animation: stepFade 0.35s ease both;
    }

    @keyframes stepFade {
      from { opacity: 0; transform: translateX(8px); }
      to   { opacity: 1; transform: translateX(0); }
    }
body.page-contact .step-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 4px;
    }
body.page-contact .step-actions .contact-submit { margin-top: 0; flex: 1; }
body.page-contact .btn-back {
      background: var(--gray-bg);
      color: var(--black);
      border: none;
      border-radius: 12px;
      padding: 15px 22px;
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 14px;
      line-height: 1;
      cursor: pointer;
      flex-shrink: 0;
      transition: background 0.2s ease;
    }
body.page-contact .btn-back:hover { background: #ECECEC; }
body.page-contact .testimonials-section {
      background: var(--white);
      padding: 40px 0 130px;
    }
body.page-contact .testimonials-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 52px;
    }
body.page-contact .testimonials-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 42px;
      line-height: 1.16;
      letter-spacing: -1.2px;
      color: var(--black);
      text-wrap: balance;
    }
body.page-contact .testimonials-title .em {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      color: var(--coral);
      letter-spacing: -0.5px;
    }
body.page-contact .testimonials-carousel {
      width: 100%;
      max-width: 820px;
      margin: 0 auto;
    }
body.page-contact .testimonials-panel {
      background: var(--gray-bg);
      border-radius: 24px;
      box-shadow: 0 10px 40px rgba(10,10,10,0.05);
      padding: 30px 56px 48px;
    }
body.page-contact .testimonials-tabs {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      padding-bottom: 38px;
      border-bottom: 1px solid #E7E7E7;
    }
body.page-contact .testimonials-tab {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 12.5px;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: var(--gray-tx);
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px 2px;
      position: relative;
      transition: color 0.2s ease;
    }
body.page-contact .testimonials-tab::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -2px;
      height: 2px;
      background: var(--coral);
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform 0.25s ease;
    }
body.page-contact .testimonials-tab:hover { color: var(--black); }
body.page-contact .testimonials-tab.is-active { color: var(--black); }
body.page-contact .testimonials-tab.is-active::after { transform: scaleX(1); }
body.page-contact .testimonials-tab-sep {
      color: #CFCFCF;
      font-size: 14px;
      user-select: none;
    }
body.page-contact .testimonials-stage {
      position: relative;
      padding: 44px 0 8px;
    }
body.page-contact .testimonials-slide {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
body.page-contact .testimonials-slide.is-active {
      display: flex;
      animation: testiFade 0.45s ease both;
    }
body.page-contact .testimonials-mark {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-size: 88px;
      line-height: 0.5;
      color: var(--coral);
      height: 46px;
      margin-bottom: 12px;
    }
body.page-contact .testimonials-quote {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-style: italic;
      font-size: 24px;
      line-height: 1.5;
      letter-spacing: -0.3px;
      color: #2A2A2A;
      max-width: 600px;
      text-wrap: pretty;
      margin-bottom: 34px;
    }
body.page-contact .testimonials-author {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
body.page-contact .testimonials-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #FFFFFF;
      border: 1px solid #ECECEA;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 17px;
      letter-spacing: 0.5px;
      color: #6B6B6B;
    }
body.page-contact .testimonials-avatar img {
      width: 74%;
      height: 74%;
      object-fit: contain;
    }
body.page-contact .testimonials-name {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 16px;
      line-height: 1.2;
      color: var(--black);
    }
body.page-contact .testimonials-role {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: 13.5px;
      line-height: 1.3;
      color: var(--gray-tx);
      margin-top: 4px;
    }
body.page-contact .testimonials-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 38px;
    }
body.page-contact .testimonials-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #D2D2D2;
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background 0.2s ease, width 0.2s ease;
    }
body.page-contact .testimonials-dot.is-active {
      background: var(--coral);
      width: 22px;
      border-radius: 4px;
    }
body.page-contact .testimonials-arrows {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-top: 30px;
    }
body.page-contact .testimonials-arrow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--white);
      box-shadow: 0 6px 20px rgba(10,10,10,0.10);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      color: var(--black);
      line-height: 1;
      transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }
body.page-contact .testimonials-arrow:hover {
      color: var(--coral);
      transform: translateY(-2px);
      box-shadow: 0 10px 26px rgba(10,10,10,0.13);
    }

    @media (max-width: 768px) {
body.page-contact .testimonials-section { padding: 24px 0 80px; }
body.page-contact .testimonials-title { font-size: 30px; letter-spacing: -0.8px; }
body.page-contact .testimonials-header { margin-bottom: 38px; }
body.page-contact .testimonials-panel { padding: 26px 26px 38px; }
body.page-contact .testimonials-tabs { gap: 12px; flex-wrap: wrap; padding-bottom: 28px; }
body.page-contact .testimonials-tab { font-size: 11px; letter-spacing: 1px; }
body.page-contact .testimonials-quote { font-size: 19px; }
body.page-contact .testimonials-stage { padding: 34px 0 4px; }
}


    
    @media (max-width: 920px) {
body.page-contact .contact-cols {
        grid-template-columns: 1fr;
        gap: 20px;
      }
body.page-contact .reassure { padding: 40px 32px; }
}

    @media (max-width: 768px) {
body.page-contact .contact-section { padding: 60px 0 90px; }
body.page-contact .contact-title { font-size: 38px; letter-spacing: -1.2px; }
body.page-contact .contact-sub { font-size: 16px; }
body.page-contact .contact-head { margin-bottom: 48px; }
body.page-contact .form-card { padding: 34px 26px 32px; }
body.page-contact .form-card-title { font-size: 24px; }
}

    @media (max-width: 460px) {
body.page-contact .contact-title { font-size: 32px; }
body.page-contact .form-row { grid-template-columns: 1fr; }
body.page-contact .pill-group { grid-template-columns: 1fr; }
}

/* cas-clients.html */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body.page-cas-clients {
      --black:   #0A0A0A;
      --white:   #FFFFFF;
      --coral:   #FD947C;
      --gray-bg: #F5F5F5;
      --gray-tx: #6B6B6B;
      --gray-lt: #9A9A9A;
      --border:  #E0E0E0;
    }
html { scroll-behavior: smooth; }
body.page-cas-clients {
      font-family: 'Outfit', sans-serif;
      background: var(--white);
      color: var(--black);
      -webkit-font-smoothing: antialiased;
    }
body.page-cas-clients .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
body.page-cas-clients .cc-placeholder {
      min-height: calc(100vh - 96px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 200px 24px 220px;
    }
body.page-cas-clients .cc-label {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 500;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray-lt);
      line-height: 1;
      margin-bottom: 32px;
    }
body.page-cas-clients .cc-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      color: var(--black);
      font-size: clamp(38px, 5.6vw, 68px);
      line-height: 1.06;
      letter-spacing: -0.02em;
      max-width: 14ch;
      text-wrap: balance;
    }
body.page-cas-clients .cc-title .em {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      color: var(--coral);
      letter-spacing: -0.5px;
    }
body.page-cas-clients .cc-text {
      margin-top: 28px;
      max-width: 560px;
      color: var(--gray-tx);
      font-size: 18px;
      line-height: 1.6;
      text-wrap: pretty;
    }
body.page-cas-clients .cc-cta {
      margin-top: 44px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #0A0A0A;
      color: var(--white);
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 16px;
      line-height: 1;
      text-decoration: none;
      padding: 19px 34px;
      border-radius: 50px;
      transition: transform 0.25s ease, background 0.25s ease;
    }
body.page-cas-clients .cc-cta .arr { transition: transform 0.25s ease; }
body.page-cas-clients .cc-cta:hover { transform: translateY(-2px); background: #1c1c1c; }
body.page-cas-clients .cc-cta:hover .arr { transform: translateX(4px); }


    @media (max-width: 640px) {
body.page-cas-clients .cc-placeholder { padding: 150px 24px 160px; min-height: auto; }
body.page-cas-clients .cc-text { font-size: 17px; }
}

/* ressources.html */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body.page-ressources {
      --black:   #0A0A0A;
      --white:   #FFFFFF;
      --coral:   #FD947C;
      --gray-bg: #F5F5F5;
      --gray-tx: #6B6B6B;
      --gray-lt: #9A9A9A;
      --border:  #E0E0E0;
    }
html { scroll-behavior: smooth; }
body.page-ressources {
      font-family: 'Outfit', sans-serif;
      background: var(--white);
      color: var(--black);
      -webkit-font-smoothing: antialiased;
    }
body.page-ressources .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
body.page-ressources .cc-placeholder {
      min-height: calc(100vh - 96px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 200px 24px 220px;
    }
body.page-ressources .cc-label {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 500;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray-lt);
      line-height: 1;
      margin-bottom: 32px;
    }
body.page-ressources .cc-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      color: var(--black);
      font-size: clamp(38px, 5.6vw, 68px);
      line-height: 1.06;
      letter-spacing: -0.02em;
      max-width: 14ch;
      text-wrap: balance;
    }
body.page-ressources .cc-title .em {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-weight: 700;
      font-style: italic;
      color: var(--coral);
      letter-spacing: -0.5px;
    }
body.page-ressources .cc-text {
      margin-top: 28px;
      max-width: 560px;
      color: var(--gray-tx);
      font-size: 18px;
      line-height: 1.6;
      text-wrap: pretty;
    }
body.page-ressources .cc-cta {
      margin-top: 44px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #0A0A0A;
      color: var(--white);
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 16px;
      line-height: 1;
      text-decoration: none;
      padding: 19px 34px;
      border-radius: 50px;
      transition: transform 0.25s ease, background 0.25s ease;
    }
body.page-ressources .cc-cta .arr { transition: transform 0.25s ease; }
body.page-ressources .cc-cta:hover { transform: translateY(-2px); background: #1c1c1c; }
body.page-ressources .cc-cta:hover .arr { transform: translateX(4px); }


    @media (max-width: 640px) {
body.page-ressources .cc-placeholder { padding: 150px 24px 160px; min-height: auto; }
body.page-ressources .cc-text { font-size: 17px; }
}

