@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');
:root {  --primary-blue: #0A2140;
  --primary-dark: #07162B;
  --accent: #D4A24C;
  --accent-hover: #B88A3D;
  --light-bg: #F0F4F8;
  --light-accent: #FCF7EE;
  --gray-bg: #F7F7F7;
  --text-dark: #0A2140;
  --text-gray: #6B7280;
  --white: #FFFFFF;
  --border-light: #E5E7EB;

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

}html,body {  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  box-sizing: border-box;

}body {  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--white);

}*, *::before, *::after {  box-sizing: inherit;

}section {  padding-left: 40px;
  padding-right: 40px;

}h1,h2 {  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 63px;
  color: var(--text-dark);

}html {  scroll-behavior: smooth;
  scroll-padding-top: 80px;

}/* ========== NAVBAR ========== */.navbar {  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;

}.navbar-logo {  display: flex;
  align-items: center;
  text-decoration: none;

}.navbar-logo img {  height: 36px;
  width: auto;

}.navbar-links {  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

}.navbar-links a {  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;

}.navbar-links a:hover {  color: var(--primary-blue);

}.btn-inscription {  background: var(--accent);
  color: white !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;

}.btn-inscription::before {  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;

}.btn-inscription:hover::before {  transform: scaleX(1);

}.btn-inscription:hover {  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 162, 76, 0.3);

}.btn-inscription:hover .btn-arrow {  transform: translateX(6px);

}.btn-mobile-only {  display: none;

}
@media (max-width: 768px) {  .btn-inscription {    padding: 8px 16px;
    font-size: 13px;
    width: fit-content;
  
}    .navbar > .btn-inscription {    display: none;
  
}    .mobile-menu .btn-inscription {    margin: 15px 20px;
    width: fit-content;
    padding: 10px 20px;
  
}    .hero-cta-right {    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  
}    .btn-mobile-only {    display: inline-flex;
    margin-top: 20px;
  
}    .hero-cta-right .btn-primary {    display: none;
  
}    .hero-cta-right .trustpilot-badge {    order: 2;
  
}
}.btn-connexion {  color: var(--primary-blue) !important;
  font-weight: 600;
  font-size: 14px;

}/* ========== HERO ========== */.hero {  padding: 120px 0 60px;
  background: url('../images/Bg hero.png') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;

}.hero-container {  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;

}.hero-left {  flex: 1;
  max-width: 540px;

}.hero-left h1 {  margin-bottom: 16px;

}.sliding-words {  display: inline-block;
  vertical-align: bottom;
  height: 63px;
  /* Matches h1 line-height */  overflow: hidden;
  position: relative;

}.sliding-word {  display: block;
  height: 63px;
  color: var(--accent);
  animation: slideHeadline 5s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
  padding-right: 10px;
  /* Space to avoid clipping */
}
@keyframes slideHeadline {  0%,  42% {    transform: translateY(0);
  
}  50%,  92% {    transform: translateY(-63px);
  
}  100% {    transform: translateY(0);
  
}
}
@media (max-width: 768px) {  .sliding-words {    height: 44px;
    /* Matches mobile h1 line-height */  
}  .sliding-word {    height: 44px;
    animation: slideHeadlineMobile 5s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
  
}  
@keyframes slideHeadlineMobile {    0%,    42% {      transform: translateY(0);
    
}    50%,    92% {      transform: translateY(-44px);
    
}    100% {      transform: translateY(0);
    
}  
}
}.hero-subtitle {  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 8px;

}.hero-subtitle2 {  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 24px;

}/* Simulator Card */.simulator-card {  background: white;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;

}.simulator-label {  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 12px;
  font-weight: 500;

}.simulator-title {  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;

}.amount-display {  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;

}.amount-value {  font-size: 32px;
  font-weight: 800;
  color: var(--primary-blue);

}.amount-currency {  font-size: 18px;
  font-weight: 600;
  color: var(--primary-blue);

}.slider-container {  width: 100%;
  margin-bottom: 20px;

}.slider-container input[type="range"] {  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--primary-blue) 0%, var(--primary-blue) 50%, #E5E7EB 50%, #E5E7EB 100%);
  outline: none;

}.slider-container input[type="range"]::-webkit-slider-thumb {  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-blue);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(61, 47, 224, 0.3);

}.slider-labels {  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 4px;

}/* Duration Slider Styles */.duration-slider-container {  width: 100%;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--light-bg);
  border-radius: 12px;

}.duration-display {  text-align: center;
  margin-bottom: 12px;

}.duration-value {  font-size: 32px;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;

}.duration-unit {  font-size: 14px;
  color: var(--text-gray);
  margin-left: 4px;

}.duration-slider-container input[type="range"] {  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #4F46E5 0%, #4F46E5 0%, #E5E7EB 0%, #E5E7EB 100%);
  outline: none;

}.duration-slider-container input[type="range"]::-webkit-slider-thumb {  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0A2140;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(10, 33, 64, 0.3);

}.duration-slider-container input[type="range"]::-moz-range-thumb {  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0A2140;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(10, 33, 64, 0.3);

}/* Legacy duration options - kept for compatibility */.duration-options {  display: flex;
  gap: 8px;
  margin-bottom: 16px;

}.duration-option {  padding: 8px 18px;
  border-radius: 8px;
  border: 2px solid var(--border-light);
  background: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-dark);
  transition: all 0.2s;

}.duration-option.active {  border-color: var(--primary-blue);
  background: var(--light-accent);
  color: var(--primary-blue);

}.duration-option:hover {  border-color: var(--primary-blue);

}.monthly-payment {  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--border-light);

}.monthly-payment-label {  font-size: 13px;
  color: var(--text-gray);

}.monthly-payment-value {  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);

}.hero-cta {  display: flex;
  gap: 12px;
  margin-top: 16px;
  align-items: center;

}.btn-primary {  background: var(--accent);
  color: white;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(212, 162, 76, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;

}.btn-primary::before {  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-blue);
  /* Navy Blue effect */  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;

}.btn-primary:hover {  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(212, 162, 76, 0.25);
  color: white;

}.btn-primary:hover::before {  transform: scaleX(1);

}.btn-arrow {  margin-left: 10px;
  transition: transform 0.3s ease;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;

}

