/* ============================================================
   TransaPay — Feuille de style principale
   Palette centralisée en haut : modifiez ici pour tout ajuster.
   ============================================================ */

:root {
  /* Couleurs de marque */
  --gold: #B8860B;
  --gold-light: #D4AF37;
  --gold-soft: rgba(184, 134, 11, 0.08);
  --charcoal: #2C2C2C;
  --charcoal-800: #1A1A1A;
  --white: #FFFFFF;
  --light-gray: #F7F6F3;
  --border: #ECEAE4;

  /* Texte */
  --text-dark: #1A1A1A;
  --text-gray: #6B7280;
  --text-light: #9CA3AF;

  /* Dégradés */
  --gradient-gold: linear-gradient(135deg, var(--gold-light), var(--gold));

  /* Typographie */
  --font-display: 'Sora', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Rayons & ombres */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(17, 17, 26, 0.05);
  --shadow-md: 0 8px 30px rgba(17, 17, 26, 0.08);
  --shadow-gold: 0 10px 30px rgba(184, 134, 11, 0.25);

  /* Largeur de contenu */
  --container: 1200px;
  --container-wide: 1320px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* Accessibilité : focus visible */
:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Utilitaires de mise en page ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-tint { background: var(--light-gray); }
.section-dark { background: var(--charcoal); color: var(--white); }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
}

.section-sub {
  margin-top: 16px;
  color: var(--text-gray);
  font-size: 17px;
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: rgba(255, 255, 255, 0.7); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

.btn-gold { background: var(--gradient-gold); color: var(--white); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(184, 134, 11, 0.32); }

.btn-outline { background: transparent; border-color: var(--border); color: var(--charcoal); }
.btn-outline:hover { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }

.btn-white { background: var(--white); color: var(--gold); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost-white { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding 0.3s var(--ease);
}
.scrolled .header-inner { padding-top: 12px; padding-bottom: 12px; }

.brand { display: inline-flex; align-items: center; }
.brand img { height: 64px; width: auto; max-width: none; object-fit: contain; display: block; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gradient-gold);
  transition: width 0.28s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }

/* Sélecteur de langue */
.lang-select {
  position: relative;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  transition: border-color 0.25s var(--ease);
}
.lang-btn:hover { border-color: var(--gold); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.lang-select.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--charcoal);
  text-align: left;
  transition: background 0.2s var(--ease);
}
.lang-menu button:hover { background: var(--light-gray); }
.lang-menu button.active { color: var(--gold); font-weight: 600; }

/* Burger (mobile) */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Responsive header ---------- */
@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease);
    z-index: -1;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav a::after { display: none; }
  .burger { display: flex; }
  .header-actions .btn-outline { display: none; }
}

