/* ==========================================
   VARIABLES ET RESET - DESIGN PROFESSIONNEL MODERNE
   ========================================== */
:root {
    /* Nouvelle Palette Professionnelle */
    --primary-dark: #0A192F;        /* Bleu marine très profond */
    --primary-blue: #1A365D;        /* Bleu marine */
    --secondary-blue: #2C5282;      /* Bleu professionnel */
    --accent-blue: #3182CE;         /* Bleu électrique */
    --light-blue: #4299E1;          /* Bleu clair */
    --gold: #D4AF37;                /* Or élégant */
    --gold-light: #F6E05E;          /* Or clair */
    --success: #38A169;             /* Vert professionnel */
    --success-light: #48BB78;       /* Vert clair */
    
    /* Couleurs neutres sophistiquées */
    --white: #FFFFFF;
    --off-white: #F7FAFC;
    --light-gray: #EDF2F7;
    --medium-gray: #CBD5E0;
    --dark-gray: #4A5568;
    --text-dark: #1A202C;
    --text-medium: #2D3748;
    --text-light: #718096;
    --border-light: #E2E8F0;
    
    /* Variables de tailles */
    --header-height: 75px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
    
    /* Ombres élégantes */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  padding-top: var(--header-height);
}

/* ==========================================
   HEADER PROFESSIONNEL
   ========================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  transition: var(--transition-base);
}

.navbar {
  height: var(--header-height);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 30px;
}

/* Logo professionnel */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  cursor: pointer;
  letter-spacing: -0.5px;
  transition: transform var(--transition-base);
}

.navbar-logo:hover {
  transform: scale(1.02);
}

.navbar-logo i {
  font-size: 26px;
  color: var(--accent-blue);
}

.logo-text {
  font-size: 1.3rem;
  color: var(--primary-blue);
}

.logo-badge {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  font-size: 0.6rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

/* ==========================================
   GESTION DES ÉTAPES
   ========================================== */
.step {
  display: none;
  animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
}

.step.active {
  display: block;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   HERO HEADER MODERNE BLEU/OR
   ========================================== */
.hero-header {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-blue) 30%,
    var(--secondary-blue) 60%,
    var(--accent-blue) 100%
  );
  background-size: 300% 300%;
  animation: gradientFlow 12s ease infinite;
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 520px;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Pattern professionnel animé */
.hero-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.03) 40px,
    rgba(255, 255, 255, 0.03) 80px
  );
  animation: patternSlide 20s linear infinite;
  z-index: 1;
}

@keyframes patternSlide {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(80px) translateY(80px);
  }
}

/* Particules flottantes */
.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.particles-bg::before,
.particles-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.particles-bg::before {
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(65, 130, 206, 0.3) 0%,
    transparent 70%
  );
  top: -150px;
  left: -150px;
  animation: floatParticle1 14s ease-in-out infinite;
}

.particles-bg::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.25) 0%,
    transparent 70%
  );
  bottom: -200px;
  right: -200px;
  animation: floatParticle2 16s ease-in-out infinite;
}

@keyframes floatParticle1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(70px, -70px) scale(1.15);
    opacity: 0.7;
  }
}

@keyframes floatParticle2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-60px, 60px) scale(1.1);
    opacity: 0.6;
  }
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(10, 25, 47, 0.2) 100%
  );
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
}

/* Sous-titre avec gradient moderne */
.hero-subtitle {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  letter-spacing: 0.5px;

  /* Gradient bleu/or */
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    var(--gold) 15%,
    var(--light-blue) 30%,
    var(--gold-light) 45%,
    #ffffff 60%,
    var(--accent-blue) 75%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  animation:
    shimmerText 5s linear infinite,
    subtitleFloat 3s ease-in-out infinite;

  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4))
    drop-shadow(0 0 50px rgba(65, 130, 206, 0.2));
}

@keyframes shimmerText {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes subtitleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Icône shield */
.hero-subtitle i {
  font-size: 2.2rem;
  color: var(--success-light);
  animation: shieldPulse 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(72, 187, 120, 0.6));
}

@keyframes shieldPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 15px rgba(72, 187, 120, 0.6));
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 25px rgba(72, 187, 120, 0.8));
  }
}

/* Badge "Validation Sécurisée" */
.celebration-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 14px 35px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 35px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%,
  100% {
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.15),
      0 0 30px rgba(65, 130, 206, 0.3),
      inset 0 0 20px rgba(255, 255, 255, 0.1);
    border-color: rgba(65, 130, 206, 0.4);
  }
  50% {
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.15),
      0 0 50px rgba(212, 175, 55, 0.4),
      inset 0 0 30px rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
  }
}

.year-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-shadow: 0 2px 15px rgba(255, 255, 255, 0.3);
}

/* Sparkles */
.sparkle {
  font-size: 1.5rem;
  animation: sparkleRotate 4s ease-in-out infinite;
  display: inline-block;
}

.sparkle:first-child {
  animation-delay: 0s;
}

.sparkle:last-child {
  animation-delay: 2s;
}

