/**
 * PAGE EXPORT
 * Styles spécifiques pour export.html
 */

/* ═══════════════════════════════════════════════════════════════════════════
   HERO EXPORT
   ═══════════════════════════════════════════════════════════════════════════ */

.export-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: var(--space-24) 0 var(--space-16);
  margin-top: var(--header-height);
  background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
}

.export-hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .export-hero .container {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-16);
  }
}

.export-hero-content {
  animation: fadeIn 0.8s ease-out;
}

.export-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin: var(--space-6) 0 var(--space-4);
  font-weight: 700;
}

.export-hero-subtitle {
  font-size: var(--text-lg);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: var(--space-8);
  color: var(--gray-600);
}

.export-hero-cta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

@media (max-width: 640px) {
  .export-hero-cta {
    flex-direction: column;
  }
  
  .export-hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

.avantages-rapides {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.avantage-rapide {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: 500;
}

.avantage-rapide i {
  color: var(--accent);
}

/* Globe animé */
.export-hero-visual {
  position: relative;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.globe-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* Appliquez l'animation au globe */
.globe-container:hover .globe {
  animation: globeRotation 120s linear infinite;
}

.globe {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background: 
    radial-gradient(circle at 30% 30%, #2563EB, #1E40AF),
    url('assets/Simplified_World_Map.svg') center/100% 100% no-repeat;
  overflow: hidden;
  background-blend-mode: overlay;
}

.globe::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 1px, transparent 1px),
    radial-gradient(circle at 40% 60%, rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px, 120px 120px;
}

.country-marker {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: var(--radius-full);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.3);
  z-index: 2;
}

.country-marker::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-full);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

.country-marker:hover {
  transform: translate(-50%, -50%) scale(1.5);
  box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.5);
}

.country-marker.active {
  background: #EF4444;
  transform: translate(-50%, -50%) scale(1.5);
  box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.4);
}

.country-marker.active::after {
  border-color: rgba(239, 68, 68, 0.3);
  animation: pulse 1s infinite;
}

.globe-stats {
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 768px) {
  .globe-stats {
    bottom: -100px;
    flex-wrap: wrap;
  }
}

.globe-stat {
  text-align: center;
  padding: var(--space-4) var(--space-6);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  min-width: 120px;
  pointer-events: auto;
  transition: transform 0.3s ease;
}

.globe-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.globe-stat strong {
  display: block;
  font-size: var(--text-2xl);
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.globe-stat span {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 500;
  display: block;
}

/* Ajustez le conteneur du globe */
.globe-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-full);
  overflow: visible;
  margin-bottom: var(--space-16);
}

/* Ajoutez un effet de profondeur au globe */
.globe::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Ajoutez un effet de grille de coordonnées */
.globe::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

/* Animation de pulsation pour les marqueurs actifs */
@keyframes markerPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.country-marker.active {
  animation: markerPulse 2s infinite;
}

/* Ajustez le héros pour accommoder les stats */
.export-hero-visual {
  position: relative;
  animation: slideUp 0.8s ease-out 0.2s both;
  padding-bottom: var(--space-20);
}

/* Tooltips pour les marqueurs de pays */
.country-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: white;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  pointer-events: none;
}

.country-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px;
  border-style: solid;
  border-color: var(--text-primary) transparent transparent transparent;
}

.country-marker:hover .country-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-4px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION PAYS DESSERVIS
   ═══════════════════════════════════════════════════════════════════════════ */

.pays-desservis {
  padding: var(--space-20) 0;
  background: white;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin-top: var(--space-4);
}

.pays-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-6);
  margin: var(--space-12) 0;
}

.pays-card {
  padding: var(--space-6);
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pays-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.pays-card.active {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border-color: var(--accent);
}

.pays-flag {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto var(--space-4);
  box-shadow: var(--shadow-md);
}

.pays-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pays-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.pays-info {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
}

.pays-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.pays-stat {
  text-align: center;
}

.pays-stat strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-primary);
}

.pays-stat span {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

.pays-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  padding: var(--space-1) var(--space-2);
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.zones-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}

.zone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.zone-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION AVANTAGES EXPORT
   ═══════════════════════════════════════════════════════════════════════════ */

.avantages-export {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);
}

.avantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}

.avantage-card {
  padding: var(--space-8);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.avantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.avantage-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
  border-radius: var(--radius-lg);
  color: #1E40AF;
  margin-bottom: var(--space-4);
}

.avantage-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.avantage-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.avantage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.avantage-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--text-primary);
}

.avantage-list i {
  color: var(--accent);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION PROCESSUS EXPORT
   ═══════════════════════════════════════════════════════════════════════════ */

.processus-export {
  padding: var(--space-20) 0;
  background: white;
}

.processus-steps {
  position: relative;
  max-width: 800px;
  margin: var(--space-12) auto 0;
}

.processus-track {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  opacity: 0.3;
}

@media (min-width: 768px) {
  .processus-track {
    left: 50%;
    transform: translateX(-50%);
  }
}

.processus-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .processus-step:nth-child(odd) {
    flex-direction: row-reverse;
  }
  
  .processus-step:nth-child(odd) .step-content {
    margin-right: calc(50% + 40px);
    margin-left: 0;
    text-align: right;
  }
}