.arrow {
  margin-left: 12px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.pret-btn:hover .arrow {
  transform: translateX(6px);
}

.btn-primary:hover .btn-arrow {  transform: translateX(6px);

}.trustpilot-badge {  display: flex;
  align-items: center;
  gap: 8px;

}.trustpilot-stars {  color: #00B67A;
  font-size: 16px;

}.trustpilot-text {  font-size: 12px;
  color: var(--text-gray);

}.hero-right {  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;

}.hero-cta-right {  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;

}.hero-cta-right .btn-primary {  margin: 0;

}.hero-cta-right .trustpilot-badge {  display: flex;
  align-items: center;
  gap: 12px;

}.hero-image-container {  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-top: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for depth */  transition: transform 0.3s ease;

}.hero-image-container:hover {  transform: translateY(-5px);
  /* Hover effect */
}.hero-legal {  font-size: 20px;
  /* Further increased size */
}.hero-image-container img {  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 32px;
  /* Round the image itself */
}.hero-image-placeholder {  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--light-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 60px;

}.hero-legal {  text-align: center;
  font-size: 11px;
  color: var(--text-gray);
  max-width: 1200px;
  margin: 30px auto 0;
  line-height: 1.5;

}/* ========== STATS SECTION ========== */.stats-section {  padding: 80px 40px 20px;
  background: white;
  text-align: center;

}/* ========== PRETS SUR MESURE SECTION ========== */.prets-section {  padding-top: 20px;
  padding-bottom: 80px;
  background: white;

}.prets-container {  max-width: 1200px;
  margin: 0 auto;

}.prets-header {  margin-bottom: 28px;
  text-align: center;

}.prets-header h2 {  margin-bottom: 12px;

}.prets-header h2 span {  color: #3D2FE0;

}.prets-header p {  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;

}.prets-grid {  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;

}.pret-card {  background: #FAFAFE;
  border: 1px solid #EAE7FF;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  min-height: 440px;

}.pret-card-featured {  background: #F1E9FF;
  border-color: #E2D2FF;
  box-shadow: 0 14px 34px rgba(61, 47, 224, 0.12);

}.pret-kicker {  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(10, 33, 64, 0.45);
  margin-bottom: 10px;

}.pret-card h3 {  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 18px;

}.pret-price {  font-size: 22px;
  font-weight: 900;
  color: #3D2FE0;
  margin-bottom: 6px;

}.pret-subprice {  font-size: 13px;
  color: rgba(10, 33, 64, 0.55);
  margin-bottom: 18px;

}.pret-btn {  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 35px;
  height: 48px;
  border-radius: 14px;
  background: var(--text-dark);
  /* Modern bold navy */  color: white;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(10, 33, 64, 0.1);
  margin: 20px 0 0;
  position: relative;
  overflow: hidden;
  z-index: 1;

}.pret-btn::before {  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3D2FE0;
 /* Much more visible bright blue */  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;

}.pret-btn:hover {  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 33, 64, 0.2);

}.pret-btn:hover::before {  transform: scaleX(1);

}.pret-btn:active {  transform: translateY(-1px) scale(0.98);

}/* Featured card button enhancement */.pret-card-featured .pret-btn {  background: linear-gradient(135deg, #3D2FE0 0%, #6366f1 100%);
  box-shadow: 0 8px 25px rgba(61, 47, 224, 0.2);

}.pret-card-featured .pret-btn::before {  background: var(--text-dark);
 /* Navy slide on bright blue background for high contrast */
}.pret-card-featured .pret-btn:hover {  box-shadow: 0 12px 30px rgba(61, 47, 224, 0.35);

}.pret-features {  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;

}.pret-features li {  position: relative;
  padding-left: 22px;
  font-size: 13px;
  color: rgba(10, 33, 64, 0.72);
  line-height: 1.5;

}.pret-features li::before {  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: #3D2FE0;
  font-weight: 900;

}.pret-link {  margin-top: 20px;
  font-size: 13px;
  color: rgba(10, 33, 64, 0.55);
  text-decoration: underline;
  text-underline-offset: 4px;
  width: fit-content;

}.pret-link:hover {  color: rgba(10, 33, 64, 0.8);

}.stats-section h2 {  margin-bottom: 48px;

}.stats-section h2 span {  color: var(--accent);

}.stats-cards {  display: flex;
  justify-content: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;

}.stat-card {  flex: 1;
  text-align: center;
  padding: 32px 24px;

}.stat-icon {  width: 56px;
  height: 56px;
  background: var(--light-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;

}.stat-icon img {  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  /* Give some breathing room */
}.stat-card h3 {  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;

}.stat-card p {  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;

}.stat-card-horizontal {  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  flex: 1.8;
  /* Give it more room */
}.stat-icon-large {  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;

}.stat-icon-large img {  width: 100%;
  height: 100%;
  object-fit: contain;

}.stat-content-horizontal h3 {  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;

}.stat-content-horizontal p {  font-size: 14px;
  color: var(--text-gray);
  font-weight: 400;
  line-height: 1.5;

}/* ========== PROJETS SECTION ========== */.projets-header {  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0;

}.projets-header h2 {  margin-bottom: 0px;
  /* Reset header space */
}.projets-nav {  display: flex;
  gap: 12px;

}.nav-btn {  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #3D2FE0;
  background: transparent;
  color: #3D2FE0;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;

}.nav-btn:hover {  background: #3D2FE0;
  color: white;

}.projets-section {  padding: 40px 40px;
  background: url('../images/bg-pro.png') center/cover no-repeat;
  text-align: left;

}.projets-section h2 span {  color: var(--accent);

}.projets-cards-wrapper {  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.projets-cards {  display: flex;
  gap: 24px;
  overflow: hidden;
  padding: 20px 0 60px;
  position: relative;
}

.projets-cards-scroll {
  display: flex;
  gap: 24px;
  width: fit-content;
}

.projets-cards-scroll.infinite-scroll {
  animation: scroll-infinite 40s linear infinite;
}

@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1376px);
  }
}

