


*{box-sizing:border-box}
html, body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body.home-page {
  font-family: 'Heebo', sans-serif;
  font-size: 16px;
  color: #2A293E;
  position: relative;
  min-height: 100vh;
  background: #FFFFFF; 
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body.home-page main {
  position: relative;
  min-height: 100vh;
}

/* Background par défaut (landing / home) : limité au main */
body.home-page main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
  z-index: 0;
}

body.home-page main > * {
  position: relative;
  z-index: 1;
}

/* Pages légales : background sur toute la page (header inclus) */
body.home-page.legal-page main::before {
  display: none;
}

body.home-page.legal-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background: none;
  display: block;
  pointer-events: none;
  z-index: 0;
}

body.home-page.legal-page .header,
body.home-page.legal-page .main {
  position: relative;
  z-index: 1;
}

/* Layout boxed identique à Switch */
.is-boxed {
  background-color: #f5f5f0; /* Background extérieur */
}

.body-wrap {
  background: #FFFFFF; /* Background intérieur */
  min-height: 100vh;
}

.boxed-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #FFFFFF;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.body-wrap {
  max-width: none !important;
}

/* Container */
.container{max-width:1080px;margin:0 auto;padding:0 20px;background:none}
.container-sm{max-width:800px;margin:0 auto;padding:0 20px;background:none}

body.home-page .container,
body.home-page .container-sm {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

body.home-page .hero > .container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
}

/* Header - Styles unifiés avec le formulaire */
.header {
  background: rgba(255, 254, 253, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}

.nav-list a {
  color: #2A293E;
  text-decoration: none;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: #EC9D5C;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'IBM Plex Sans', sans-serif;
}

.nav-phone-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-phone-label {
  font-size: 11px;
  color: #9CA3AF;
  font-weight: 500;
  white-space: nowrap;
}

.nav-phone-number {
  color: #2A293E;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-phone-number:hover {
  color: #EC9D5C;
}

.nav-email-link {
  color: #6B7A90;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-email-link:hover {
  color: #EC9D5C;
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
  }
  
  .nav-contact {
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
  }
}

.nav-phone {
  color: #2A293E;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  margin-left: auto;
  font-size: 14px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: .2px;
}

.brand a {
  text-decoration: none;
  color: #2A293E;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  color: #000000;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  font-family: 'Heebo', sans-serif;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover {
  color: #EC9D5C;
  background: transparent;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 6px;
  left: 0;
  background-color: #EC9D5C;
  transition: width 0.3s ease;
}

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