@keyframes sparkleRotate {
  0% {
    color: var(--gold);
    transform: rotate(0deg) scale(1);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
  }
  25% {
    color: var(--accent-blue);
    transform: rotate(90deg) scale(1.2);
    filter: drop-shadow(0 0 15px rgba(65, 130, 206, 0.6));
  }
  50% {
    color: var(--gold-light);
    transform: rotate(180deg) scale(1);
    filter: drop-shadow(0 0 10px rgba(246, 224, 94, 0.6));
  }
  75% {
    color: var(--light-blue);
    transform: rotate(270deg) scale(1.2);
    filter: drop-shadow(0 0 15px rgba(66, 153, 225, 0.6));
  }
  100% {
    color: var(--gold);
    transform: rotate(360deg) scale(1);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
  }
}

/* Titre principal */
.hero-title {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow:
    0 0 30px rgba(65, 130, 206, 0.4),
    0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  animation: titleSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes titleSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.word-animate {
  display: inline-block;
  animation: wordFadeIn 0.8s ease-out;
  animation-fill-mode: both;
}

.word-animate:nth-child(1) {
  animation-delay: 0.1s;
}
.word-animate:nth-child(2) {
  animation-delay: 0.2s;
}
.word-animate:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes wordFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Paragraphe */
.hero-header p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 700px;
  margin: 25px auto;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: descriptionFadeIn 1s ease-out 0.4s both;
}

@keyframes descriptionFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Félicitations */
.congratulation-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  animation: congratsSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

@keyframes congratsSlideIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.star {
  font-size: 1.5rem;
  color: var(--gold);
  animation: starTwinkle 2s ease-in-out infinite;
  display: inline-block;
}

.star:first-child {
  animation-delay: 0s;
}

.star:last-child {
  animation-delay: 1s;
}

@keyframes starTwinkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.2) rotate(20deg);
    opacity: 0.7;
  }
}

/* Icônes */
.celebration-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-top: 30px;
  animation: iconsFadeIn 1s ease-out 0.8s both;
}

@keyframes iconsFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.celebration-icon {
  font-size: 2.5rem;
  animation: iconFloat 2.5s ease-in-out infinite;
}

.celebration-icon:nth-child(1) {
  color: var(--success-light);
  animation-delay: 0s;
  filter: drop-shadow(0 0 15px rgba(72, 187, 120, 0.5));
}

.celebration-icon:nth-child(2) {
  color: var(--accent-blue);
  animation-delay: 0.4s;
  filter: drop-shadow(0 0 15px rgba(65, 130, 206, 0.5));
}

.celebration-icon:nth-child(3) {
  color: var(--gold);
  animation-delay: 0.8s;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.08);
  }
}

/* ==========================================
   ÉTOILES FLOTTANTES
   ========================================== */
.new-year-container {
  position: relative;
  display: inline-block;
  padding: 40px 80px;
  margin-bottom: 30px;
}

.floating-star {
  position: absolute;
  font-size: 1.5rem;
  animation:
    starFloat 3s ease-in-out infinite,
    starTwinkleGlow 2s ease-in-out infinite;
}

.star-1 {
  top: 0;
  left: 10%;
  color: var(--gold);
  font-size: 1.8rem;
  animation-delay: 0s;
}

.star-2 {
  top: 10%;
  right: 5%;
  color: var(--accent-blue);
  font-size: 1.4rem;
  animation-delay: 0.5s;
}

.star-3 {
  bottom: 5%;
  left: 5%;
  color: var(--gold-light);
  font-size: 1.6rem;
  animation-delay: 1s;
}

.star-4 {
  bottom: 10%;
  right: 10%;
  color: var(--light-blue);
  font-size: 1.3rem;
  animation-delay: 1.5s;
}

.star-5 {
  top: 50%;
  left: 0;
  color: var(--gold);
  font-size: 1.5rem;
  animation-delay: 2s;
}

.star-6 {
  top: 50%;
  right: 0;
  color: var(--accent-blue);
  font-size: 1.5rem;
  animation-delay: 2.5s;
}

@keyframes starFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(10deg);
  }
  50% {
    transform: translateY(-8px) rotate(-5deg);
  }
  75% {
    transform: translateY(-12px) rotate(8deg);
  }
}

@keyframes starTwinkleGlow {
  0%,
  100% {
    opacity: 0.6;
    filter: drop-shadow(0 0 8px currentColor);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 20px currentColor);
    transform: scale(1.3);
  }
}

/* ==========================================
   FORMULAIRES
   ========================================== */
.form-section {
  padding: 80px 15px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  background: var(--off-white);
}

.form-card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: 50px 45px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.form-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2xl);
}

.card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  animation: iconSlideDown 0.6s ease-out;
}

@keyframes iconSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-icon i {
  font-size: 35px;
  color: var(--white);
}

.card-title {
  text-align: center;
  color: var(--primary-dark);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.card-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 40px;
  font-weight: 400;
}

.form-label {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.form-control {
  padding: 14px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--border-radius-md);
  font-size: 0.95rem;
  transition: all var(--transition-base);
  background: var(--white);
  color: var(--text-dark);
}