.projets-cards-scroll.infinite-scroll:hover {
  animation-play-state: paused;
}

@media (max-width: 1024px) {
  .projets-cards-scroll.infinite-scroll {
    animation-duration: 30s;
  }
}

@media (max-width: 768px) {
  .projets-cards-scroll.infinite-scroll {
    animation-duration: 25s;
  }
}.projet-card {  flex: 0 0 320px;
  height: 480px;
  position: relative;
  overflow: visible;
  /* Allows the bar to "come out" of the bottom curve */  transition: transform 0.3s ease;
  cursor: pointer;

}.projet-card:hover {  transform: translateY(-10px);

}.projet-card-inner {  width: 100%;
  height: 100%;
  /* Takes full height - NO GAP */  position: relative;
  overflow: hidden;
  /* Clips only the image content */  /* Top-Left: 30px, Top-Right: 30px, Bottom-Right: 30px, Bottom-Left: 0 */  border-radius: 30px 30px 30px 0;
  background: #000;

}.projet-card img {  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}.projet-card-bar {  position: absolute;
  bottom: 18px;
  /* Relevé pour flotter, façon "original" */  left: 20px;
  width: 200px;
  height: 8px;
  background: #3D2FE0;
  /* Forme "pill" entièrement arrondie */  border-radius: 10px;
  z-index: 10;

}.projet-card-overlay {  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

}.projet-card-overlay h3 {  color: white;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 35px;
  text-align: left;
  line-height: 1.3;

}.projet-card-details {  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  margin-bottom: 18px;

}.projet-card:hover .projet-card-details {  opacity: 1;
  transform: translateY(0);

}.projet-card-amount,.projet-card-goal {  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);

}.projet-card-goal {  color: rgba(255, 255, 255, 0.65);

}.projet-card-arrow {  color: white;
  font-size: 36px;
  text-align: left;
  line-height: 1;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  /* Adjusted to be higher above the bar */
}

