/* =====================================================
   ABOUT SAHP – VERSION CLEAN & SCALABLE
===================================================== */

:root {
  --about-image-max-width: 700px;
  --about-radius: 28px;
  --about-gradient: linear-gradient(90deg, #4080b7 0%, #5ed0c2 100%);
}

/* =========================
   CONTAINER
========================= */

.sahp-about {
  padding: 15px 20px 120px;
  background: var(--about-gradient);
  color: #ffffff;
}

/* =========================
   HEADER
========================= */

.sahp-about-header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sahp-about-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}

.sahp-about-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* =========================
   IMAGE
========================= */

.sahp-about-image-wrapper {
  width: 100%;
  max-width: var(--about-image-max-width);
  margin: 35px auto 80px;

  position: relative;
  overflow: hidden;
  border-radius: var(--about-radius);
}

.sahp-about-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay léger */
.sahp-about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(64, 128, 183, 0.1), rgba(94, 208, 194, 0.1));
  z-index: 1;
}

/* =========================
   MASCOTTE
========================= */

.sahp-about-mascotte {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  transform: translate(12%, 8%);
  pointer-events: none;
}

.sahp-about-mascotte img {
  width: clamp(140px, 18vw, 195px);
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.35));
}

/* =========================
   TEXTE
========================= */

.sahp-about-text-wrapper {
  background: #ffffff;
  clip-path: polygon(0 0, 100% 18%, 100% 100%, 0 100%);
  padding: 120px 20px 90px;
  margin-bottom: 120px;
}

.sahp-about-text {
  max-width: 900px;
  margin: 0 auto;
  color: #000;
  font-size: 1.05rem;
  line-height: 1.8;
}

.sahp-about-text p {
  margin-bottom: 26px;
}

.sahp-about-highlight {
  font-weight: 600;
  font-size: 1.1rem;
}

/* =========================
   FEATURES
========================= */

.sahp-about-features {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.sahp-feature {
  text-align: center;
}

.sahp-feature-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.sahp-feature-icon img {
  width: 248px;
  object-fit: contain;
}

.sahp-feature h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.sahp-feature p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .sahp-about-title {
    font-size: 2rem;
  }

  .sahp-about-features {
    grid-template-columns: 1fr;
  }

  .sahp-about-text {
    text-align: center;
  }
}

@media (max-width: 480px) {

  .sahp-about-text {
    margin-top: 90px;
  }
}
