:root {
  --c2b-blue: #1e73be;
  --c2b-green: #43a047;
  --c2b-red: #e53935;
  --c2b-dark: #1f2937;
  --c2b-text: #334155;
  --c2b-light: #f8fafc;
  --c2b-white: #ffffff;
  --c2b-border: #e5e7eb;
  --c2b-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --c2b-radius: 18px;
  --c2b-max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--c2b-text);
  background: var(--c2b-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--c2b-max));
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, var(--c2b-dark), #12385a);
  color: var(--c2b-white);
  font-size: 0.92rem;
}

.topbar .container {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.topbar a {
  color: var(--c2b-white);
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--c2b-dark);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
/* LOGO ONG */

.brand-vertical{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:2px;
}

/* ===== Logo Coeur2Bouchons ===== */

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left:14px;
}

.brand-dots{
  display:flex;
  align-items:center;
  gap:6px;
}

.brand-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
  line-height:1.1;
}

/* Nom de l'association */

.brand-name{
  font-weight:900;
  font-size:1.15rem;
  letter-spacing:-0.02em;
  color:var(--c2b-dark);

  padding:4px 12px;
  border-radius:16px;

  background:linear-gradient(
    90deg,
    rgba(59,130,246,0.12),
    rgba(34,197,94,0.10),
    rgba(239,68,68,0.10)
  );
}

/* Slogan */

.brand-slogan{
  font-size:0.68rem;
  font-weight:600;
  color:#64748b;
  margin-top:4px;
  padding-left:12px;
  letter-spacing:0.02em;
}

.brand-dots{
  display:flex;
  gap:6px;
  align-items:center;
  flex-shrink:0;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
}

.dot.blue { background: var(--c2b-blue); }
.dot.green { background: var(--c2b-green); }
.dot.red { background: var(--c2b-red); }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  color: var(--c2b-dark);
}

.nav {
  display: flex;
  gap: 8px 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.nav a {
  font-weight: 700;
  color: var(--c2b-dark);
  padding: 8px 12px;
  border-radius: 999px;
  transition: 0.2s ease;
  font-size: 0.95rem;
  line-height: 1.2;
  text-align: center;
}

.nav a:hover {
  color: var(--c2b-blue);
  background: rgba(30, 115, 190, 0.08);
}

.nav a.active {
  color: var(--c2b-blue);
  background: rgba(30, 115, 190, 0.12);
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--c2b-blue);
  color: var(--c2b-white);
}

.btn-secondary {
  background: var(--c2b-green);
  color: var(--c2b-white);
}

.btn-outline {
  border-color: var(--c2b-blue);
  color: var(--c2b-blue);
  background: transparent;
}

.hero {
  padding: 84px 0 64px;
  background: linear-gradient(135deg, #eef6ff 0%, #f7fff5 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 700;
  color: var(--c2b-blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}


.hero h1,
.page-hero h1 {
  margin: 0 0 16px;
  line-height: 1.12;
  color: var(--c2b-dark);
  font-size: clamp(1.95rem, 4vw, 3.2rem);
}

.hero p,
.page-hero p {
  margin: 0 0 24px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-card {
  background: var(--c2b-white);
  border-radius: var(--c2b-radius);
  box-shadow: var(--c2b-shadow);
  padding: 28px;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--c2b-light);
}

.section-title {
  margin: 0 0 12px;
  color: var(--c2b-dark);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.section-intro {
  max-width: 760px;
  margin: 0 0 34px;
  font-size: 1.05rem;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--c2b-white);
  border: 1px solid var(--c2b-border);
  border-radius: var(--c2b-radius);
  padding: 24px;
  box-shadow: var(--c2b-shadow);
}

.card h3 {
  margin-top: 0;
  color: var(--c2b-dark);
}

.metric {
  text-align: center;
}

.metric-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c2b-blue);
  margin-bottom: 8px;
}

.cta-band {
  background: linear-gradient(90deg, var(--c2b-blue), var(--c2b-green));
  color: var(--c2b-white);
  border-radius: 28px;
  padding: 36px;
}

.cta-band h2 {
  margin-top: 0;
  color: var(--c2b-white);
}

.footer {
  background: linear-gradient(135deg, var(--c2b-dark) 0%, #122f4b 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
}

.footer h3,
.footer h4 {
  color: var(--c2b-white);
  margin-top: 0;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li + li {
  margin-top: 10px;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  padding: 72px 0 42px;
  background: #f8fbff;
  border-bottom: 1px solid var(--c2b-border);
}

.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--c2b-green);
  background: #f3fbf4;
  border-radius: 10px;
}