@media (max-width: 560px) {
  .header-actions .btn-gold { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 168px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -160px;
  width: 620px; height: 620px;
  background: var(--gradient-gold);
  filter: blur(120px);
  opacity: 0.14;
  border-radius: 50%;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 5.2vw, 60px);
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-gray);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  color: var(--charcoal);
}
.hero-badge i { color: var(--gold); font-size: 18px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--text-light);
  font-size: 13px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* Maquette téléphone */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 320px;
  background: var(--charcoal-800);
  border-radius: 42px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(17, 17, 26, 0.22);
}
.phone-screen {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: var(--light-gray);
  min-height: 620px;
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 140px; height: 26px;
  background: var(--charcoal-800);
  border-radius: 0 0 16px 16px;
  z-index: 5;
}
.app-top {
  background: var(--gradient-gold);
  color: var(--white);
  padding: 46px 22px 26px;
}
.app-top .label { font-size: 13px; opacity: 0.9; }
.app-balance { font-size: 32px; font-weight: 700; font-family: var(--font-display); margin: 6px 0 16px; }
.app-actions { display: flex; gap: 10px; }
.app-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}
.app-body { padding: 20px; }
.app-body h4 { font-size: 13px; color: var(--text-gray); margin-bottom: 14px; font-family: var(--font-body); font-weight: 600; }
.app-card {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.app-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.app-card .meta { flex: 1; min-width: 0; }
.app-card .meta .t { font-weight: 600; font-size: 14px; }
.app-card .meta .s { font-size: 12px; color: var(--text-gray); }
.app-card .amt { font-weight: 700; font-size: 14px; }

/* Étiquette flottante eSIM */
.phone-tag {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.phone-tag i {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.phone-tag.esim { top: 90px; left: -36px; }
.phone-tag.esim i { background: var(--gold-soft); color: var(--gold); }
.phone-tag.card { bottom: 70px; right: -30px; }
.phone-tag.card i { background: rgba(44,44,44,0.08); color: var(--charcoal); }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero { text-align: center; padding-top: 140px; }
  .hero-badges, .hero-cta, .hero-trust { justify-content: center; }
  .phone-tag { display: none; }
}

/* ============================================================
   BANDEAU DE CONFIANCE / STATS
   ============================================================ */
.trust-bar { background: var(--charcoal); color: var(--white); padding: 20px 0; }
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 40px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}
.trust-item i { color: var(--gold-light); font-size: 20px; }
.trust-item .todo { color: var(--gold-light); font-weight: 600; }

/* ============================================================
   GRILLES DE CARTES GÉNÉRIQUES
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* Cartes d'avantages */
.feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-ic {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.feature h3 { font-size: 20px; margin-bottom: 10px; }
.feature p { color: var(--text-gray); font-size: 15px; }

/* ============================================================
   SERVICES
   ============================================================ */
.service {
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
}
.service-1 { background: var(--gradient-gold); }
.service-2 { background: var(--charcoal); }
.service-3 { background: var(--white); color: var(--charcoal); border: 1px solid var(--border); }
.service-ic { font-size: 44px; margin-bottom: 22px; }
.service-1 .service-ic, .service-2 .service-ic { color: var(--white); }
.service-2 .service-ic { color: var(--gold-light); }
.service-3 .service-ic { color: var(--gold); }
.service h3 { font-size: 24px; margin-bottom: 12px; line-height: 1.2; }
.service-3 h3 { color: var(--charcoal); }
.service > p { font-size: 15px; opacity: 0.92; margin-bottom: 22px; }
.service ul { margin-bottom: 28px; flex: 1; }
.service li {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 11px; font-size: 15px; font-weight: 500;
}
.service li i { font-size: 18px; }
.service-3 li i { color: var(--gold); }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.18);
  color: inherit;
  transition: gap 0.25s var(--ease), background 0.25s var(--ease);
}
.service-3 .service-link { background: var(--gold-soft); color: var(--gold); }
.service-link:hover { gap: 12px; }

/* ============================================================
   COMMENT ÇA MARCHE
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; }
.step { text-align: center; position: relative; }
.step-ic {
  width: 84px; height: 84px;
  margin: 0 auto 22px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; color: var(--gold);
  position: relative;
}
.step-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--text-gray); font-size: 15px; max-width: 300px; margin: 0 auto; }
.how-cta { text-align: center; margin-top: 52px; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   FLUX ESIM / TRANSAPAY (les 3 flux d'argent)
   ============================================================ */
.flows { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.flow {
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--white);
  position: relative;
}
.flow-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px; border-radius: 100px;
  margin-bottom: 16px;
}
.flow-a .flow-tag { background: var(--gold-soft); color: var(--gold); }
.flow-b .flow-tag { background: rgba(44,44,44,0.08); color: var(--charcoal); }
.flow-c .flow-tag { background: rgba(16,122,87,0.1); color: #0f7a57; }
.flow h3 { font-size: 19px; margin-bottom: 8px; }
.flow .price { font-size: 30px; font-weight: 800; font-family: var(--font-display); color: var(--charcoal); margin-bottom: 4px; }
.flow .price small { font-size: 14px; font-weight: 500; color: var(--text-gray); }
.flow p { color: var(--text-gray); font-size: 14px; margin-top: 12px; }
.flow .who { margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--gold); }
@media (max-width: 820px) { .flows { grid-template-columns: 1fr; } }

