/* ═══════════════════════════════════════
   SECTIONS — HumanitAID
   ═══════════════════════════════════════ */

/* ── SHARED SECTION BASE ── */

section {
  padding: var(--space-section) var(--section-padding-x);
}

/* ── HERO SECTION ── */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-hero);
  background-size: cover;
  background-position: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.75) 80%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.slide-1 { background-image: linear-gradient(135deg, #2c1810 0%, #5c3420 30%, #8b4513 60%, #c0392b 100%); }
.slide-2 { background-image: linear-gradient(135deg, #0a1628 0%, #1a3a5c 40%, #2980b9 80%, #1abc9c 100%); }
.slide-3 { background-image: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #533483 100%); }
.slide-4 { background-image: linear-gradient(135deg, #1b2838 0%, #2d5016 40%, #3d7a23 70%, #d4a843 100%); }

.slide-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 200px;
  opacity: 0.12;
  z-index: 0;
}

.hero-content {
  position: absolute;
  bottom: 80px;
  left: 60px;
  right: 60px;
  z-index: var(--z-hero);
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  background: rgba(13, 13, 13, 0.55);
  color: var(--blanc);
  font-family: var(--font-mono);
  font-size: var(--fs-badge);
  font-weight: var(--font-medium);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: var(--font-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tighter);
  margin-bottom: 20px;
  color: #fff;
}

.hero-title .accent {
  color: var(--or);
}

.hero-caption {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  max-width: 560px;
  font-style: italic;
  border-left: 3px solid var(--or);
  padding-left: 18px;
  white-space: pre-line;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  right: 60px;
  z-index: var(--z-hero);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}

.hero-dot.active {
  background: var(--or);
  transform: scale(1.4);
}

.hero-counter {
  position: absolute;
  top: 30px;
  right: 60px;
  z-index: var(--z-hero);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.6);
}

.hero {
  scroll-snap-align: start;
}

/* ── STATS STRIP ── */

.stats-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.stat-item {
  padding: 40px 30px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: var(--fs-stat-num);
  font-weight: var(--font-bold);
  font-variant-numeric: tabular-nums;
  color: var(--or);
  display: block;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: var(--fs-stat-label);
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  margin-top: 6px;
}

/* ── PROGRESS BARS / COLLECTES ── */

#collectes {
  background: var(--bg-secondary);
}

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

.progress-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.progress-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.progress-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--or);
}

.progress-card:nth-child(1)::before { background: #E74C3C; }
.progress-card:nth-child(2)::before { background: #3498DB; }
.progress-card:nth-child(3)::before { background: #9B59B6; }
.progress-card:nth-child(4)::before { background: var(--or); }
.progress-card:nth-child(5)::before { background: #27AE60; }

.progress-card-full { grid-column: 1 / -1; }

.card-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.card-title {
  font-family: var(--font-display);
  font-size: var(--fs-card-title);
  font-weight: var(--font-semibold);
  margin-bottom: 8px;
}

.card-desc {
  font-size: var(--fs-card-desc);
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: var(--lh-card);
}

.amounts {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.amount-raised {
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  font-variant-numeric: tabular-nums;
  color: var(--or);
}

.amount-goal {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-variant-numeric: tabular-nums;
  color: var(--text-secondary);
  align-self: flex-end;
}

.bar-track {
  background: var(--track-bg);
  height: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
}

.bar-fill {
  height: 100%;
  border-radius: var(--radius-md);
  width: 0;
  transition: width var(--transition-bar);
}

.bar-fill-1 { background: linear-gradient(90deg, #C0392B, #E74C3C); }
.bar-fill-2 { background: linear-gradient(90deg, #2980B9, #3498DB); }
.bar-fill-3 { background: linear-gradient(90deg, #7D3C98, #9B59B6); }
.bar-fill-4 { background: linear-gradient(90deg, #B7860A, #D4A843); }
.bar-fill-5 { background: linear-gradient(90deg, #1E8449, #27AE60); }

.bar-stats {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-variant-numeric: tabular-nums;
  color: var(--text-secondary);
}

.pct {
  color: var(--text-primary);
  font-weight: var(--font-bold);
  font-variant-numeric: tabular-nums;
}

/* ── CAUSES GRID ── */

#causes {
  background: var(--bg-primary);
}

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

.cause-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.cause-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.cause-card--featured { grid-column: span 2; }

.cause-media {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.cause-media-img {
  width: 100%;
  height: auto;
  display: block;
}

.cause-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 55%);
}

.cause-index {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: #fff;
  background: rgba(13, 13, 13, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.cause-tag {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 1;
  display: inline-block;
  background: rgba(13, 13, 13, 0.55);
  color: var(--or-clair);
  font-family: var(--font-mono);
  font-size: var(--fs-badge);
  font-weight: var(--font-medium);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  backdrop-filter: blur(4px);
}

.cause-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
  padding: 22px;
}

.cause-name {
  font-family: var(--font-display);
  font-size: var(--fs-card-title-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  line-height: var(--lh-heading);
}

.cause-desc {
  font-size: var(--fs-card-desc);
  color: var(--text-secondary);
  line-height: var(--lh-card);
}

.cause-link {
  margin-top: auto;
  color: var(--or);
  font-family: var(--font-mono);
  font-size: var(--fs-badge);
  font-weight: var(--font-semibold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-base);
}

.cause-link::after {
  content: '↗';
  transition: transform var(--transition-base);
}

.cause-link:hover { color: var(--rouge-vif); }
.cause-link:hover::after { transform: translate(2px, -2px); }

/* ── HUMANITARIAN STORIES ── */

#stories {
  background: var(--bg-secondary);
}

.stories-carousel {
  position: relative;
  overflow: hidden;
}

.stories-track {
  display: flex;
  transition: transform 0.5s ease;
}

.story-card {
  min-width: 350px;
  flex-shrink: 0;
  padding: 0 12px;
}

.story-card-inner {
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  height: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.story-card-inner:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.story-img {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  background: linear-gradient(135deg, #1a0808 0%, #5c1a1a 50%, #c0392b 100%);
  position: relative;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: auto;
  display: block;
}

.story-body {
  padding: 24px;
}

.story-category {
  font-family: var(--font-mono);
  font-size: var(--fs-badge);
  font-weight: var(--font-semibold);
  color: var(--or);
  margin-bottom: 8px;
}

.story-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: 10px;
  line-height: 1.3;
}

.story-excerpt {
  font-size: var(--fs-card-desc-sm);
  color: var(--text-secondary);
  line-height: var(--lh-card);
  margin-bottom: 14px;
}

.story-date {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--or);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.carousel-btn:hover {
  border-color: var(--or);
  color: var(--or);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  background: var(--dot-idle);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.carousel-dot.active {
  background: var(--or);
  transform: scale(1.4);
}

/* ── TESTIMONIALS ── */

#temoignages {
  background: var(--bg-secondary);
  position: relative;
}

#temoignages::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 40px;
  font-family: var(--font-display);
  font-size: 300px;
  color: rgba(212, 168, 67, 0.05);
  line-height: 1;
  pointer-events: none;
}

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

.temoignage-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.temoignage-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.temoignage-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 60px;
  color: rgba(212, 168, 67, 0.2);
  line-height: 1;
}

.temoignage-cat {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--fs-badge);
  font-weight: var(--font-semibold);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.cat-deplaces { background: rgba(192, 57, 43, 0.25); color: #E74C3C; }
.cat-orphelins { background: rgba(52, 152, 219, 0.25); color: #5DADE2; }
.cat-veuves { background: rgba(155, 89, 182, 0.25); color: #BB8FCE; }
.cat-victimes { background: rgba(212, 168, 67, 0.25); color: #F0C060; }
.cat-handicapes { background: rgba(39, 174, 96, 0.25); color: #58D68D; }

.temoignage-text {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 24px;
  min-height: 100px;
}

.temoignage-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  background: var(--gris);
}

.author-name {
  font-family: var(--font-display);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  color: var(--text-primary);
}

.author-loc {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ── QUOTES CAROUSEL ── */

.citations {
  background: var(--bg-primary);
  border-block: 1px solid var(--border-default);
  padding: 60px var(--section-padding-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.citations::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--rouge-fade) 0%, transparent 65%);
  opacity: 0.35;
}

.citations-wrap {
  position: relative;
  z-index: 1;
}

.citation-text {
  font-family: var(--font-display);
  font-size: var(--fs-citation);
  font-style: italic;
  line-height: 1.4;
  color: var(--text-primary);
  max-width: 900px;
  margin: 0 auto 20px;
  transition: opacity 0.6s ease;
}

.citation-author {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  transition: opacity 0.6s ease;
}

.citation-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.citation-dot {
  width: 6px;
  height: 6px;
  background: var(--border-strong);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}

.citation-dot.active {
  background: #fff;
  transform: scale(1.5);
}

/* ── NEWS SECTION ── */

#actualites {
  background: var(--bg-primary);
}

.news-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
}

.news-main {
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base);
  cursor: pointer;
}

.news-main:hover {
  border-color: var(--border-strong);
}

.news-main-img {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: linear-gradient(135deg, #1a0808 0%, #5c1a1a 50%, #c0392b 100%);
  position: relative;
  overflow: hidden;
}

.news-main-img-bg {
  position: static;
  width: 100%;
  height: auto;
  display: block;
}

.news-main-img:has(.news-main-img-bg) span {
  display: none;
}

.news-main-img span {
  color: #fff;
  opacity: 0.9;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.news-main-img span .ic {
  width: 64px;
  height: 64px;
}

.news-main-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.5) 100%);
}

.news-main-body {
  padding: 30px;
}

.news-date {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  color: var(--or);
  margin-bottom: 10px;
}

.news-main-title {
  font-family: var(--font-display);
  font-size: var(--fs-card-title-lg);
  font-weight: var(--font-semibold);
  line-height: 1.2;
  margin-bottom: 14px;
}

.news-main-excerpt {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: var(--lh-body);
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.news-card:hover {
  border-color: var(--border-strong);
  transform: translateX(4px);
}

.news-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: var(--gris);
  flex-shrink: 0;
}

.news-card-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  line-height: 1.3;
  margin-bottom: 6px;
}

.news-card-date {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  color: var(--or);
}

/* ── DONATION FORM ── */

#donner {
  background: var(--bg-secondary);
  position: relative;
}

#donner::before {
  content: '♥';
  position: absolute;
  right: 80px;
  top: 60px;
  font-size: 400px;
  color: rgba(192, 57, 43, 0.04);
  line-height: 1;
  pointer-events: none;
}

.don-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.don-left {
  position: relative;
  z-index: 1;
}

.don-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.don-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.don-feature-title {
  font-family: var(--font-display);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  color: var(--or);
  margin-bottom: 4px;
}

.don-feature-desc {
  font-size: var(--fs-card-desc-sm);
  color: var(--text-secondary);
  line-height: var(--lh-card);
}

.don-form {
  background: var(--surface-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  z-index: 1;
}

.don-form-title {
  font-family: var(--font-display);
  font-size: var(--fs-card-title-lg);
  font-weight: var(--font-semibold);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.form-step-label {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  font-weight: var(--font-medium);
  color: var(--or);
  margin-bottom: 12px;
  display: block;
}

.amount-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.amount-btn {
  padding: 14px;
  background: var(--surface-elevated);
  border: 2px solid var(--border-default);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: var(--text-ui);
  font-weight: var(--font-semibold);
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  border-radius: var(--radius-md);
}

.amount-btn:hover,
.amount-btn.selected {
  border-color: var(--or);
  background: rgba(212, 168, 67, 0.12);
  color: var(--or);
}

.custom-amount {
  width: 100%;
  background: var(--surface-elevated);
  border: 2px solid var(--border-default);
  color: var(--text-primary);
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: var(--text-ui);
  font-weight: var(--font-medium);
  font-variant-numeric: tabular-nums;
  outline: none;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base);
}

.custom-amount:hover {
  border-color: var(--border-strong);
}

.custom-amount:focus {
  border-color: var(--or);
}

.custom-amount::placeholder {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.cause-select {
  width: 100%;
  background: var(--surface-elevated);
  border: 2px solid var(--border-default);
  color: var(--text-primary);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: var(--fs-form-input);
  font-weight: var(--font-regular);
  outline: none;
  margin-bottom: 24px;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4A843' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.cause-select:hover {
  border-color: var(--border-strong);
}

.cause-select:focus {
  border-color: var(--or);
}

.cause-select option {
  background: var(--surface);
  color: var(--text-primary);
}

.payment-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.payment-tab {
  flex: 1;
  padding: 12px 8px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: all var(--transition-base);
  border-right: 1px solid var(--border-default);
  text-align: center;
}

.payment-tab:last-child { border-right: none; }
.payment-tab.active { background: var(--rouge); color: #fff; }
.payment-tab:hover:not(.active) { background: var(--surface-elevated); color: var(--text-primary); }

.payment-panel {
  display: none;
  margin-bottom: 24px;
}

.payment-panel.active {
  display: block;
}

.mobile-providers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.provider-btn {
  padding: 12px;
  border: 2px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--surface-elevated);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-base);
}

.provider-btn.selected,
.provider-btn:hover {
  border-color: var(--or);
  background: rgba(212, 168, 67, 0.1);
  color: var(--or);
}

.btn-don {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--fs-btn-lg);
  font-weight: var(--font-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.btn-don::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 100%;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
}

.btn-don:hover::before {
  left: 0;
  right: 0;
}

.btn-don:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192, 57, 43, 0.4);
}

.btn-don:disabled {
  background: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.6;
}

/* ── PARTNERS ── */

#partenaires {
  background: var(--bg-secondary);
  text-align: center;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.partner-item {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-muted);
  padding: 16px 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.partner-item:hover {
  border-color: var(--border-strong);
  color: var(--text-secondary);
}

/* ── FAQ ── */

#faq {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  text-align: left;
}

.faq-question:hover {
  color: var(--or);
}

.faq-icon {
  font-size: 20px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: 16px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: var(--fs-card-desc);
  color: var(--text-secondary);
  line-height: var(--lh-card);
}

/* ── CTA ── */

.cta-section {
  background:
    linear-gradient(rgba(13, 13, 13, 0.88), rgba(26, 26, 26, 0.94)),
    url('/assets/images/1738232041.webp') center/cover no-repeat;
  border-block: 1px solid var(--border-subtle);
  padding: 80px var(--section-padding-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, var(--rouge-fade) 0%, transparent 60%);
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: var(--fs-section-title);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: var(--lh-heading);
}

.cta-sub {
  font-size: var(--fs-body-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */

footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-default);
  padding: 60px var(--section-padding-x) 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo .logo-symbol {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.footer-logo .logo-word {
  font-family: var(--font-display);
  font-size: var(--fs-footer-logo);
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-tighter);
  line-height: 1;
}

.footer-desc {
  font-size: var(--fs-footer-desc);
  color: var(--text-secondary);
  line-height: var(--lh-body);
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: default;
  transition: all var(--transition-base);
  text-decoration: none;
  color: var(--text-secondary);
  opacity: 0.7;
}

.social-btn:hover {
  background: var(--surface-elevated);
  border-color: var(--border-default);
  opacity: 1;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  font-weight: var(--font-semibold);
  color: var(--or);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--fs-footer-desc);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-col-soon {
  color: var(--text-muted);
  font-size: var(--fs-footer-desc);
  cursor: default;
}

.footer-bottom-links .footer-col-soon {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
  color: var(--or);
}