.form-placeholder {
  border: 2px dashed var(--c2b-border);
  border-radius: var(--c2b-radius);
  padding: 24px;
  background: #fff;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-name {
    padding: 5px 10px;
    border-radius: 10px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--c2b-white);
    border-bottom: 1px solid var(--c2b-border);
    padding: 16px 14px 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 10px;
  }

  .nav a {
    padding: 8px 10px;
    font-size: 0.92rem;
    text-align: center;
  }

  .nav.open {
    display: flex;
  }
}

.hero-premium {
  position: relative;
  overflow: hidden;
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(30, 115, 190, 0.12), transparent 28%),
    radial-gradient(circle at 85% 30%, rgba(67, 160, 71, 0.12), transparent 25%),
    radial-gradient(circle at 60% 80%, rgba(229, 57, 53, 0.08), transparent 22%);
  pointer-events: none;
}

.hero-lead {
  max-width: 760px;
}

.hero-mini-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.mini-proof-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--c2b-border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--c2b-shadow);
}

.mini-proof-item strong {
  display: block;
  color: var(--c2b-dark);
  margin-bottom: 4px;
}

.mini-proof-item span {
  font-size: 0.95rem;
}

.hero-visual-card {
  position: relative;
  min-height: 420px;
}

.caps-visual {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 55%, #f6fff4 100%);
  box-shadow: var(--c2b-shadow);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.7);
}

.cap {
  position: absolute;
  display: block;
  border-radius: 999px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
}