/* ============================================================
   TARIFICATION (cartes TransaPay)
   ============================================================ */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan.featured {
  border-color: transparent;
  box-shadow: var(--shadow-gold);
  transform: translateY(-8px);
}
.plan.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--white);
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  padding: 6px 16px; border-radius: 100px;
  white-space: nowrap;
}
.plan h3 { font-size: 21px; margin-bottom: 6px; }
.plan .tagline { color: var(--text-gray); font-size: 14px; margin-bottom: 20px; min-height: 40px; }
.plan .price { font-size: 44px; font-weight: 800; font-family: var(--font-display); color: var(--charcoal); line-height: 1; }
.plan .price small { font-size: 15px; font-weight: 500; color: var(--text-gray); }
.plan .provisional {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 4px 10px; border-radius: 100px;
  margin: 14px 0 4px;
}
.plan .esim-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-gray);
  background: var(--light-gray);
  border-radius: 10px;
  padding: 10px 12px;
  margin: 18px 0;
}
.plan .esim-note i { color: var(--gold); font-size: 16px; flex-shrink: 0; }
.plan ul { margin: 8px 0 26px; flex: 1; }
.plan li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; margin-bottom: 12px; color: var(--charcoal);
}
.plan li i { color: var(--gold); font-size: 17px; margin-top: 1px; flex-shrink: 0; }
@media (max-width: 900px) {
  .pricing { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan.featured { transform: none; }
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.testi {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--text-dark);
}
.testi .stars { color: var(--gold-light); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.testi blockquote { font-size: 15px; color: var(--charcoal); line-height: 1.7; margin-bottom: 24px; }
.testi .who { display: flex; align-items: center; gap: 14px; }
.testi .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.testi .who h4 { font-size: 16px; margin-bottom: 2px; font-family: var(--font-body); }
.testi .who span { font-size: 13px; color: var(--text-gray); }
.testi-disclaimer {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease);
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
}
.faq-q i { color: var(--gold); font-size: 22px; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a p { padding: 0 24px 24px; color: var(--text-gray); font-size: 15px; }
.faq-cta { text-align: center; margin-top: 40px; }
.faq-cta p { margin-bottom: 14px; font-weight: 500; color: var(--charcoal); }

/* ============================================================
   BANNIÈRE CTA
   ============================================================ */
.cta-band { padding: 80px 24px; }
.cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--gradient-gold);
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-inner i.spark { font-size: 52px; margin-bottom: 18px; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 46px); color: var(--white); margin-bottom: 16px; }
.cta-inner p { font-size: 18px; opacity: 0.92; max-width: 560px; margin: 0 auto 32px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 28px; }
.cta-trust { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; font-size: 14px; }
.cta-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-form {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 36px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { min-height: 130px; resize: vertical; }
.check-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-gray);
  margin-bottom: 20px;
}
.check-row input { margin-top: 3px; accent-color: var(--gold); }

.info-card {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 22px;
}
.info-card .ic {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--gold-soft); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.info-card h4 { font-size: 16px; margin-bottom: 4px; font-family: var(--font-body); }
.info-card p { color: var(--text-gray); font-size: 15px; }
.socials { display: flex; gap: 12px; margin: 28px 0; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--light-gray);
  color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.socials a:hover { background: var(--gradient-gold); color: var(--white); transform: translateY(-2px); }
.hours h4 { font-size: 16px; margin-bottom: 6px; font-family: var(--font-body); }
.hours p { color: var(--text-gray); font-size: 15px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--charcoal); color: var(--white); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand img { height: 46px; margin-bottom: 20px; background: var(--white); padding: 8px 12px; border-radius: 10px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 6px; }
.footer-col h4 { font-size: 15px; margin-bottom: 18px; color: var(--white); font-family: var(--font-body); }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}
.footer-bottom .fb-trust { display: flex; gap: 20px; }
.footer-bottom .fb-trust span { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   RÉVÉLATION AU DÉFILEMENT
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Badge "info à valider" réutilisable */
.todo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 2px 8px;
  border-radius: 100px;
  vertical-align: middle;
}

/* ============================================================
   SECTION VOYAGE (fond anthracite premium)
   ============================================================ */