/* Universal menu (hamburger mobile) */
.universal-menu{display:flex;align-items:center;justify-content:space-between;width:100%}
.universal-menu__toggle{display:none;border:1px solid rgba(0,0,0,.12);background:rgba(255,255,255,.85);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);color:#2A293E;border-radius:10px;min-height:40px;min-width:40px;padding:0 10px;font-size:18px;line-height:1;cursor:pointer}
.universal-menu__overlay{position:fixed;inset:0;background:rgba(0,0,0,.35);z-index:999}
.universal-menu__panel{position:fixed;top:0;right:0;height:100vh;width:min(86vw,340px);background:#FFFEFD;border-left:1px solid rgba(0,0,0,.08);box-shadow:-18px 0 40px rgba(0,0,0,.14);z-index:1000}
.universal-menu__panel-inner{display:flex;flex-direction:column;height:100%;padding:16px 14px;gap:14px}
.universal-menu__panel-header{display:flex;align-items:center;justify-content:space-between;gap:10px}
.universal-menu__panel-title{font-weight:700;font-size:14px;letter-spacing:.2px}
.universal-menu__close{border:1px solid rgba(0,0,0,.12);background:transparent;color:#2A293E;border-radius:10px;min-height:36px;min-width:36px;font-size:16px;cursor:pointer}
.universal-menu__panel-links{display:flex;flex-direction:column;gap:10px}
.universal-menu__panel-links .nav-link{padding:0;border:none;background:transparent;color:#2A293E;font-size:15px;text-align:left}
.universal-menu__panel-links .nav-link:hover{color:#EC9D5C;background:transparent}
.universal-menu__panel-links .nav-link.is-active{color:#EC9D5C;background:transparent}
.universal-menu__panel-contact{margin-top:auto}

@media (max-width: 768px){
  .universal-menu__desktop{display:none !important}
  .universal-menu__toggle{display:inline-flex;align-items:center;justify-content:center}
}

/* Hero Section */
.hero {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background: transparent;
  margin: 0;
  position: relative;
}

.hero-inner {
  display: block;
}

.hero-copy {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}

.trust-stars {
  color: #00b67a;
  font-size: 16px;
  letter-spacing: 2px;
  filter: none;
}

.trust-rating {
  color: #2A293E;
  font-weight: 600;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
}

.trust-text {
  color: #6b7280;
  font-weight: 500;
  font-family: 'IBM Plex Sans', sans-serif;
}

.hero-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 32px; /* Base size */
  line-height: 44px;
  font-weight: 700;
  margin: 0 auto 16px;
  color: #2A293E;
}

.typewriter {
  display: inline-block;
  margin-left: 10px;
  color: #EC9D5C;
  background: rgba(236, 157, 92, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(236, 157, 92, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  padding: 3px 8px;
  border-radius: 6px;
  transition: all 0.35s ease;
}

.typewriter__word {
  display: inline-block;
  white-space: nowrap;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-static-optima {
  color: #2A293E;
  font-weight: 700;
}

.typewriter.is-fading .typewriter__word {
  opacity: 0;
  transform: translateY(4px);
}

.hero-paragraph {
  color: #6B7A90;
  font-size: 18px;
  line-height: 27px;
  max-width: 720px;
  margin: 0 auto 32px;
}

.hero-cta {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  max-width: 90vw;
  max-height: 90vh;
  width: 700px;
  height: 80vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e0e0e0;
}

.modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #2A293E;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.modal-close:hover {
  background-color: #f5f5f5;
}

.modal-content {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.modal-section {
  margin-bottom: 24px;
}

.modal-section:last-child {
  margin-bottom: 0;
}

.modal-section h4 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #2A293E;
}

.modal-section p {
  margin: 0 0 12px 0;
  line-height: 1.6;
  color: #666;
}

.modal-section ul {
  margin: 0 0 12px 0;
  padding-left: 20px;
  color: #666;
}

.modal-section li {
  margin-bottom: 4px;
  line-height: 1.5;
}

.modal-section a {
  color: #EC9D5C;
  text-decoration: none;
}

.modal-section a:hover {
  text-decoration: underline;
}

/* Boutons */
.button {
  display: inline-flex;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  text-transform: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  text-align: center;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.button-primary {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.45);
}

/* Bouton orange spécifique pour "Structurer mon dossier" */
.button-primary.orange-button {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  box-shadow: 0 4px 20px rgba(251, 146, 60, 0.35);
}

.button-primary.orange-button:hover {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 8px 28px rgba(251, 146, 60, 0.45);
}

.button-primary:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.button-secondary {
  color: #2A293E !important;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.button-secondary:hover {
  color: #2A293E !important;
  background: #FFFFFF;
  border-color: #D1D5DB;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* Solution Section */
.solution-section {
  padding: 100px 0;
  background: #FFFFFF;
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 1.0) 0%, rgba(255, 255, 255, 0.95) 0.5%, rgba(255, 255, 255, 0.6) 3%, rgba(255, 255, 255, 0.1) 10%, rgba(255, 255, 255, 0) 18%),
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 32px 32px, 32px 32px;
}

.solution-inner {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.solution-badge-container {
  text-align: center;
  margin-bottom: 24px;
}

.solution-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(156, 163, 175, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(156, 163, 175, 0.15);
  border-radius: 14px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: rgba(107, 122, 144, 0.6);
  text-align: center;
  box-shadow: 0 4px 16px rgba(156, 163, 175, 0.05);
}

.solution-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #2A293E;
  margin-bottom: 16px;
  display: inline;
}

.solution-title-highlight {
  display: inline-block;
  background: linear-gradient(to right, rgba(236, 157, 92, 0.22) 0%, rgba(236, 157, 92, 0.22) 50%, rgba(236, 157, 92, 0.11) 70%, rgba(236, 157, 92, 0) 100%);
  padding: 4px 10px;
  border-radius: 4px;
}

.solution-subtitle {
  font-size: 18px;
  color: #6B7A90;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.solution-item {
  text-align: center;
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-item:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(236, 157, 92, 0.2);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05), 0 1px 6px rgba(236, 157, 92, 0.06);
}

.solution-item:hover .solution-icon {
  background: rgba(236, 157, 92, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(236, 157, 92, 0.5);
}

.solution-item:hover .lucide-icon {
  color: #EC9D5C;
}

.solution-icon {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
  background: rgba(217, 217, 217, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.lucide-icon {
  width: 24px;
  height: 24px;
  color: #2A293E;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: color 0.24s ease;
}

.solution-item-text {
  font-size: 16px;
  color: #6B7A90;
  line-height: 1.6;
  margin-bottom: 16px;
}

.solution-item-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2A293E;
  margin-bottom: 12px;
}

.solution-action {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #2A293E !important;
  margin-top: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-item:hover .solution-action,
.solution-action:hover {
  color: #EC9D5C !important;
  gap: 10px;
}

/* Metrics Section */
.metrics-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #f8f9fa 100%);
  position: relative;
}

.metrics-badge {
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 32px;
  background: rgba(156, 163, 175, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(156, 163, 175, 0.15);
  border-radius: 14px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: rgba(107, 122, 144, 0.6);
  text-align: center;
  box-shadow: 0 4px 16px rgba(156, 163, 175, 0.05);
}

.metrics-badge-container {
  text-align: center;
  margin-bottom: 48px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.metric-number {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #2A293E;
  margin-bottom: 8px;
  line-height: 1;
}

.metric-number[data-suffix="%"] {
  color: #22c55e;
}

.metric-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  color: #6B7A90;
  line-height: 1.4;
}

.metrics-cta {
  max-width: 600px;
  margin: 48px auto 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Optima Section */
.optima-section {
  padding: 100px 0;
  background: #FFFFFF;
  position: relative;
}

.optima-inner {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.optima-badge-container {
  text-align: center;
  margin-bottom: 24px;
}

.optima-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(156, 163, 175, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(156, 163, 175, 0.15);
  border-radius: 14px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: rgba(107, 122, 144, 0.6);
  text-align: center;
  box-shadow: 0 4px 16px rgba(156, 163, 175, 0.05);
}

.optima-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #2A293E;
  margin-bottom: 16px;
  display: inline;
}

.optima-title-highlight {
  display: inline-block;
  background: linear-gradient(to right, rgba(236, 157, 92, 0.08) 0%, rgba(236, 157, 92, 0.08) 50%, rgba(236, 157, 92, 0.03) 70%, rgba(236, 157, 92, 0) 100%);
  padding: 4px 10px;
  border-radius: 4px;
}

.optima-subtitle {
  font-size: 18px;
  color: #6B7A90;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.optima-card {
  max-width: 520px;
  margin: 0 auto;
  opacity: 1;
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.optima-card.is-fading {
  opacity: 0;
  transform: translateY(6px);
}

.optima-card-inner {
  text-align: center;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.optima-navigation {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: calc(100% + 40px);
  display: flex;
  justify-content: space-between;
  padding: 0 0;
  pointer-events: none;
  z-index: 10;
}

.optima-nav-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.optima-nav-btn:hover {
  background: rgba(236, 157, 92, 0.15);
  border-color: rgba(236, 157, 92, 0.3);
  transform: scale(1.05);
}

.optima-nav-btn .lucide-icon {
  width: 18px;
  height: 18px;
  color: #64748b;
  transition: color 0.3s ease;
}

.optima-nav-btn:hover .lucide-icon {
  color: #EC9D5C;
}

.optima-card:hover .optima-card-inner {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(236, 157, 92, 0.2);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05), 0 1px 6px rgba(236, 157, 92, 0.06);
}

.optima-icon {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
  margin-left: auto;
  margin-right: auto;
}

.optima-letter-square {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(217, 217, 217, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 10px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #2A293E;
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.optima-item-text {
  font-size: 16px;
  color: #6B7A90;
  line-height: 1.6;
  margin-bottom: 0;
}

.optima-item-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2A293E;
  margin-bottom: 12px;
}

.optima-progress {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.optima-progress-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(156, 163, 175, 0.28);
  transition: background 0.2s ease, transform 0.2s ease;
}

.optima-progress-dot.is-active {
  background: rgba(236, 157, 92, 0.72);
  transform: scale(1.15);
}

.optima-word {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.optima-word-letter {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.12);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(100, 116, 139, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.optima-word-letter.is-active {
  background: linear-gradient(135deg, rgba(236, 157, 92, 0.15) 0%, rgba(232, 138, 71, 0.15) 100%);
  border-color: rgba(236, 157, 92, 0.35);
  color: #E88A47;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(236, 157, 92, 0.2);
}

@media (max-width: 768px) {
  .optima-card-inner {
    padding: 28px 20px;
  }
}

/* Features Section */
.features {
  padding: 80px 0;
  background: #FFFFFF;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.has-bottom-divider {
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Badges avec effet glassmorphism */
.glass-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(235, 198, 185, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(235, 198, 185, 0.3);
  border-radius: 20px;
  color: #2A293E;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(235, 198, 185, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2A293E;
  margin: 0 0 20px;
}

.section-paragraph {
  color: #6B7A90;
  font-size: 16px;
  line-height: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.features-image {
  position: relative;
  margin-top: 64px;
  margin-bottom: 112px;
}

.features-wrap {
  max-width: 540px;
  margin: 0 auto;
}

.feature {
  text-align: left;
  margin-bottom: 48px;
  padding: 20px;
}

.feature:last-of-type {
  margin-bottom: 0;
}

.feature-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  display: flex;
  margin: 0;
  flex-shrink: 0;
}

.feature-icon-text {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  border-radius: 12px;
  background: rgba(235, 198, 185, 0.25);
  border: 1px solid rgba(235, 198, 185, 0.3);
}

.feature-icon img {
  max-width: 48px;
  height: auto;
}

.feature-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #2A293E;
  margin: 0 0 16px 0;
  position: relative;
}

.feature-content p {
  color: #6B7A90;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}


.landing-carousel {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 24px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(42, 41, 62, 0.12);
}

.carousel-viewport {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 260ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.85);
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

/* CTA Section */
.cta {
  padding: 80px 0;
  background: transparent;
  border-radius: 0; /* Pas de bordure dans layout boxed */
  margin: 0; /* Pas de margin dans layout boxed */
  position: relative;
  overflow: hidden;
}

.cta-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-header {
  margin-bottom: 40px;
}

.cta-cta {
  margin-top: 30px;
}

/* Footer */
.site-footer {
  padding: 40px 0;
  background: #FFFFFF; /* Footer libre, sans SVG */
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 0; /* Pas de margin dans layout boxed */
}

.has-top-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand a {
  text-decoration: none;
  color: #2A293E;
}

.footer-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: #2A293E;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #EC9D5C;
}

.footer-social-links {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social-links a {
  color: #2A293E;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social-links a:hover {
  color: #EC9D5C;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #2A293E;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.footer-copyright {
  font-size: 12px;
  color: #6B7A90;
  margin-top: 20px;
  text-align: center;
}

/* Animations */
.is-revealing {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.6s ease forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.has-animations .is-revealing {
  animation-delay: 0.2s;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-copy {
    text-align: center;
  }
  
  .hero-title {
    font-size: 24px;
    line-height: 32px;
  }

  .hero-paragraph {
    font-size: 15px;
    line-height: 22px;
  }

  .section-title {
    font-size: 22px;
    line-height: 30px;
    text-align: center;
  }

  .section-paragraph {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }

  .feature {
    text-align: center;
    padding: 16px;
  }
  
  .feature-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .feature-title {
    font-size: 16px;
    line-height: 22px;
  }

  .feature-content p {
    font-size: 13px;
    line-height: 18px;
  }

  .glass-badge {
    font-size: 10px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .button {
    font-size: 14px;
    padding: 12px 20px;
  }

  .button-primary {
    font-size: 14px;
    padding: 12px 20px;
  }
  
  .hero-cta {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero-cta .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .features-wrap {
    max-width: 100%;
  }
  
  .feature {
    padding: 16px;
  }
  
  .feature-inner {
    gap: 12px;
  }
  
  .feature-icon img {
    max-width: 40px;
  }
  
  .site-footer-inner {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .nav {
    gap: 24px;
  }
  
  .nav-link {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .hero {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .hero-title {
    font-size: 38px;
    line-height: 48px;
  }
  
  .feature {
    text-align: left;
  }

  .feature-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .feature-icon {
    display: flex;
    margin-top: 8px;
    margin-right: 0;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .feature-icon-text {
    width: 48px;
    height: 48px;
  }

  .feature-icon img {
    max-width: 48px;
  }
}

/* Utilitaires */
.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.list-reset { list-style: none; padding: 0; margin: 0; }
.text-center { text-align: center; }

/* Images */
.asset-light,
.asset-dark {
  max-width: 100%;
  height: auto;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .asset-light { display: none; }
  .asset-dark { display: block; }
}

@media (prefers-color-scheme: light) {
  .asset-light { display: block; }
  .asset-dark { display: none; }
}
