
:root {
  --orange:        #f97316;
  --orange-dark:   #ea580c;
  --orange-light:  #ffedd5;
  --orange-glow:   rgba(249,115,22,.22);
  --navy:          #0f172a;
  --navy-mid:      #1e293b;
  --navy-light:    #334155;
  --amber:         #fbbf24;
  --amber-light:   #fef3c7;
  --teal:          #0d9488;
  --teal-light:    #f0fdfa;
  --teal-mid:      #99f6e4;
  --red-urgent:    #dc2626;
  --green-done:    #16a34a;
  --warm-white:    #fffbf7;
  --warm-bg:       #faf7f4;
  --warm-border:   #e8ddd0;
  --card-bg:       #ffffff;
  --text-dark:     #1c1208;
  --text-body:     #374151;
  --text-soft:     #78716c;
  --text-xsoft:    #a8a29e;
  --border:        #e5e0d8;

  --shadow-sm:     0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.05);
  --shadow-xl:     0 24px 64px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.06);
  --shadow-orange: 0 8px 28px rgba(249,115,22,.35);

  --radius:        14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --radius-pill:   9999px;
}

/* ════════════════════════════════════════════
  RESET & BASE
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-bg);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}

/* ════════════════════════════════════════════
  NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(15,23,42,.96);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,.3);
}
.navbar-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.75rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: .9rem;
  box-shadow: 0 4px 12px var(--orange-glow);
}
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
}
.nav-brand-name span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .45rem .9rem;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  border-radius: var(--radius-pill);
  transition: all .2s;
}
.nav-link i { font-size: .75rem; }
.nav-link:hover {
  color: white;
  background: rgba(255,255,255,.07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.btn-nav-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .45rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
}
.btn-nav-ghost:hover { color: white; border-color: rgba(255,255,255,.35); }

.btn-nav-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: .5rem 1.25rem;
  font-size: .875rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all .25s;
  box-shadow: var(--shadow-orange);
}
.btn-nav-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(249,115,22,.45);
}

.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: white;
  font-size: .95rem;
  cursor: pointer;
  margin-left: auto;
  transition: all .2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,.12); }

/* Drawer mobile */
.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  background: var(--navy-mid);
  border-left: 1px solid rgba(255,255,255,.07);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.nav-drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: none;
  border-radius: 8px;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: all .2s;
}
.drawer-close:hover { background: rgba(255,255,255,.14); color: white; }
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: .85rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  border-radius: var(--radius);
  transition: all .2s;
}
.drawer-link i { width: 18px; text-align: center; color: var(--orange); font-size: .85rem; }
.drawer-link:hover { background: rgba(255,255,255,.06); color: white; }
.drawer-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* FAB Mobile */
.fab-mobile {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 1.25rem;
  z-index: 800;
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 8px 28px rgba(249,115,22,.5), 0 4px 12px rgba(0,0,0,.15);
  align-items: center;
  justify-content: center;
  transition: all .25s;
}
.fab-mobile:hover { transform: scale(1.08); }
.fab-mobile:active { transform: scale(.94); }
.fab-mobile .fab-ripple {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: .35;
  animation: fab-pulse 2s ease-in-out infinite;
}
@keyframes fab-pulse {
  0%, 100% { transform: scale(1); opacity: .35; }
  50% { transform: scale(1.18); opacity: 0; }
}

/* ════════════════════════════════════════════
  HERO
════════════════════════════════════════════ */
.hero {
  min-height: 90svh;
  padding-top: 68px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-main {
  flex: 1;
  max-width: 1220px;
  margin: 0 auto;
  padding: 4.5rem 1.75rem 3rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── HERO LEFT ── */

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .25; }
}

.hero-h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: white;
  margin-bottom: 1.5rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero-h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 2px;
  opacity: .6;
}


.rotating-word {
  font-style: italic;

  transition: opacity 0.2s ease;
  display: inline-block;
  color: var(--orange);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-size: .9rem;
  font-weight: 700;
  padding: .4rem .8rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all .25s;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(249,115,22,.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 600;
  padding: .4rem .8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  transition: all .25s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  color: white;
  border-color: rgba(255,255,255,.3);
}

/* Trust line */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}
.trust-item i { color: var(--teal); font-size: .72rem; }