#travel { background: var(--charcoal); color: var(--white); padding: 96px 0; overflow: hidden; }
.travel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.travel-copy .eyebrow { color: var(--gold-light); }
.travel-copy h2 { color: var(--white); font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 18px; }
.travel-copy > p { color: rgba(255,255,255,0.72); font-size: 17px; margin-bottom: 36px; max-width: 520px; }
.travel-points { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.travel-point { display: flex; gap: 18px; align-items: flex-start; }
.travel-point .tp-ic {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.travel-point h3 { font-size: 19px; color: var(--white); margin-bottom: 6px; font-family: var(--font-display); }
.travel-point p { font-size: 15px; color: rgba(255,255,255,0.66); line-height: 1.6; }

/* Visuel : carte de paiement dorée stylisée */
.travel-visual { display: flex; justify-content: center; position: relative; }
.travel-visual::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  background: var(--gradient-gold);
  filter: blur(90px);
  opacity: 0.22;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.pay-card {
  position: relative;
  width: 380px;
  max-width: 100%;
  aspect-ratio: 1.6 / 1;
  border-radius: 22px;
  background: linear-gradient(135deg, #E7C766 0%, #C99A2E 45%, #9C7418 100%);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  padding: 26px 28px;
  color: #2C2C2C;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.pay-card::after {
  content: '';
  position: absolute;
  top: -60%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 65%);
  border-radius: 50%;
}
.pay-card-top { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 1; }
.pay-card-brand { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.pay-card-brand span { opacity: 0.65; }
.pay-card-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  background: rgba(44,44,44,0.14); padding: 5px 10px; border-radius: 100px;
}
.pay-card-chip {
  width: 44px; height: 34px;
  border-radius: 7px;
  background: linear-gradient(135deg, #f4e4b0, #d9b64e);
  border: 1px solid rgba(255,255,255,0.4);
  position: relative; z-index: 1;
}
.pay-card-chip::before {
  content: '';
  position: absolute; inset: 8px 6px;
  border: 1px solid rgba(44,44,44,0.25);
  border-radius: 3px;
}
.pay-card-number {
  font-family: var(--font-display); font-size: 20px; letter-spacing: 3px; font-weight: 600;
  position: relative; z-index: 1;
}
.pay-card-bottom { display: flex; justify-content: space-between; align-items: flex-end; position: relative; z-index: 1; }
.pay-card-holder { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; }
.pay-card-holder small { display: block; font-size: 9px; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 3px; }
.pay-card-net { font-family: var(--font-display); font-weight: 800; font-size: 22px; font-style: italic; }
.pay-card-status {
  margin-top: 22px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.pay-card-status i { color: var(--gold-light); }

/* petites pastilles de bénéfices sous la carte */
.travel-badges { display: flex; gap: 10px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.travel-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px; border-radius: 100px;
}
.travel-badge i { color: var(--gold-light); font-size: 16px; }

@media (max-width: 900px) {
  .travel-grid { grid-template-columns: 1fr; gap: 48px; }
  .travel-visual { order: -1; }
  .travel-copy > p { max-width: none; }
}

/* ============================================================
   CARTE (OpenStreetMap / Leaflet)
   ============================================================ */
.map-wrap {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}
#map {
  width: 100%;
  height: 300px;
  background: var(--light-gray);
  z-index: 1;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 500;
  background: var(--white);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  transition: color 0.2s var(--ease);
}
.map-link:hover { color: var(--gold); }
.map-link i { color: var(--gold); font-size: 16px; }
/* Marqueur personnalisé aux couleurs de la marque */
.tp-marker {
  width: 26px; height: 26px;
  background: var(--gradient-gold);
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
@media (max-width: 620px) {
  #map { height: 280px; }
}

/* ============================================================
   Ancrage : compenser le header fixe lors du saut vers une section
   scroll-margin-top = hauteur header (81px) + petite marge,
   valeur négative impossible, donc on gère le padding via le JS.
   ============================================================ */
#hero, #features, #services, #travel, #how, #pricing,
#restricted, #testimonials, #faq, #contact {
  scroll-margin-top: 85px;
}

/* ============================================================
   Drapeaux du sélecteur de langue
   ============================================================ */
.flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}
.lang-btn .flag { margin-right: 2px; }