.step-number {
  position: absolute;
  left: 40px;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  font-weight: 700;
  border-radius: var(--radius-full);
  z-index: 2;
}

@media (min-width: 768px) {
  .step-number {
    left: 50%;
    transform: translateX(-50%);
  }
}

.step-content {
  margin-left: calc(40px + var(--space-8));
  padding: var(--space-6);
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  flex: 1;
}

@media (min-width: 768px) {
  .step-content {
    margin-left: calc(50% + 40px);
    width: calc(50% - 60px);
  }
}

.step-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.step-content p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.step-duration {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: var(--accent);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION FORMULAIRE DEVIS
   ═══════════════════════════════════════════════════════════════════════════ */

.formulaire-devis {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);
}

.devis-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: start;
}

@media (min-width: 1024px) {
  .devis-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.devis-text h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.devis-text > p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.devis-avantages {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.devis-avantage {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: white;
  border-radius: var(--radius-md);
}

.devis-avantage i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.devis-avantage strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.devis-avantage span {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.devis-form-wrapper {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.form-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.form-header h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.form-header p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.form-group i {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.volume-slider {
  margin-top: var(--space-4);
}

.volume-slider input[type="range"] {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: var(--radius-full);
  outline: none;
}

.volume-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: var(--radius-full);
  cursor: pointer;
}

.volume-labels {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

#volumeValue {
  font-weight: 600;
  color: var(--text-primary);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.form-consent input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
}

.form-consent label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

.submit-btn {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION FAQ EXPORT
   ═══════════════════════════════════════════════════════════════════════════ */

.faq-export {
  padding: var(--space-20) 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-top: var(--space-8);
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-item {
  margin-bottom: var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-tertiary);
  text-align: left;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: var(--border);
}

.faq-question.active {
  background: var(--accent);
  color: white;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-question i {
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 var(--space-6);
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-answer.active {
  padding: var(--space-6);
  max-height: 1000px;
}

.faq-answer p,
.faq-answer ul {
  margin-bottom: var(--space-4);
}

.faq-answer ul {
  padding-left: var(--space-4);
}

.faq-answer li {
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION TEMOIGNAGES
   ═══════════════════════════════════════════════════════════════════════════ */

.temoignages-export {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);
}

.temoignages-slider {
  position: relative;
  max-width: 900px;
  margin: var(--space-12) auto 0;
  overflow: hidden;
}

.temoignages-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.temoignage-card {
  min-width: 100%;
  padding: var(--space-8);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.temoignage-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.temoignage-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.temoignage-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.temoignage-info h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.temoignage-info span {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.temoignage-rating {
  display: flex;
  gap: var(--space-1);
  margin-top: var(--space-2);
}

.temoignage-rating i {
  color: var(--accent);
  fill: currentColor;
}

.temoignage-content {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  position: relative;
  padding-left: var(--space-8);
}

.temoignage-content::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.3;
  font-family: serif;
}

.temoignage-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}

.temoignage-pays {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.temoignage-date {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  margin-top: var(--space-8);
}

.slider-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.1);
}

.slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slider-dots {
  display: flex;
  gap: var(--space-2);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--border);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.slider-dot.active {
  width: 24px;
  background: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MODAL CONTACT EXPERT
   ═══════════════════════════════════════════════════════════════════════════ */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  overflow-y: auto;
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background: white;
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: scaleIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: var(--primary);
  color: white;
}

.modal-header {
  padding: var(--space-12) var(--space-8) var(--space-8);
  text-align: center;
  background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-header i {
  color: #1E40AF;
  margin-bottom: var(--space-4);
}

.modal-header h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.modal-header p {
  color: var(--text-secondary);
  margin: 0;
}

.modal-body {
    padding: var(--space-8);
    max-height: 60vh;
    overflow-y: auto;
}

.expert-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.expert-form .form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.expert-form label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.expert-form input,
.expert-form select,
.expert-form textarea {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  transition: border-color var(--transition-fast);
}

.expert-form input:focus,
.expert-form select:focus,
.expert-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.expert-form button {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-4);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .export-hero {
    min-height: auto;
    padding: var(--space-16) 0;
  }
  
  .pays-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .processus-track {
    left: 20px;
  }
  
  .step-number {
    left: 20px;
  }
  
  .step-content {
    margin-left: calc(20px + var(--space-8));
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .temoignage-card {
    padding: var(--space-6);
  }
  
  .modal-content {
    max-width: 95%;
    margin: 10px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS SPÉCIFIQUES
   ═══════════════════════════════════════════════════════════════════════════ */

/* Animation de rotation du globe */
@keyframes globeSpin {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 100% center;
  }
}

.globe {
  animation: globeSpin 60s linear infinite;
}

.globe:hover {
  animation-play-state: paused;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Style spécifique pour la newsletter export */
.newsletter-export {
  background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
}

.newsletter-export .newsletter-icon {
  background: white;
}