/* ── HERO RIGHT ── */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Live activity feed */
.live-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  backdrop-filter: blur(12px);
}
.live-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.live-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: blink 1.6s ease-in-out infinite;
}
.live-count {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-count i { font-size: .75rem; }

.donation-stream {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stream-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .6rem .75rem;
  border-radius: var(--radius);
  transition: background .2s;
  animation: streamIn .4s ease forwards;
}
.stream-row:hover { background: rgba(255,255,255,.05); }
@keyframes streamIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: none; }
}
.stream-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.1);
}
.stream-info { flex: 1; min-width: 0; }
.stream-name {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stream-cause {
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stream-amount {
  font-size: .78rem;
  font-weight: 700;
  color: var(--teal-mid);
  background: rgba(13,148,136,.15);
  border: 1px solid rgba(13,148,136,.2);
  padding: .2rem .65rem;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
  white-space: nowrap;
}
.stream-time {
  font-size: .65rem;
  color: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* Featured campaign card */
.feat-campaign {
  /* Un bleu-noir très profond et mat */
  background: #0f172a; 
  
  /* Une bordure ultra-fine "cristalline" */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Texture de grain (bruit discret) pour l'aspect premium */
.feat-campaign::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://w3.org id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03; /* Presque invisible, mais donne une texture "papier" */
  pointer-events: none;
}

/* Une seule lueur fixe, très douce, comme une lampe dans le coin */
.feat-campaign::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  /* Dégradé de couleur "Aurore" (Violet vers Bleu) */
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}


.feat-campaign-link {
  text-decoration: none;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feat-campaign-link:hover {
  transform: translateY(-3px);
}
.feat-campaign-link:hover .feat-campaign {
  border-color: rgba(249,115,22,0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.feat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-bottom: .35rem;
}

.feat-bar-wrap {
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: .5rem;
}
.feat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 10px;
  width: 72%;
  position: relative;
  overflow: hidden;
}
.feat-bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  animation: shimmer 2.4s linear infinite;
}
@keyframes shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(200%); }
}
.feat-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.feat-pct {
  font-size: .82rem;
  font-weight: 800;
  color: var(--amber);
}
.feat-goal {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
}
.feat-donors {
  display: flex;
  align-items: center;
  gap: 8px;
}
.feat-donors-avatars {
  display: flex;
}
.feat-donors-avatars span {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--navy-mid);
  background: linear-gradient(135deg, var(--orange-light), var(--amber-light));
  display: flex; align-items: center; justify-content: center;
  font-size: .55rem;
  font-weight: 700;
  color: var(--orange-dark);
  margin-left: -8px;
}
.feat-donors-avatars span:first-child { margin-left: 0; }
.feat-donors-text {
  font-size: .73rem;
  color: rgba(255,255,255,.4);
}
.feat-donors-text strong { color: rgba(255,255,255,.7); }

/* ════════════════════════════════════════════
  SECTION COMMONS
════════════════════════════════════════════ */
.section-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 3rem 1.75rem;
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--text-dark);
  letter-spacing: -.02em;
}
.section-heading em { color: var(--orange); font-style: italic; }

.section-sub {
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-top: .5rem;
}

/* ════════════════════════════════════════════
  CAMPAIGNS SECTION
════════════════════════════════════════════ */
.campaigns-section {
  background: var(--warm-bg);
}

.campaigns-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: .45rem .45rem .45rem 1rem;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}
.search-wrap:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.search-wrap input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  color: var(--text-dark);
  min-width: 200px;
}
.search-wrap input::placeholder { color: var(--text-xsoft); }
.search-wrap button {
  width: 32px; height: 32px;
  background: var(--orange);
  border: none;
  border-radius: 50%;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  cursor: pointer;
  transition: all .2s;
}
.search-wrap button:hover { background: var(--orange-dark); transform: scale(1.06); }

.filter-row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-soft);
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.filter-chip i { font-size: .72rem; }
.filter-chip:hover { border-color: var(--orange); color: var(--orange); }
.filter-chip.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.filter-chip.active i { color: var(--orange); }

.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* ── CAMPAIGN CARD ── */
.c-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.c-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(249,115,22,.25);
}

.c-card-img {
  position: relative;
  height: 215px;
  overflow: hidden;
  background: var(--orange-light);
}
.c-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.c-card:hover .c-card-img img { transform: scale(1.07); }

