/* ===============================
   À propos — V-Zone Cloud
   =============================== */

.page-content.about-page {
  --ab-brand: #06c4b4;
  --ab-brand-2: #0d9488;
  --ab-brand-dark: #115e59;
  --ab-dark: #0b1220;
  --ab-text: #0f172a;
  --ab-muted: #475569;
  --ab-line: #e2e8f0;
  --ab-surface: #ffffff;
  --ab-soft: #f1f5f9;
  --ab-radius: 18px;
  --ab-radius-sm: 12px;
  --ab-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  --ab-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --ab-ease: cubic-bezier(0.22, 1, 0.36, 1);
  background: #f8fafc !important;
  scroll-behavior: smooth;
}

.page-content.about-page .bubble-wrapper {
  display: none !important;
}

/* ---- Hero ---- */
.about-hero {
  position: relative;
  margin: clamp(0.75rem, 2vw, 1.25rem) auto clamp(1.5rem, 3vw, 2.5rem);
  max-width: min(1200px, calc(100% - 1.5rem));
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--ab-radius);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 196, 180, 0.92), rgba(17, 94, 89, 0.88)),
    url("../serveurs.png") center / cover no-repeat;
  box-shadow: var(--ab-shadow-lg);
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.about-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.about-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.about-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: #fff;
}

.about-hero__lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
  max-width: 580px;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s var(--ab-ease), box-shadow 0.25s var(--ab-ease);
}

.about-btn--primary {
  background: #fff;
  color: var(--ab-brand-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.about-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.about-btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

.about-btn--primary:hover {
  color: var(--ab-brand-dark);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.about-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.about-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 520px;
}

.about-hero__stat {
  padding: 0.85rem 1rem;
  border-radius: var(--ab-radius-sm);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.about-hero__stat-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}

.about-hero__stat-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  opacity: 0.88;
}

/* ---- Sticky nav ---- */
.about-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  margin: 0 auto 2rem;
  max-width: min(1200px, calc(100% - 1.5rem));
}

.about-nav {
  display: flex;
  gap: 0.35rem;
  padding: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--ab-line);
  border-radius: 999px;
  box-shadow: var(--ab-shadow);
  backdrop-filter: blur(10px);
}

.about-nav::-webkit-scrollbar {
  display: none;
}

.about-nav a {
  flex: 0 0 auto;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ab-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.about-nav a:hover,
.about-nav a.is-active {
  background: rgba(6, 196, 180, 0.12);
  color: var(--ab-brand-dark);
}

/* ---- Sections communes ---- */
.about-section {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.about-section--alt {
  background: var(--ab-soft);
}

.about-section-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.about-section-head--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.about-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ab-brand-2);
}

.about-section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--ab-text);
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.about-section-head p {
  color: var(--ab-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---- Qui sommes-nous ---- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.about-intro__text p {
  color: var(--ab-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0;
  list-style: none;
}

.about-pill-list li {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ab-line);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ab-brand-dark);
}

.about-intro__media {
  position: relative;
}

.about-intro__media img {
  width: 100%;
  border-radius: var(--ab-radius);
  box-shadow: var(--ab-shadow-lg);
  display: block;
}

.about-intro__badge {
  position: absolute;
  left: -0.5rem;
  bottom: -0.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--ab-radius-sm);
  background: #fff;
  box-shadow: var(--ab-shadow);
  border: 1px solid var(--ab-line);
}

.about-intro__badge strong {
  display: block;
  font-size: 1.5rem;
  color: var(--ab-brand-2);
  line-height: 1;
}

.about-intro__badge span {
  font-size: 0.8rem;
  color: var(--ab-muted);
}

/* ---- Mission / Vision ---- */
.about-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-mv-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--ab-radius-sm);
  background: #fff;
  border: 1px solid var(--ab-line);
  box-shadow: var(--ab-shadow);
}

.about-mv-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ab-text);
}

.about-mv-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ab-muted);
}

.about-mv-card i {
  color: var(--ab-brand-2);
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

/* ---- Valeurs ---- */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-value-card {
  height: 100%;
  padding: 1.5rem 1.25rem;
  border-radius: var(--ab-radius-sm);
  background: #fff;
  border: 1px solid var(--ab-line);
  box-shadow: var(--ab-shadow);
  transition: transform 0.25s var(--ab-ease), box-shadow 0.25s var(--ab-ease);
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ab-shadow-lg);
}

.about-value-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(6, 196, 180, 0.12);
  color: var(--ab-brand-2);
  font-size: 1.15rem;
}

.about-value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--ab-text);
}

.about-value-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ab-muted);
}

/* ---- Timeline ---- */
.about-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 1.75rem;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--ab-brand), var(--ab-brand-2));
}

.about-timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

.about-timeline-item:last-child {
  margin-bottom: 0;
}

.about-timeline-item::before {
  content: "";
  position: absolute;
  left: -1.45rem;
  top: 1.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ab-brand);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px rgba(6, 196, 180, 0.35);
}

.about-timeline-card {
  padding: 1.25rem;
  border-radius: var(--ab-radius-sm);
  background: #fff;
  border: 1px solid var(--ab-line);
  box-shadow: var(--ab-shadow);
}

.about-timeline-card__year {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(6, 196, 180, 0.12);
  color: var(--ab-brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.about-timeline-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--ab-text);
}

.about-timeline-card p {
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ab-muted);
}

.about-timeline-card img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* ---- Services rapides ---- */
.about-services-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.about-service-link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: var(--ab-radius-sm);
  background: #fff;
  border: 1px solid var(--ab-line);
  text-decoration: none;
  color: var(--ab-text);
  transition: border-color 0.2s, transform 0.2s var(--ab-ease);
}

.about-service-link:hover {
  border-color: rgba(6, 196, 180, 0.45);
  transform: translateY(-2px);
  color: var(--ab-brand-dark);
}

.about-service-link i {
  color: var(--ab-brand-2);
}

.about-service-link span {
  font-weight: 700;
  font-size: 0.95rem;
}

.about-service-link small {
  color: var(--ab-muted);
  font-size: 0.8rem;
}

/* ---- Partenaires ---- */
.about-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  align-items: center;
}

.about-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0.85rem;
  border-radius: var(--ab-radius-sm);
  background: #fff;
  border: 1px solid var(--ab-line);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-partner-logo img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: filter 0.25s, opacity 0.25s;
}

.about-partner-logo:hover img {
  filter: none;
  opacity: 1;
}

.about-partner-logo:hover {
  transform: translateY(-2px);
  box-shadow: var(--ab-shadow);
}

/* ---- CTA final ---- */
.about-cta {
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  max-width: min(1200px, calc(100% - 1.5rem));
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: var(--ab-radius);
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--ab-brand), var(--ab-brand-dark));
  box-shadow: var(--ab-shadow-lg);
}

.about-cta h2 {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto 1.25rem;
  line-height: 1.65;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ---- Team link ---- */
.about-team-link {
  text-align: center;
  padding: 0.5rem 0 2rem;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .about-intro-grid,
  .about-mv-grid,
  .about-values-grid,
  .about-services-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .about-hero__stats {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .about-intro-grid,
  .about-mv-grid,
  .about-values-grid,
  .about-services-strip {
    grid-template-columns: 1fr;
  }

  .about-intro__badge {
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .about-nav-wrap {
    top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-content.about-page {
    scroll-behavior: auto;
  }

  .about-value-card,
  .about-btn,
  .about-service-link,
  .about-partner-logo {
    transition: none;
  }
}