.projet-card:hover .projet-card-arrow {  transform: translateX(10px);

}/* ========== APPROCHE SECTION ========== */.approche-section {  padding: 80px 40px;
  background: white;

}.approche-container {  max-width: 1100px;
  margin: 0 auto;

}.approche-section h2 {  margin-bottom: 48px;
  text-align: center;

}.approche-section h2 span {  color: #3D2FE0;

}.approche-section {  padding: 100px 40px;
  background: white;

}.approche-container {  max-width: 1200px;
  margin: 0 auto;

}.approche-container h2 {  margin-bottom: 50px;

}.approche-grid {  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;

}.approche-tabs {  display: flex;
  flex-direction: column;
  gap: 15px;

}.approche-tab {  padding: 28px 30px;
  background: #fdfaf5;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  border: none;
  text-align: left;

}.approche-tab.active {  background: var(--text-dark);
  color: white;
  box-shadow: 0 10px 25px rgba(10, 33, 64, 0.15);

}.approche-tab:hover:not(.active) {  background: #f0f2f5;
  transform: translateX(5px);

}.approche-content-panel {  background: #fdfaf5;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 100%;
 /* Spreads to full grid height */
}.approche-illustration {  margin-bottom: 5px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;

}.approche-text-content {  max-width: 480px;
  min-height: 80px;
 /* Reserves space even if text is short */  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;

}.approche-text-content p {  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: 400;

}.btn-demande {  background: var(--accent);
  color: white;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(212, 162, 76, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;

}.btn-demande::before {  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;

}.btn-demande:hover,.btn-demande:active {  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(212, 162, 76, 0.25);
  color: white;

}.btn-demande:hover::before,.btn-demande:active::before {  transform: scaleX(1);

}.btn-demande:hover .btn-arrow {  transform: translateX(6px);

}/* ========== REGLEMENTATION SECTION ========== */.reglementation-section {  padding: 80px 40px;
  background: var(--light-bg);

}.reglementation-container {  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;

}.reglementation-img {  width: 440px;
  height: 440px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
 /* Center in grid column */  border: 6px solid white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

}.reglementation-content h2 {  margin-bottom: 20px;
  line-height: 1.2;

}.reglementation-content h2 span {  color: var(--accent);

}.reglementation-content p {  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 12px;

}/* ========== ETAPES SECTION ========== */.etapes-section {  padding: 30px 40px;
  background: white;
  text-align: center;
  overflow: hidden;

}.etapes-section h2 {  margin-bottom: 0px;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  color: #0A1128;

}.etapes-section h2 span {  color: #3D2FE0;

}.etapes-container {  max-width: 1200px;
  margin: 0 auto;

}.etapes-grid {  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  align-items: center;

}.etapes-left {  display: flex;
  justify-content: flex-end;
  padding-right: 40px;
  position: relative;
  z-index: 10;

}.iphone-mockup {  width: 260px;
  height: 520px;
  background: #000;
  border-radius: 40px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
  position: relative;

}.iphone-mockup img {  width: 100%;
  height: 100%;
  object-fit: cover;

}.etapes-right {  position: relative;
  height: 750px;
  width: 750px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}.etapes-bubble-bg {  position: absolute;
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: #EEF2FF;
  border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
  z-index: 0;
  opacity: 0.8;

}.etapes-horizontal-cards {  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;

}.etape-horizontal-card {  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  width: 450px;
  min-height: 90px;
  padding: 15px 30px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
  position: relative;

}.etape-bar {  width: 8px;
  height: 40px;
  background: #3D2FE0;
  border-radius: 40px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

}.etape-info {  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 10px;

}.etape-val {  font-size: 19px;
  font-weight: 800;
  color: #3D2FE0;
  min-width: 100px;
  line-height: 1.1;

}.etape-info p {  font-size: 14px;
  color: #334155;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
  text-align: left;

}.btn-commencer {  position: relative;
  z-index: 1;
  margin-top: 15px;
  background: #0A1128;
  color: white;
  padding: 16px 50px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
  overflow: hidden;
  display: inline-block;

}.btn-commencer::before {  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #3D2FE0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;

}.btn-commencer:hover {  color: white;

}.btn-commencer:hover::before {  left: 0;

}/* ========== PETIT PRET SECTION ========== */.petit-pret-section {  padding: 80px 40px;
  background-color: #ffffff;
  background-image:     linear-gradient(135deg, #f8fafc 25%, transparent 25%),     linear-gradient(225deg, #f8fafc 25%, transparent 25%),     linear-gradient(45deg, #f8fafc 25%, transparent 25%),     linear-gradient(315deg, #f8fafc 25%, transparent 25%);
  background-position: 20px 0, 20px 0, 0 0, 0 0;
  background-size: 40px 40px;
  background-repeat: repeat;
  position: relative;
  overflow: hidden;

}.petit-pret-container {  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;

}.petit-pret-img {  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

}.petit-pret-content h2 {  margin-bottom: 20px;
  line-height: 1.2;

}.petit-pret-content h2 span {  color: var(--accent);

}.petit-pret-content p {  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;

}/* ========== OFFRES ALTERNATIVES SECTION ========== */.alternatives-section {  padding: 100px 40px;
  background: white;

}.alternatives-section h2 {  text-align: left;
  margin-bottom: 50px;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  color: #0A1128;

}.alternatives-section h2 span {  color: #3D2FE0;

}.alternatives-container {  max-width: 1200px;
  margin: 0 auto;

}.alternatives-grid {  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;

}.alt-card {  background: #F8F9FD;
  padding: 35px 40px;
  border-radius: 16px;
  margin-bottom: 25px;
  cursor: pointer;
  border: 4px solid transparent;
  transition: all 0.3s ease;

}.alt-card.active {  border-color: #3D2FE0;
  background: white;
  box-shadow: 0 10px 40px rgba(142, 51, 255, 0.08);

}.alt-card h3 {  font-size: 20px;
  color: #0F172A;
  margin-bottom: 12px;
  font-weight: 700;

}.alt-card p {  font-size: 15px;
  color: #64748B;
  line-height: 1.6;

}.bank-card {  background: #F8F9FD;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;

}#alt-bg-logo {  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 320px;
  height: 320px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
  filter: grayscale(100%) brightness(0.9);
  z-index: 0;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(-15deg);

}.bank-header, .offer-title, .offer-subtitle, .btn-purple, .bank-features {  position: relative;
  z-index: 1;

}.bank-header {  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;

}.bank-name {  font-size: 24px;
  font-weight: 800;
  color: #0F172A;

}.popular-tag {  background: #E8E4FF;
  color: #8E33FF;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;

}.offer-title {  font-size: 28px;
  color: #8E33FF;
  font-weight: 800;
  margin-bottom: 10px;

}.offer-subtitle {  font-size: 14px;
  color: #64748B;
  margin-bottom: 30px;

}.btn-purple {  display: block;
  background: #8E33FF;
  color: white;
  text-align: center;
  padding: 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;

}.btn-purple::before {  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #3D2FE0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;

}.btn-purple:hover,.btn-purple:active {  color: white;

}.btn-purple:hover::before,.btn-purple:active::before {  left: 0;

}.bank-features {  list-style: none;
  padding: 0;
  margin-bottom: 30px;

}.bank-features li {  font-size: 14px;
  color: #1E293B;
  margin-bottom: 18px;
  padding-left: 30px;
  position: relative;

}.bank-features li::before {  content: '\2713';
  position: absolute;
  left: 0;
  color: #8E33FF;
  font-weight: 900;
  font-size: 16px;

}.alt-link {  color: #64748B;
  font-size: 13px;
  text-decoration: underline;
  font-weight: 500;

}/* ========== AVIS SECTION ========== */.avis-section {  padding: 80px 40px;
  background: var(--light-bg);
  text-align: center;

}.avis-section h2 {  margin-bottom: 48px;

}.avis-cards {  display: flex;
  justify-content: flex-start;
 /* Better for horizontal scroll if cards overflow */  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  padding: 20px 10px;
  scrollbar-width: none;
 /* Firefox */  -ms-overflow-style: none;
 /* IE and Edge */
}.avis-cards::-webkit-scrollbar {  display: none;
 /* Chrome, Safari and Opera */
}.avis-card {  min-width: 280px;
  max-width: 320px;
  background: white;
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);

}.avis-stars {  color: #FFB800;
  font-size: 16px;
  margin-bottom: 12px;

}.avis-card p {  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 16px;

}.avis-author {  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);

}.avis-date {  font-size: 12px;
  color: var(--text-gray);

}/* ========== FAQ SECTION ========== */.faq-section {  padding: 100px 40px;
  background: white;

}.faq-container {  max-width: 900px;
  margin: 0 auto;

}.faq-section h2 {  text-align: center;
  margin-bottom: 60px;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  color: #0A1128;

}.faq-section h2 span {  color: var(--accent);

}.faq-items {  display: flex;
  flex-direction: column;
  gap: 16px;

}.faq-item {  background: #F8F9FD;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;

}.faq-item:hover {  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);

}.faq-question {  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;

}.faq-question h3 {  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  text-align: left;

}.faq-icon {  font-size: 24px;
  color: var(--accent);
  transition: transform 0.3s ease;
  font-weight: 500;

}.faq-answer {  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  padding: 0 32px;

}.faq-answer p {  padding-bottom: 24px;
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
  text-align: left;

}.faq-item.active {  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

}.faq-item.active .faq-answer {  max-height: 200px;
  opacity: 1;

}.faq-item.active .faq-icon {  transform: rotate(45deg);

}/* ========== MEDIAS SECTION ========== */.medias-section {  position: relative;
  padding: 120px 40px 80px;
  background: white;
  overflow: hidden;
  text-align: center;

}.medias-dome {  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: #F8F9FD;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 0;

}.medias-container {  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;

}.medias-section h2 {  font-size: 44px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #0A1128;

}.medias-section h2 span {  color: #3D2FE0;

}.medias-grid {  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 60px;
  margin-bottom: 60px;

}.medias-grid-bottom {  display: flex;
  justify-content: center;

}.media-item {  width: 180px;
  filter: none;
  opacity: 1;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;

}.media-item:hover {  transform: scale(1.1);

}.media-item img {  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;

}.media-item.jdn {  width: 130px;

}/* ========== GUIDES SECTION ========== */.guides-section {  padding: 80px 40px;
  background: white;

}.guides-container {  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  column-gap: 80px;
  align-items: start;

}.guides-section h2 {  color: var(--primary-blue);
  font-size: 40px;
  margin-bottom: 0;
  line-height: 1.05;

}.guides-grid {  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 60px;
  row-gap: 12px;

}.guide-link {  font-size: 14px;
  color: var(--text-gray);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s;
  display: block;

}.guide-link:hover {  color: var(--primary-blue);

}
@media (max-width: 768px) {  .guides-container {    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 24px;
  
}  .guides-grid {    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
  
}
}
@media (max-width: 480px) {  .guides-grid {    grid-template-columns: 1fr;
  
}
}/* ========== NEWS SECTION ========== */.news-section {  padding: 100px 40px;
  background: #2D0060;
 /* Deep purple from search/capture */  color: white;

}.news-container {  max-width: 1200px;
  margin: 0 auto;

}.news-header {  margin-bottom: 50px;

}.news-header h2 {  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;

}.news-header p {  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);

}.news-grid {  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

}.news-card {  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;

}.news-card:hover {  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);

}.news-img-box {  width: 100%;
  height: 220px;
  overflow: hidden;

}.news-img-box img {  width: 100%;
  height: 100%;
  object-fit: cover;

}.news-info {  padding: 30px;

}.news-info h3 {  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;

}.news-info p {  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);

}
@media (max-width: 992px) {  .news-grid {    grid-template-columns: repeat(2, 1fr);
  
}
}
@media (max-width: 600px) {  .news-grid {    grid-template-columns: 1fr;
  
}    .news-section h2 {    font-size: 32px;
  
}
}/* ========== FOOTER ========== */.footer {    background: #0A2140;
    padding: 80px 0 30px;
    color: white;
    position: relative;
    overflow: hidden;

}.footer-container {    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;

}.footer-top {    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;

}.footer-about h4 {    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;

}.footer-about p {    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;

}.footer-info-box {    display: flex;
    gap: 15px;
    background: rgba(46, 204, 113, 0.1);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(46, 204, 113, 0.2);
    margin-bottom: 25px;

}.footer-info-icon {    width: 24px;
    height: 24px;
    background: #2ecc71;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;

}.footer-info-content a {    color: #2ecc71;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;

}.footer-info-content p {    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;

}.footer-contact-info {    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;

}.footer-contact-info p {    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: left;

}.footer-contact-info i {    color: #D4A24C;
    margin-top: 4px;
    font-size: 16px;

}.footer-contact-info a {    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
    display: inline;

}.footer-contact-info a:hover {    color: white;

}.footer-social {    display: flex;
    gap: 15px;
    margin-top: 20px;

}.footer-social a {    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}.footer-social a:hover {    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 33, 64, 0.2);

}.footer-column h4 {    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);

}.footer-column a {    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: 0.3s;

}.footer-column a:hover {    color: #D4A24C;
    padding-left: 5px;

}.footer-bottom {    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;

}.footer-legal {    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;

}.footer-copyright {    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;

}
@media (max-width: 992px) {    .footer-top {        grid-template-columns: 1fr 1fr;
    
}
}
@media (max-width: 480px) {    .footer-top {        grid-template-columns: 1fr;
    
}
}/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {  .hero-container {    flex-direction: column;
    gap: 32px;
  
}  .hero-right {    width: 100%;
    justify-content: center;
    margin-top: 20px;
  
}  .hero-image-container {    margin-top: 0;
    /* Reset desktop shift on mobile */    max-width: 100%;
  
}  .hero-left {    max-width: 100%;
  
}  .reglementation-container,  .petit-pret-container,  .accompagner-container {    grid-template-columns: 1fr;
  
}  .approche-grid {    grid-template-columns: 1fr;
  
}  .footer-top {    grid-template-columns: 1fr 1fr;
  
}
}
@media (max-width: 768px) {  .navbar {    padding: 0 20px;
  
}  .navbar-links {    display: none;
  
}  .hero {    padding: 100px 0 40px;
    width: 100%;
    overflow: hidden;
  
}  .hero-container {    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  
}  .hero-left h1 {    font-size: 32px;
    line-height: 1.2;
    word-break: break-word;
  
}  .simulator-card {    width: 100% !important;
    max-width: 100%;
    padding: 24px 20px;
    box-sizing: border-box;
  
}  .btn-primary {    width: 100% !important;
    white-space: normal;
    text-align: center;
    padding: 14px 20px;
    display: inline-flex;
  
}  .duration-options {    overflow-x: auto;
    padding-bottom: 6px;
    justify-content: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
  
}  .duration-options::-webkit-scrollbar {    display: none;
  
}  .duration-option {    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 13px;
  
}  .stats-cards {    flex-direction: column;
    gap: 16px;
  
}  .prets-grid {    grid-template-columns: 1fr;
  
}  .pret-card {    min-height: auto;
  
}  .projet-card {    max-width: 300px;
    width: 100%;
  
}  .etapes-cards {    flex-direction: column;
    align-items: center;
  
}  .accompagner-stats {    grid-template-columns: 1fr;
  
}  .avis-cards {    flex-direction: column;
    align-items: center;
  
}  .alternatives-section h2 {    font-size: 32px;
    margin-bottom: 30px;
  
}  .alternatives-grid {    grid-template-columns: 1fr;
    gap: 30px;
  
}  .alt-card {    padding: 24px;
    margin-bottom: 16px;
  
}  .bank-card {    padding: 24px;
  
}  .bank-header {    gap: 10px;
    margin-bottom: 20px;
  
}  .bank-name {    font-size: 20px;
  
}  .offer-title {    font-size: 22px;
  
}  .btn-purple {    padding: 15px;
  
}  .reglementation-container {    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  
}  .reglementation-img {    width: 280px;
    height: 280px;
    max-width: 100%;
  
}  .reglementation-content h2 {    font-size: 28px;
    line-height: 1.3;
  
}  .reglementation-content p {    text-align: left;
  
}  .etapes-section {    padding: 80px 20px;
  
}  .etapes-section h2 {    font-size: 28px;
    margin-bottom: 40px;
  
}  .etapes-grid {    grid-template-columns: 1fr;
    gap: 40px;
  
}  .etapes-left {    padding-right: 0;
    justify-content: center;
  
}  .iphone-mockup {    width: 220px;
    height: 440px;
    border: 2px solid #1a1a1a;
  
}  .etapes-right {    width: 100%;
    height: auto;
    padding: 0;
  
}  .etapes-bubble-bg {    width: 100%;
    height: 100%;
    border-radius: 30%;
  
}  .etape-horizontal-card {    width: 100%;
    padding: 20px;
  
}  .etape-info {    gap: 15px;
  
}  .etape-val {    min-width: 70px;
    font-size: 17px;
  
}  .securite-items {    flex-direction: column;
    gap: 24px;
  
}  .guides-grid {    grid-template-columns: 1fr 1fr;
  
}  .footer-top {    grid-template-columns: 1fr;
  
}  section {    padding-left: 20px !important;
    padding-right: 20px !important;
  
}  h1, h2 {
    font-size: 32px;
    line-height: 1.2;
  
}  .alternatives-section h2,
  .reglementation-content h2,
  .etapes-section h2,
  .section-title-alt,
  .steps-title-modern,
  .step-title {
    font-size: 32px !important;
    line-height: 1.2;

}
}/* Mobile Menu Toggle Styles */.mobile-toggle {  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1200;

}.mobile-toggle span {  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-dark);
  transition: 0.3s;

}
@media (max-width: 768px) {  .mobile-toggle { display: flex;
 
}    .mobile-menu {    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 88vw);
    height: 100vh;
    background: white;
    z-index: 1150;
    display: flex;
    flex-direction: column;
    padding: 90px 24px 24px;
    gap: 25px;
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  
}  .mobile-menu.active { right: 0;
 
}  .mobile-menu a {    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
  
}  .mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg);
 
}  .mobile-toggle.active span:nth-child(2) { opacity: 0;
 
}  .mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg);
 
}
}/* Animations */
@keyframes fadeInUp {  from {    opacity: 0;
    transform: translateY(30px);
  
}  to {    opacity: 1;
    transform: translateY(0);
  
}
}.reveal {  opacity: 0;
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);

}.reveal-up {  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);

}.reveal-left {  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);

}.reveal-right {  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);

}.revealed {  opacity: 1 !important;
  transform: translate(0, 0) !important;

}/* Staggered transition delays for lists/grids */.stagger-container > *:nth-child(1) { transition-delay: 0.1s;
 
}.stagger-container > *:nth-child(2) { transition-delay: 0.2s;
 
}.stagger-container > *:nth-child(3) { transition-delay: 0.3s;
 
}.stagger-container > *:nth-child(4) { transition-delay: 0.4s;
 
}.stagger-container > *:nth-child(5) { transition-delay: 0.5s;
 
}.stagger-container > *:nth-child(6) { transition-delay: 0.6s;
 
}.fade-in {  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;

}.fade-in.visible {  opacity: 1;
  transform: translateY(0);

}/* ========== MEGA MENU STYLES ========== */.mega-menu-container {  position: relative;
  display: inline-block;

}.mega-menu-trigger {  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;

}.mega-menu-trigger i {  font-size: 12px;
  transition: transform 0.3s;

}.mega-menu-container:hover .mega-menu-trigger i {  transform: rotate(180deg);

}.mega-menu {  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 30px;
  min-width: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 10px;

}.mega-menu-container:hover .mega-menu {  opacity: 1;
  visibility: visible;
  margin-top: 0;

}.mega-menu::before {  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;

}.mega-menu-content {  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;

}.mega-menu-column h4 {  color: #0A2140;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;

}.mega-menu-column a {  display: flex;
  align-items: center;
  gap: 10px;
  color: #374151;
  text-decoration: none;
  padding: 10px 0;
  font-size: 14px;
  transition: all 0.2s;
  border-radius: 6px;

}.mega-menu-column a:hover {  color: #1E3A5F;
  background: #f3f4f6;
  padding-left: 10px;

}.mega-menu-column a i {  color: #1E3A5F;
  width: 20px;
  font-size: 14px;

}/* Mobile Menu Sections */.mobile-menu-section {  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  margin-bottom: 15px;

}.mobile-menu-section h4 {  color: #1E3A5F;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;

}.mobile-menu-section a {  padding-left: 15px;
  font-size: 14px;
}
.amount-display-row > span {
  white-space: nowrap;
}
.amount-display-row > div {
  white-space: nowrap;
  overflow: hidden;
}
.amount-display-row > div > span {
  white-space: nowrap;
}
/* Responsive Simulator Fix */

