/* ==========================================================================
   PAGE A PROPOS — VERSION ULTIME
   ========================================================================== */

.hero-about {
    display: grid;
    gap: var(--sp-8);
    padding-top: var(--sp-8);
    align-items: center;
}

.hero-about-left {
    max-width: 680px;
}

.hero-about h1 {
    font-size: var(--fs-xxl);
    font-weight: var(--fw-extrabold);
    line-height: 1.25;
    margin-bottom: var(--sp-3);
}

.hero-about-sub {
    font-size: var(--fs-sm);
    opacity: .9;
    line-height: 1.7;
    margin-bottom: var(--sp-4);
}

.hero-about-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    margin-bottom: var(--sp-3);
}

.tag-pill {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    background: rgba(47,128,255,0.15);
    border: 1px solid rgba(47,128,255,0.45);
    font-size: var(--fs-xs);
    margin-bottom: var(--sp-3);
}

.about-card {
    max-width: 420px;
    padding: 18px 20px;
    border-radius: var(--r-xl);
    background: radial-gradient(circle at top left, #1c3d63, #071522 55%, #01070f 90%);
    border: 1px solid rgba(140,180,255,0.35);
    box-shadow: var(--shadow-medium);
}

.ac-header {
    font-size: var(--fs-xs);
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    opacity: .9;
}

.ac-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--c-primary-1);
    box-shadow: 0 0 10px rgba(6,193,103,0.9);
}

.ac-body {
    margin-top: var(--sp-3);
    font-size: var(--fs-sm);
    line-height: 1.65;
    opacity: .9;
}

/* HISTORY GRID */

.history-grid {
    display: grid;
    gap: var(--sp-5);
    margin-top: var(--sp-4);
}

.history-card {
    padding: var(--sp-5);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--c-border-light);
    border-radius: var(--r-card);
    box-shadow: var(--shadow-soft);
}

.history-card h3 {
    margin-bottom: var(--sp-2);
}

.history-card p {
    font-size: var(--fs-sm);
    opacity: .9;
    line-height: 1.6;
}

/* VALUES */

.values-grid {
    display: grid;
    gap: var(--sp-5);
    margin-top: var(--sp-4);
}

.value-card {
    padding: var(--sp-5);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--c-border-light);
    border-radius: var(--r-card);
    box-shadow: var(--shadow-soft);
}

.value-card h3 {
    margin-bottom: var(--sp-2);
    font-size: var(--fs-md);
}

.value-card p {
    font-size: var(--fs-sm);
    opacity: .9;
    line-height: 1.6;
}

/* CTA FINAL */
.cta-final {
    text-align: center;
    margin-top: var(--sp-8);
}

.cta-final h2 {
    font-size: var(--fs-xl);
    margin-bottom: var(--sp-3);
}

.cta-final p {
    opacity: .85;
    margin-bottom: var(--sp-4);
}

/* RESPONSIVE */

@media (min-width: 900px) {
    .hero-about {
        grid-template-columns: 1.6fr 1fr;
    }

    .history-grid,
    .values-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .hero-about {
        padding-top: var(--sp-6);
    }

    .about-card {
        max-width: 100%;
    }
}
/* Icônes institutionnelles — taille maîtrisée */
.ico {
  width: 24px;
  height: 24px;
  display: inline-block;
  flex-shrink: 0;
  color: var(--text-primary, #e8eef7);
}

.ico-sm {
  width: 20px;
  height: 20px;
}

.history-card .ico,
.value-card .ico {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
}
.card-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.card-ico svg {
  width: 22px;
  height: 22px;
}
.card-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;

  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}

.card-ico svg {
  width: 20px;
  height: 20px;
}
.ico {
  color: rgba(235,240,248,0.85);
}
.ico {
  color: rgba(200,210,225,0.9);
}
.history-card h3,
.value-card h3 {
  margin-top: 0;
  line-height: 1.25;
}
.value-card {
  display: flex;
  flex-direction: column;
}
svg {
  vertical-align: middle;
}