.form-control:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(65, 130, 206, 0.1);
  outline: none;
  background: var(--white);
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
  border: none;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--accent-blue) 100%);
}

.btn-success {
  background: linear-gradient(135deg, var(--success) 0%, var(--success-light) 100%);
  border: none;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  color: var(--white);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================
   VALIDATION - CORRECTION AFFICHAGE MONTANT
   ========================================== */
.validation-section {
  padding: 100px 15px;
  background: var(--off-white);
}

.validation-card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: 60px 50px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.validation-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--success) 0%, var(--success-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: var(--shadow-md);
}

@keyframes successPop {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.1) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.validation-icon i {
  font-size: 45px;
  color: var(--white);
}

.validation-title {
  color: var(--primary-dark);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.validation-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--light-gray);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 30px;
}

.security-badge i {
  font-size: 1.1rem;
}

/* CORRECTION AFFICHAGE MONTANT - SIMPLE ET DIRECT */
.montant-container {
  margin: 40px 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
}

.montant-label {
  font-size: 1.2rem;
  color: var(--text-medium);
  font-weight: 500;
  margin-bottom: 15px;
}

.montant-value {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 4.5rem;
  font-weight: 800;
  margin: 20px 0;
  letter-spacing: 3px;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.montant-currency {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 10px;
}

.beneficiaire-info {
  background: var(--light-gray);
  padding: 20px;
  border-radius: var(--border-radius-md);
  margin: 30px 0;
  font-size: 1rem;
  color: var(--text-medium);
}

.beneficiaire-info strong {
  color: var(--text-dark);
}

/* ====================
   CARTES BANQUES - RECTANGLES LARGES PLEINE LARGEUR
   ========================================== */
.monde-section {
  padding: 100px 15px;
  background: var(--white);
}

.section-title {
  color: var(--primary-dark);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 50px;
}

/* Container vertical pour les cartes */
.banques-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.monde-card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--border-light);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.monde-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--accent-blue);
}

.monde-card.selected {
  border-color: var(--accent-blue);
  border-width: 3px;
  background: linear-gradient(135deg, rgba(65, 130, 206, 0.03) 0%, rgba(212, 175, 55, 0.02) 100%);
  box-shadow: var(--shadow-xl);
}

.monde-check {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--success) 0%, var(--success-light) 100%);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: var(--shadow-lg);
}

.monde-card.selected .monde-check {
  display: flex;
  animation: checkPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkPop {
  0% {
    transform: scale(0) rotate(-180deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* LOGO BANQUE - GRAND EN HAUT */
.monde-image {
  width: 100%;
  max-width: 100%;
  height: 110px;
  background: transparent;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: none;
  padding: 15px;
  margin-bottom: 25px;
}

.monde-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Nom de la banque */
.monde-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Description */
.monde-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================
   FINALISATION
   ========================================== */
.finalisation-section {
  padding: 100px 15px;
  background: var(--off-white);
}

.recap-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.recap-title {
  color: var(--primary-dark);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.recap-grid {
  display: grid;
  gap: 20px;
}

.recap-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: var(--light-gray);
  border-radius: var(--border-radius-sm);
}

.recap-label {
  color: var(--text-light);
  font-weight: 500;
}

.recap-value {
  color: var(--text-dark);
  font-weight: 600;
}

.security-notice {
  background: var(--light-gray);
  padding: 20px;
  border-radius: var(--border-radius-md);
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 4px solid var(--success);
}

.security-notice i {
  font-size: 1.5rem;
  color: var(--success);
}

.security-notice p {
  margin: 0;
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ==========================================
   MODAL
   ========================================== */
.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--success) 0%, var(--success-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.success-icon i {
  font-size: 40px;
  color: var(--white);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  color: var(--white);
  padding: 0;
  margin-top: auto;
}

.footer-main {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-section {
  color: var(--white);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 24px;
  color: var(--gold);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-badge i {
  color: var(--gold);
}

.footer-bottom {
  padding: 30px 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

.footer-trust {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.trust-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-item i {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .form-card {
    padding: 40px 25px;
  }
  
  .montant-value {
    font-size: 3rem;
  }
  
  .monde-card {
    padding: 35px 25px;
    min-height: 200px;
  }
  
  .monde-image {
    height: 90px;
    margin-bottom: 20px;
  }
  
  .monde-name {
    font-size: 1.3rem;
  }
  
  .monde-description {
    font-size: 0.9rem;
  }
  
  .monde-check {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  
  .footer-trust {
    justify-content: center;
  }
  
  .banques-container {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .montant-value {
    font-size: 2.5rem;
  }
  
  .celebration-badge {
    padding: 12px 25px;
  }
  
  .year-text {
    font-size: 1.1rem;
  }
  
  .monde-card {
    padding: 30px 20px;
    min-height: 180px;
  }
  
  .monde-image {
    height: 80px;
  }
  
  .monde-name {
    font-size: 1.2rem;
  }
  
  .monde-description {
    font-size: 0.85rem;
  }
}