.c-card-urgent {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--red-urgent);
  color: white;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .28rem .75rem .28rem .55rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(220,38,38,.4);
}
.c-card-urgent-pulse {
  width: 6px; height: 6px;
  background: white;
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

.c-card-cat {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(15,23,42,.75);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.85);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 5px;
}
.c-card-cat i { font-size: .6rem; color: var(--orange); }

.c-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.c-card-for {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.c-card-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  border: 2px solid white;
  box-shadow: 0 0 0 1.5px var(--border);
  color: var(--orange-dark);
}
.c-card-for-text {
  font-size: .77rem;
  color: var(--text-soft);
}
.c-card-for-text strong { color: var(--text-body); font-weight: 600; }

.c-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: .55rem;
}
.c-card-desc {
  font-size: .83rem;
  color: var(--text-soft);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.25rem;
  flex: 1;
}

/* Progress */
.c-card-collected {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -.02em;
  margin-bottom: .15rem;
}
.c-card-collected-label {
  font-size: .72rem;
  color: var(--text-xsoft);
  font-weight: 500;
  margin-bottom: .65rem;
}
.prog-bar {
  height: 6px;
  background: var(--orange-light);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: .45rem;
  position: relative;
}
.prog-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 10px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.prog-bar-fill::after {
  content: '';
  position: absolute;
  right: -1px; top: -2px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange-dark);
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(234,88,12,.4);
}
.prog-meta {
  display: flex;
  justify-content: space-between;
  font-size: .73rem;
  margin-bottom: 1rem;
}
.prog-pct { font-weight: 800; color: var(--orange); }
.prog-goal { color: var(--text-xsoft); }

.c-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  gap: .5rem;
}
.c-card-pills {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.c-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--warm-bg);
  border: 1px solid var(--border);
  padding: .22rem .65rem;
  border-radius: var(--radius-pill);
}
.c-pill i { font-size: .6rem; color: var(--orange); }

.btn-voir {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--orange-dark);
  background: var(--orange-light);
  border: 1.5px solid rgba(249,115,22,.2);
  padding: .45rem 1.05rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all .22s;
  white-space: nowrap;
}
.btn-voir:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  box-shadow: 0 6px 18px rgba(249,115,22,.35);
  transform: translateY(-1px);
}

/* Empty state */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-xsoft);
}
.empty-state i {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  opacity: .3;
}

/* ════════════════════════════════════════════
  HOW IT WORKS
════════════════════════════════════════════ */
.how-section { background: white; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.how-step {
  padding: 2.25rem 1.75rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background .2s;
}
.how-step:last-child { border-right: none; }
.how-step:hover { background: var(--warm-bg); }

.how-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: .5rem;
  transition: color .2s;
}
.how-step:hover .how-step-num { color: var(--orange-light); }

.how-step-icon {
  width: 50px; height: 50px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-dark);
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
  transition: all .2s;
}
.how-step:hover .how-step-icon {
  background: var(--orange);
  color: white;
  box-shadow: 0 8px 20px rgba(249,115,22,.3);
}

.how-step-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.how-step-desc {
  font-size: .83rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.how-connector {
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  background: var(--orange);
  border: 3px solid white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: .6rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(249,115,22,.35);
}
.how-step:last-child .how-connector { display: none; }








/* Toggle */
.how-toggle {
  display: flex;
  gap: .5rem;
  justify-content: center;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 5px;
  width: fit-content;
  margin: 2rem auto 2.5rem;
  box-shadow: var(--shadow-sm);
}
.how-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: .5rem 1.25rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-soft);
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all .2s;
}
.how-tab.active {
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow-sm);
}
.how-tab i { color: var(--orange); font-size: .72rem; }
.how-tab.active i { color: rgba(255,255,255,.6); }

/* Panels */
.how-panel { display: none; }
.how-panel.active { display: block; }

/* Grid 3 colonnes (panel soutenir) */
.how-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.how-grid-3 .how-step:nth-child(2) { border-right: 1px solid var(--border); }


/* Responsive */
@media (max-width: 900px) {
  .how-toggle { width: 100%; }
  .how-tab { flex: 1; justify-content: center; }
}
@media (max-width: 640px) {
  .how-grid-3 { grid-template-columns: 1fr; }
  .how-grid-3 .how-step { border-right: none; border-top: 1px solid var(--border); }
  .how-grid-3 .how-step:first-child { border-top: none; }
}