.cap-1 { width: 130px; height: 130px; background: #1e73be; top: 30px; left: 28px; }
.cap-2 { width: 95px; height: 95px; background: #43a047; top: 58px; right: 54px; }
.cap-3 { width: 120px; height: 120px; background: #e53935; top: 180px; left: 90px; }
.cap-4 { width: 85px; height: 85px; background: #f4c542; top: 210px; right: 42px; }
.cap-5 { width: 68px; height: 68px; background: #7e57c2; bottom: 50px; left: 36px; }
.cap-6 { width: 105px; height: 105px; background: #26a69a; bottom: 78px; right: 110px; }
.cap-7 { width: 56px; height: 56px; background: #fb8c00; bottom: 26px; right: 38px; }
.cap-8 { width: 72px; height: 72px; background: #ef5350; top: 128px; left: 230px; }

.hero-side-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(360px, calc(100% - 48px));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--c2b-shadow);
  border: 1px solid rgba(255,255,255,0.8);
}

.hero-side-card h2 {
  margin-top: 0;
  color: var(--c2b-dark);
  font-size: 1.4rem;
}

.hero-side-card ul {
  margin: 0;
  padding-left: 18px;
}

.section-heading-center {
  text-align: center;
  margin-bottom: 34px;
}

.section-intro.center {
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.stat-label {
  font-weight: 600;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  position: relative;
  padding-top: 56px;
}

.process-step {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--c2b-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.action-card {
  position: relative;
  padding-top: 58px;
}

.action-card.featured {
  transform: translateY(-8px);
}

.action-badge {
  position: absolute;
  top: 18px;
  left: 20px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
}

.blue-bg {
  background: var(--c2b-blue);
}

.green-bg {
  background: var(--c2b-green);
}

.red-bg {
  background: var(--c2b-red);
}

.resource-band {
  background: linear-gradient(120deg, var(--c2b-dark) 0%, #12385a 55%, #1f6f52 100%);
  border-radius: 30px;
  padding: 42px;
  color: var(--c2b-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.resource-band h2 {
  color: var(--c2b-white);
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.eyebrow.light {
  color: rgba(255,255,255,0.8);
}

.resource-text {
  max-width: 760px;
}

.resource-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.resource-outline {
  border-color: #ffffff;
  color: #ffffff;
}

.news-card {
  min-height: 220px;
}

.final-cta-section {
  padding-top: 20px;
}

.final-cta {
  text-align: center;
  padding: 42px 28px;
  border-radius: 28px;
}

.final-cta h2 {
  margin-top: 0;
  color: var(--c2b-dark);
}

.center-actions {
  justify-content: center;
}

@media (max-width: 980px) {
  .hero-mini-proof,
  .stats-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-card {
    min-height: 520px;
  }

  .resource-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .resource-actions {
    min-width: auto;
    width: 100%;
  }

  .resource-actions .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero-visual-card {
    min-height: 460px;
  }

  .hero-side-card {
    position: absolute;
    right: 16px;
    left: 16px;
    bottom: 16px;
    width: auto;
  }

  .cap-1 { width: 92px; height: 92px; top: 24px; left: 18px; }
  .cap-2 { width: 72px; height: 72px; top: 54px; right: 30px; }
  .cap-3 { width: 94px; height: 94px; top: 146px; left: 58px; }
  .cap-4 { width: 64px; height: 64px; top: 180px; right: 26px; }
  .cap-5 { width: 52px; height: 52px; bottom: 78px; left: 24px; }
  .cap-6 { width: 84px; height: 84px; bottom: 90px; right: 78px; }
  .cap-7 { width: 44px; height: 44px; bottom: 58px; right: 24px; }
  .cap-8 { width: 56px; height: 56px; top: 108px; left: 170px; }
}

.collecte-hero {
  background: linear-gradient(135deg, #eef6ff 0%, #f8fcff 50%, #f5fff5 100%);
}

.search-section {
  padding-top: 48px;
}

.search-panel {
  background: #ffffff;
  border: 1px solid var(--c2b-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--c2b-shadow);
  margin-bottom: 28px;
}

.search-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
}

.search-title {
  margin: 0 0 8px;
  color: var(--c2b-dark);
  font-size: 1.6rem;
}

.search-subtitle {
  margin: 0;
  color: var(--c2b-text);
}

.search-controls {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
}

.search-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--c2b-dark);
}

.search-input,
.search-select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--c2b-border);
  border-radius: 16px;
  padding: 0 16px;
  font-size: 1rem;
  background: #fff;
  color: var(--c2b-dark);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus,
.search-select:focus {
  border-color: var(--c2b-blue);
  box-shadow: 0 0 0 4px rgba(30, 115, 190, 0.12);
}

.results-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.results-count {
  font-weight: 800;
  color: var(--c2b-dark);
  font-size: 1.05rem;
}

.results-help {
  color: #64748b;
  font-size: 0.95rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.result-card {
  background: #fff;
  border: 1px solid var(--c2b-border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--c2b-shadow);
}

.result-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--c2b-dark);
  font-size: 1.25rem;
}

.result-type {
  display: inline-block;
  margin-bottom: 14px;
  background: rgba(30, 115, 190, 0.1);
  color: var(--c2b-blue);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.result-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.result-meta li + li {
  margin-top: 6px;
}

.result-contact,
.result-details {
  margin: 0 0 10px;
}

.result-details {
  color: #475569;
}

.no-results {
  text-align: center;
  padding: 42px 24px;
  background: #fff;
  border: 1px dashed var(--c2b-border);
  border-radius: 24px;
  margin-top: 12px;
}

.no-results h3 {
  margin-top: 0;
  color: var(--c2b-dark);
}

@media (max-width: 980px) {
  .search-panel-top,
  .search-controls,
  .results-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .search-panel-top {
    display: grid;
  }
}

@media (max-width: 640px) {
  .search-panel {
    padding: 20px;
  }

  .result-card {
    padding: 20px;
  }
}

.error-box {
  background: #fff7f7;
  border: 1px solid #f3caca;
  color: #7f1d1d;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--c2b-shadow);
}

.error-box h3 {
  margin-top: 0;
  color: #991b1b;
}

.benevole-form {
  max-width: 700px;
  margin-top: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--c2b-border);
  font-size: 1rem;
}

.form-success {
  margin-top: 20px;
  padding: 15px;
  background: #e7f6e7;
  border-radius: 10px;
  color: #2e7d32;
  font-weight: 600;
}

.collecteur-hero {
  background: linear-gradient(135deg, #f3f9ff 0%, #f8fffa 100%);
}

.collecteur-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.collecteur-type-card {
  min-height: 170px;
}

@media (max-width: 980px) {
  .collecteur-hero-grid {
    grid-template-columns: 1fr;
  }
}

.map-panel {
  background: #ffffff;
  border: 1px solid var(--c2b-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--c2b-shadow);
  margin-bottom: 28px;
}

.map-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.map-stats {
  font-weight: 700;
  color: var(--c2b-blue);
}

.collecte-map {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--c2b-border);
}

.map-notice {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #64748b;
}

.map-popup {
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .collecte-map {
    height: 360px;
  }
}

.actualites-hero {
  background: linear-gradient(135deg, #f3f9ff 0%, #fcfffb 100%);
}

.news-toolbar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 26px;
}

.news-head {
  margin-bottom: 26px;
}

.featured-news {
  margin-bottom: 28px;
}

.featured-news-card {
  background: linear-gradient(135deg, #12385a 0%, #1e73be 100%);
  color: #ffffff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--c2b-shadow);
}

.featured-news-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.featured-news-card h2 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.featured-news-card p {
  margin: 0;
  max-width: 900px;
  font-size: 1.05rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-card-item {
  background: #ffffff;
  border: 1px solid var(--c2b-border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--c2b-shadow);
}

.news-card-item h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--c2b-dark);
  font-size: 1.25rem;
}

.news-card-item p {
  margin: 0;
  color: #475569;
}

.news-card-badge {
  display: inline-block;
  margin-bottom: 14px;
  background: rgba(30, 115, 190, 0.1);
  color: var(--c2b-blue);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.news-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.news-card-item .news-meta-line {
  color: #64748b;
}

@media (max-width: 980px) {
  .news-toolbar,
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.don-hero {
  background: linear-gradient(135deg, #f4f9ff 0%, #f9fff8 100%);
}

.don-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.don-use-card {
  min-height: 180px;
}

.don-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.don-panel-text,
.don-panel-card {
  background: #ffffff;
  border: 1px solid var(--c2b-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--c2b-shadow);
}

.don-panel-card h3 {
  margin-top: 0;
  color: var(--c2b-dark);
}

.don-panel-card ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 980px) {
  .don-hero-grid,
  .don-panel {
    grid-template-columns: 1fr;
  }
}

.contact-hero {
  background: linear-gradient(135deg, #f4f9ff 0%, #f9fffb 100%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.contact-path-card {
  min-height: 210px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--c2b-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--c2b-shadow);
}

.contact-info-card h2 {
  margin-top: 0;
  color: var(--c2b-dark);
}

.contact-info-list p {
  margin: 0 0 12px;
}

.contact-info-note {
  margin-top: 18px;
  color: #475569;
}

.contact-tips-list {
  margin: 0;
  padding-left: 18px;
}

.contact-tips-list li + li {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .contact-hero-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

body {
  background:
    radial-gradient(circle at top left, rgba(30, 115, 190, 0.03), transparent 24%),
    radial-gradient(circle at bottom right, rgba(67, 160, 71, 0.03), transparent 22%),
    #ffffff;
}

h1, h2, h3, h4 {
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.95rem, 4vw, 3.2rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.section-title {
  letter-spacing: -0.03em;
}

.card,
.hero-card,
.contact-info-card,
.don-panel-text,
.don-panel-card,
.search-panel,
.map-panel,
.result-card,
.news-card-item,
.featured-news-card,
.final-cta,
.cta-band {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.result-card:hover,
.news-card-item:hover,
.contact-info-card:hover,
.don-panel-card:hover,
.don-panel-text:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.footer a {
  color: rgba(255, 255, 255, 0.92);
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer p,
.footer li {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero p,
.hero p,
.section-intro,
.card p,
.result-details,
.news-card-item p {
  text-wrap: pretty;
}

.home-hero-premium {
  position: relative;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 10% 20%, rgba(30, 115, 190, 0.12), transparent 22%),
    radial-gradient(circle at 90% 30%, rgba(67, 160, 71, 0.12), transparent 22%),
    linear-gradient(135deg, #eef6ff 0%, #f7fff6 100%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.home-hero-side {
  position: relative;
  min-height: 430px;
}

.home-hero-visual {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 58%, #f6fff7 100%);
  box-shadow: var(--c2b-shadow);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.8);
}

.home-cap {
  position: absolute;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.cap-a { width: 126px; height: 126px; background: #1e73be; top: 30px; left: 24px; }
.cap-b { width: 88px; height: 88px; background: #43a047; top: 58px; right: 50px; }
.cap-c { width: 118px; height: 118px; background: #e53935; top: 180px; left: 94px; }
.cap-d { width: 78px; height: 78px; background: #fb8c00; bottom: 54px; left: 36px; }
.cap-e { width: 96px; height: 96px; background: #26a69a; bottom: 82px; right: 104px; }
.cap-f { width: 60px; height: 60px; background: #8e24aa; top: 120px; left: 238px; }

.home-hero-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(360px, calc(100% - 48px));
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--c2b-shadow);
  border: 1px solid rgba(255,255,255,.8);
}

.home-hero-card h2 {
  margin-top: 0;
  color: var(--c2b-dark);
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hero-trust-item {
  background: rgba(255,255,255,.76);
  border: 1px solid var(--c2b-border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--c2b-shadow);
}

.hero-trust-item strong {
  display: block;
  color: var(--c2b-dark);
  margin-bottom: 4px;
}

.home-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.home-metric-card {
  text-align: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.home-metric-value {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--c2b-blue);
  margin-bottom: 8px;
  line-height: 1;
}

.home-metric-label {
  font-weight: 700;
  color: var(--c2b-dark);
}

.home-impact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.home-impact-card {
  min-height: 100%;
}

.home-impact-card h3 {
  margin-top: 0;
}

.home-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.partner-pill {
  text-align: center;
  font-weight: 800;
  color: var(--c2b-dark);
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 18px;
}

@media (max-width: 980px) {
  .home-hero-grid,
  .home-metrics-grid,
  .home-impact-grid,
  .home-partners-grid,
  .hero-trust-row {
    grid-template-columns: 1fr;
  }

  .home-hero-side {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .home-hero-side {
    min-height: 450px;
  }

  .home-hero-card {
    right: 16px;
    left: 16px;
    bottom: 16px;
    width: auto;
  }

  .cap-a { width: 92px; height: 92px; top: 22px; left: 18px; }
  .cap-b { width: 70px; height: 70px; top: 48px; right: 28px; }
  .cap-c { width: 88px; height: 88px; top: 142px; left: 56px; }
  .cap-d { width: 54px; height: 54px; bottom: 78px; left: 22px; }
  .cap-e { width: 74px; height: 74px; bottom: 92px; right: 72px; }
  .cap-f { width: 46px; height: 46px; top: 104px; left: 166px; }
}

.don-usage {
  margin-top: 40px;
}

.don-usage h2 {
  color: var(--c2b-dark);
  margin-bottom: 16px;
}

.don-list {
  margin: 15px 0;
  padding-left: 20px;
  line-height: 1.6;
}

.don-impact-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.don-impact-table th {
  background: #f4f7fb;
  padding: 12px;
  text-align: left;
  border-bottom: 2px solid #e5e7eb;
}

.don-impact-table td {
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.don-note {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #6b7280;
}

.don-widget-wrap {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--c2b-border);
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--c2b-shadow);
  overflow: hidden;
}

.don-widget-wrap iframe {
  display: block;
  width: 100%;
  min-height: 900px;
  border: 0;
}

.aides-hero {
  background: linear-gradient(135deg, #f3f9ff 0%, #f9fff8 100%);
}

.aides-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.aides-list {
  margin: 0;
  padding-left: 18px;
}

.aides-list li + li {
  margin-top: 8px;
}

.aide-card {
  min-height: 210px;
}

@media (max-width: 980px) {
  .aides-hero-grid {
    grid-template-columns: 1fr;
  }
}

.contact-cta-card {
  max-width: 760px;
  margin: 40px auto 0;
  background: #ffffff;
  border-radius: 28px;
  padding: 42px 32px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(18, 38, 63, 0.08);
  border: 1px solid rgba(18, 38, 63, 0.06);
}

.contact-cta-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(36, 125, 211, 0.10);
  font-size: 2rem;
}

.contact-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2vw, 2rem);
}

.contact-cta-card p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #44516a;
}

.contact-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.contact-cta-note {
  margin-top: 18px !important;
  font-size: 0.95rem !important;
  color: #6b7280 !important;
}

/* CARROUSEL - SOLIDARITÉ EN IMAGES */
.home-gallery-section {
  overflow: hidden;
}

.home-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-track-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 28px;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.carousel-slide {
  min-width: 100%;
  flex: 0 0 100%;
  background: #f4f7fb;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(16, 24, 40, 0.08);
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: contain;
  object-position: center;
  background: #f4f7fb;
}

.carousel-btn {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #16325c;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.14);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: #cfd8e3;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.active {
  background: var(--c2b-blue);
  transform: scale(1.15);
}

@media (max-width: 900px) {
  .home-carousel {
    gap: 10px;
  }

  .carousel-slide img {
    height: 300px;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .home-carousel {
    display: block;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-slide img {
    height: 240px;
  }
}
@media (max-width: 640px) {
  .brand {
    gap: 10px;
    font-size: 0.95rem;
  }

  .brand-name {
    padding: 4px 9px;
    border-radius: 9px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
    line-height: 1.15;
  }

  .section-title {
    font-size: clamp(1.35rem, 5vw, 1.8rem);
  }

  h2 {
    font-size: clamp(1.3rem, 4.5vw, 1.7rem);
  }

  h3 {
    font-size: clamp(1.08rem, 4vw, 1.28rem);
  }
}
@media (max-width:640px){

  .brand-name{
    font-size:1.2rem;
  }

  .brand-slogan{
    font-size:0.65rem;
  }

}
@media (max-width:640px){
  .brand{
    gap:10px;
  }

  .brand-name{
    font-size:1rem;
  }

  .brand-slogan{
    font-size:0.62rem;
    margin-top:3px;
  }
}