@media (max-width: 576px) {
  .amount-display-row {
    flex-direction: column !important;

    align-items: stretch !important;

    gap: 8px !important;

    margin-bottom: 15px !important;

  
}
  
  .amount-display-row > span {
    font-size: 13px !important;

    margin-bottom: 4px !important;

    display: block !important;

    color: #0A2140 !important;

    text-align: left !important;

    font-weight: 700 !important;

  
}
  
  .amount-display-row > div {
    width: 100% !important;

    justify-content: space-between !important;

    padding: 12px 15px !important;

    background: #fff !important;

    border-radius: 10px !important;

    box-shadow: 0 4px 10px rgba(0,0,0,0.03) !important;

    border: 1px solid #f3f4f6 !important;

  
}

  .simulator-card, .simulator-card-large {
    padding: 24px 16px !important;

  
}
  
  .amount-display-row span, .amount-display-row input {
    font-size: 14px !important;

  
}
  
  .amount-display-row input {
    font-size: 18px !important;

    width: 65px !important;

    flex-shrink: 0 !important;

    text-align: right !important;

  
}

}

.hide-arrows::-webkit-outer-spin-button,
.hide-arrows::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.hide-arrows[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.amount-display-row input[type=number]::-webkit-outer-spin-button,
.amount-display-row input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.amount-display-row input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}