/* ════════════════════════════════════════════
  IMPACT SECTION
════════════════════════════════════════════ */
.impact-section { background: var(--navy); position: relative; overflow: hidden; }
.impact-section .section-heading { color: white; }
.impact-section .section-heading em { color: var(--orange); }
.impact-section .section-sub { color: rgba(255,255,255,.45); }

.impact-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.1) 0%, transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.impact-points {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 2rem;
}
.impact-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.1rem 1.2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  transition: all .25s;
  cursor: default;
}
.impact-point:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(249,115,22,.2);
  transform: translateX(5px);
}
.impact-point-icon {
  width: 42px; height: 42px;
  background: rgba(249,115,22,.15);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: .95rem;
  flex-shrink: 0;
}
.impact-point strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}
.impact-point span {
  font-size: .8rem;
  color: rgba(255,255,255,.38);
  line-height: 1.55;
}

/* Mosaic stats */
.stats-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.mosaic-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .25s;
}
.mosaic-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(249,115,22,.2);
  transform: translateY(-3px);
}
.mosaic-card.accent {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-color: transparent;
  grid-column: 1 / -1;
}
.mosaic-card.accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(249,115,22,.4);
}
.mosaic-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -.02em;
}
.mosaic-card.accent .mosaic-n { font-size: 3.2rem; }
.mosaic-n sub {
  font-family: 'Inter', sans-serif;
  font-size: .42em;
  font-weight: 700;
  color: var(--amber);
  vertical-align: baseline;
  letter-spacing: 0;
}
.mosaic-card.accent .mosaic-n sub { color: rgba(255,255,255,.7); }
.mosaic-l {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: .5rem;
}
.mosaic-card.accent .mosaic-l { color: rgba(255,255,255,.65); }

/* ════════════════════════════════════════════
  REVIEWS SECTION
════════════════════════════════════════════ */
.reviews-section { background: var(--warm-bg); }

.reviews-block {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: white;
}

/* En-tête note */
.rev-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.rev-score-box { text-align: center; }
.rev-score-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -.02em;
}
.rev-stars {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin: 6px 0 4px;
}
.rev-stars i { color: var(--amber); font-size: .85rem; }
.rev-score-label {
  font-size: .72rem;
  color: var(--text-xsoft);
  font-weight: 500;
}

.rev-bars {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.rev-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  color: var(--text-xsoft);
}
.rev-bar-row span:first-child { width: 12px; text-align: right; }
.rev-bar-row span:last-child  { width: 22px; }
.rev-bar-track {
  flex: 1;
  height: 5px;
  background: var(--orange-light);
  border-radius: 10px;
  overflow: hidden;
}
.rev-bar-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 10px;
}

.rev-cta-box { text-align: right; }
.rev-cta-text {
  font-size: .8rem;
  color: var(--text-soft);
  margin-bottom: .75rem;
  max-width: 180px;
  line-height: 1.5;
}
.rev-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--orange-dark);
  background: var(--orange-light);
  border: 1.5px solid rgba(249,115,22,.2);
  padding: .5rem 1.1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.rev-cta-btn:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

/* Grille avis */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.rev-card {
  padding: 1.5rem;
  border-right: 1px solid var(--border);
}
.rev-card:last-child { border-right: none; }

.rev-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: .9rem;
}
.rev-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rev-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid white;
  box-shadow: 0 0 0 1.5px var(--border);
}
.rev-name { font-size: .88rem; font-weight: 700; color: var(--text-dark); }
.rev-location { font-size: .7rem; color: var(--text-xsoft); margin-top: 2px; }
.rev-location i { color: var(--orange); font-size: .6rem; }

.rev-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .22rem .7rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}
.rev-badge-benef { background: var(--teal-light); color: var(--teal); }
.rev-badge-donor { background: var(--amber-light); color: #854F0B; }
.rev-badge-org   { background: #EEEDFE; color: #3C3489; }

.rev-stars-sm {
  display: flex;
  gap: 2px;
  margin-bottom: .75rem;
}
.rev-stars-sm i { color: var(--amber); font-size: .78rem; }

.rev-text {
  font-family: 'Playfair Display', serif;
  font-size: .9rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.rev-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .85rem;
  border-top: 1px solid var(--border);
}
.rev-date { font-size: .7rem; color: var(--text-xsoft); }
.rev-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .68rem;
  font-weight: 600;
  color: var(--teal);
}
.rev-verified i { font-size: .6rem; }

/* Responsive */
@media (max-width: 900px) {
  .rev-header { grid-template-columns: 1fr 1fr; }
  .rev-cta-box { grid-column: 1 / -1; text-align: left; }
  .rev-cta-text { max-width: 100%; }
  .rev-grid { grid-template-columns: 1fr; }
  .rev-card { border-right: none; border-bottom: 1px solid var(--border); }
  .rev-card:last-child { border-bottom: none; }
  .faq-block-header { flex-direction: column; gap: 1rem; }
}
@media (max-width: 640px) {
  .rev-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .faq-panel { padding: .5rem 1.25rem 1rem; }
  .faq-block-header { padding: 1.5rem 1.25rem; }
  .faq-tabs { padding: 0 1.25rem; }
}



/* ════════════════════════════════════════════
  TESTIMONIALS
════════════════════════════════════════════ */
.testi-section { background: var(--warm-bg); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all .25s;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -20px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  font-weight: 900;
  color: var(--orange-light);
  line-height: 1;
  pointer-events: none;
  transition: color .2s;
}
.testi-card:hover {
  border-color: rgba(249,115,22,.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testi-card:hover::before { color: rgba(249,115,22,.12); }

.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: .9rem;
}
.testi-stars i { color: var(--amber); font-size: .82rem; }

.testi-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-light), var(--amber-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-dark);
  font-size: 1rem;
  flex-shrink: 0;
  font-weight: 700;
  border: 2px solid white;
  box-shadow: 0 0 0 1.5px var(--border);
}
.testi-name { font-size: .875rem; font-weight: 700; color: var(--text-dark); }
.testi-role { font-size: .72rem; color: var(--text-xsoft); margin-top: 2px; }


/* ════════════════════════════════════════════
  CTA SECTION
════════════════════════════════════════════ */
.cta-section {
  background: var(--warm-bg);
  padding: 0;
}

.cta-block {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 4rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Halos */
.cta-halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-halo-left {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
  top: -120px; left: -80px;
}
.cta-halo-right {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(13,148,136,.1) 0%, transparent 70%);
  bottom: -80px; right: 400px;
}

/* LEFT */

.cta-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.1rem;
}
.cta-heading em { color: var(--orange); font-style: italic; }

.cta-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  width: fit-content;
  margin-bottom: 2rem;
}

.cta-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  font-size: .9rem;
  font-weight: 700;
  padding: .8rem 1.75rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all .25s;
  box-shadow: var(--shadow-orange);
  text-decoration: none;
}
.cta-btn-main:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(249,115,22,.45);
}

.cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  font-weight: 600;
  padding: .78rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.cta-btn-ghost:hover {
  color: white;
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.05);
}

.cta-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  font-weight: 500;
}
.cta-trust-item i { color: var(--teal); font-size: .7rem; }

/* RIGHT — carte */
.cta-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.cta-card-top {
  background: var(--orange);
  padding: 1.4rem 1.5rem 1.1rem;
}
.cta-card-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cta-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  line-height: 1.35;
}

.cta-card-body {
  padding: 1rem 1.1rem;
}

.cta-prog-wrap {
  height: 5px;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}
.cta-prog-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 10px;
}
.cta-prog-meta {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.1rem;
}
.cta-prog-pct { color: var(--orange); font-weight: 700; }

.cta-donors-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 1.1rem;
}
.cta-avatars { display: flex; }
.cta-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 1.5px solid var(--navy-mid);
  margin-left: -6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .55rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
}
.cta-avatar:first-child { margin-left: 0; }
.cta-donors-text {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
}
.cta-donors-text strong { color: rgba(255,255,255,.65); }

.cta-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 1rem;
}
.cta-amount {
  padding: .5rem 0;
  text-align: center;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  transition: all .18s;
  font-family: 'Inter', sans-serif;
}
.cta-amount:hover { border-color: rgba(249,115,22,.3); color: var(--orange); }
.cta-amount.active {
  background: rgba(249,115,22,.15);
  border-color: rgba(249,115,22,.4);
  color: var(--orange);
}

.cta-donate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: .75rem;
  background: var(--orange);
  color: white;
  font-size: .88rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.cta-donate-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(249,115,22,.35);
}

/* Responsive */
@media (max-width: 1000px) {
  .cta-block {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    gap: 2.5rem;
  }
  .cta-actions { flex-direction: row; width: auto; }
  .cta-card { max-width: 440px; }
}
@media (max-width: 640px) {
  .cta-block { padding: 2rem 1.25rem; }
  .cta-actions { flex-direction: column; }
  .cta-card { max-width: 100%; }
}

/* ════════════════════════════════════════════
  FOOTER
════════════════════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.45);
  padding: 2.5rem .75rem 1rem;
}
.footer-inner { max-width: 1220px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .9rem;
}
.footer-brand-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: .85rem;
  box-shadow: 0 4px 12px var(--orange-glow);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}
.footer-brand-name span { color: var(--orange); }

.footer-tagline {
  font-size: .85rem;
  line-height: 1.72;
  max-width: 250px;
  margin-bottom: 1.4rem;
}
.social-row {
  display: flex;
  gap: .6rem;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249,115,22,.4);
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  color: white;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a i { font-size: .7rem; color: var(--orange); opacity: 0; transition: opacity .2s; }
.footer-col ul li a:hover { color: white; }
.footer-col ul li a:hover i { opacity: 1; }

.footer-bottom {
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
}
.footer-bottom a { color: rgba(255,255,255,.3); transition: color .2s; }
.footer-bottom a:hover { color: var(--orange); }
.footer-heart { color: var(--orange); }

/* ════════════════════════════════════════════
  SCROLL REVEAL ANIMATIONS
════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* Hero initial animations */
.hero-left-content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp .7s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-left-content > *:nth-child(1) { animation-delay: .1s; }
.hero-left-content > *:nth-child(2) { animation-delay: .22s; }
.hero-left-content > *:nth-child(3) { animation-delay: .34s; }
.hero-left-content > *:nth-child(4) { animation-delay: .46s; }
.hero-left-content > *:nth-child(5) { animation-delay: .56s; }

.hero-right > * {
  opacity: 0;
  transform: translateX(24px);
  animation: heroSlideIn .7s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-right > *:nth-child(1) { animation-delay: .3s; }
.hero-right > *:nth-child(2) { animation-delay: .45s; }
.hero-right > *:nth-child(3) { animation-delay: .6s; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: none; }
}
@keyframes heroSlideIn {
  to { opacity: 1; transform: none; }
}

/* Card stagger */
.c-card { animation: cardIn .55s cubic-bezier(.4,0,.2,1) forwards; opacity: 0; }
.c-card:nth-child(1) { animation-delay: .05s; }
.c-card:nth-child(2) { animation-delay: .15s; }
.c-card:nth-child(3) { animation-delay: .25s; }
.c-card:nth-child(4) { animation-delay: .35s; }
.c-card:nth-child(5) { animation-delay: .45s; }
.c-card:nth-child(6) { animation-delay: .55s; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════
  RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-step:nth-child(2) .how-connector { display: none; }
  .how-step:nth-child(2) { border-right: none; }
  .how-step:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .how-step:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 900px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
  
    .hero-right {
        display: block !important;
        width: 100%;
        margin-top: 0.5rem;
    }
  
    .live-card {
        display: none !important;
    }
  
    .feat-campaign {
        width: 100%;
        padding: 1.2rem;
        box-sizing: border-box;
    }
  
    .feat-title {
        font-size: 1.1rem; 
        margin-bottom: 0.8rem;
    }

    .feat-donors-avatars span {
        width: 28px;
        height: 28px;
        font-size: 0.6rem;
    }
    /* .hero-right { display: none; } */



  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero-main { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.25rem 2.5rem; }

  .impact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic-card.accent { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .fab-mobile { display: flex; }
}

@media (max-width: 640px) {
  .hero-main { padding: 2.5rem 1rem 2rem; }
  .section-inner { padding: 3.5rem 1rem; }
  .campaigns-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-top: 1px solid var(--border); }
  .how-step:first-child { border-top: none; }
  .how-connector { display: none !important; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.4rem; }
}
