
/* =========================
   PAGE À PROPOS - HERO
   ========================= */

.ap-hero {
  padding: clamp(50px, 8vw, 100px) 0;
  background: 
    radial-gradient(1000px 600px at 80% 20%, rgba(255,182,193,0.18), transparent 60%),
    linear-gradient(180deg, rgba(26,159,153,0.08), rgba(255,255,255,0));
}

.ap-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.ap-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ap-hero__kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(26,159,153,0.12);
  border: 1px solid rgba(26,159,153,0.20);
  color: var(--couleur-principale);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ap-hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: rgba(20,20,20,0.92);
  letter-spacing: -0.5px;
}

.ap-hero__subtitle {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--couleur-principale);
  line-height: 1.3;
}

.ap-hero__lead {
  margin: 0.5rem 0 0;
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  line-height: 1.7;
  color: rgba(20,20,20,0.75);
  max-width: 58ch;
}

.ap-hero__photo {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.15);
  background: var(--couleur-gris);
}

.ap-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 500px;
}

/* =========================
   SECTION HISTOIRE
   ========================= */

.ap-story {
  padding: clamp(60px, 9vw, 120px) 0;
}

.ap-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(35px, 5vw, 80px);
  align-items: center;
}

.ap-story__photo {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.15);
  background: var(--couleur-gris);
}

.ap-story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 550px;
}

.ap-story__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ap-story__title {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: rgba(20,20,20,0.92);
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.ap-story__text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.ap-story__text p {
  margin: 0;
  font-size: clamp(1.05rem, 1.15vw, 1.14rem);
  line-height: 1.8;
  color: rgba(20,20,20,0.78);
}

/* =========================
   SECTION FORMATION
   ========================= */

.ap-formation {
  padding: clamp(60px, 9vw, 120px) 0;
  background:
    radial-gradient(900px 500px at 20% 30%, rgba(26,159,153,0.12), transparent 60%),
    linear-gradient(180deg, rgba(255,182,193,0.08), rgba(255,255,255,0));
}

.ap-formation__head {
  text-align: center;
  margin-bottom: clamp(35px, 5vw, 60px);
}

.ap-formation__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: rgba(20,20,20,0.92);
  letter-spacing: -0.3px;
}

.ap-formation__lead {
  margin: 0;
  font-size: clamp(1.08rem, 1.2vw, 1.2rem);
  color: rgba(20,20,20,0.68);
}

.ap-formation__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.ap-card {
  border-radius: 28px;
  padding: clamp(30px, 4vw, 48px);
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 65px rgba(0,0,0,0.10);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.ap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 85px rgba(0,0,0,0.14);
}

.ap-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(135deg, rgba(26,159,153,0.15), rgba(255,182,193,0.15));
  border: 2px solid rgba(26,159,153,0.20);
}

.ap-card__icon img {
  width: 48px;
  height: 48px;
  display: block;
}

.ap-card__title {
  margin: 0;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  font-weight: 900;
  color: rgba(20,20,20,0.90);
  line-height: 1.3;
}

.ap-card__text {
  margin: 0;
  font-size: clamp(1.02rem, 1.08vw, 1.08rem);
  line-height: 1.7;
  color: rgba(20,20,20,0.75);
}

/* =========================
   SECTION APPROCHE
   ========================= */

.ap-approach {
  padding: clamp(60px, 9vw, 120px) 0;
}

.ap-approach__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.ap-approach__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ap-approach__title {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: rgba(20,20,20,0.92);
  letter-spacing: -0.3px;
}

.ap-approach__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ap-approach__item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.ap-approach__number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--couleur-principale), rgba(26,159,153,0.80));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 0 12px 35px rgba(26,159,153,0.25);
}

.ap-approach__subtitle {
  margin: 0 0 0.6rem;
  font-size: clamp(1.2rem, 1.35vw, 1.35rem);
  font-weight: 900;
  color: rgba(20,20,20,0.90);
}

.ap-approach__text {
  margin: 0;
  font-size: clamp(1.02rem, 1.08vw, 1.08rem);
  line-height: 1.7;
  color: rgba(20,20,20,0.75);
}

.ap-approach__photo {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.15);
  background: var(--couleur-gris);
}

.ap-approach__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 650px;
}

/* =========================
   SECTION VALEURS
   ========================= */

.ap-values {
  padding: clamp(70px, 10vw, 130px) 0;
}

.ap-values__bg {
  position: relative;
  padding: clamp(50px, 7vw, 90px) 0;
  background:
    radial-gradient(1200px 700px at 50% 30%, rgba(26,159,153,0.25), transparent 65%),
    linear-gradient(180deg, rgba(255,182,193,0.15), rgba(26,159,153,0.12));
  border-radius: 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.08);
}

.ap-values__head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.ap-values__title {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: rgba(20,20,20,0.92);
  letter-spacing: -0.3px;
}

.ap-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 50px);
}

.ap-value {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 26px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(255,255,255,0.40);
  box-shadow: 0 18px 60px rgba(0,0,0,0.10);
  transition: all 0.2s ease;
}

.ap-value:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 75px rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.85);
}

.ap-value__title {
  margin: 0 0 1rem;
  font-size: clamp(1.3rem, 1.5vw, 1.6rem);
  font-weight: 900;
  color: var(--couleur-principale);
  line-height: 1.2;
}

.ap-value__text {
  margin: 0;
  font-size: clamp(1.02rem, 1.08vw, 1.1rem);
  line-height: 1.75;
  color: rgba(20,20,20,0.78);
}

/* =========================
   SECTION CABINET
   ========================= */

.ap-cabinet {
  padding: clamp(60px, 9vw, 120px) 0;
}

.ap-cabinet__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.ap-cabinet__photo {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.15);
  background: var(--couleur-gris);
}

.ap-cabinet__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 450px;
}

.ap-cabinet__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ap-cabinet__title {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: rgba(20,20,20,0.92);
  letter-spacing: -0.3px;
}

.ap-cabinet__text {
  margin: 0;
  font-size: clamp(1.05rem, 1.15vw, 1.14rem);
  line-height: 1.8;
  color: rgba(20,20,20,0.78);
}

.ap-cabinet__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 1rem 1.6rem;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: var(--couleur-principale);
  color: #fff;
  font-weight: 900;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 16px 45px rgba(26,159,153,0.25);
  transition: all 0.2s ease;
}

.ap-cabinet__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(26,159,153,0.30);
  background: #178f8a;
}

/* =========================
   CTA FINAL
   ========================= */

.ap-cta {
  padding: clamp(50px, 7vw, 90px) 0;
}

.ap-cta__inner {
  text-align: center;
  padding: clamp(50px, 7vw, 90px) clamp(30px, 5vw, 70px);
  border-radius: 40px;
  background:
    radial-gradient(1000px 600px at 50% 30%, rgba(255,182,193,0.28), transparent 60%),
    linear-gradient(135deg, rgba(26,159,153,0.18), rgba(255,182,193,0.15));
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
}

.ap-cta__title {
  margin: 0 auto 1.2rem;
  max-width: 24ch;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 900;
  color: rgba(20,20,20,0.92);
  letter-spacing: -0.3px;
  line-height: 1.15;
}

.ap-cta__text {
  margin: 0 auto 2rem;
  max-width: 52ch;
  font-size: clamp(1.08rem, 1.2vw, 1.2rem);
  color: rgba(20,20,20,0.75);
  line-height: 1.6;
}

.ap-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ap-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ap-cta__btn--primary {
  background: var(--couleur-principale);
  color: #fff;
  box-shadow: 0 16px 45px rgba(26,159,153,0.25);
}

.ap-cta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(26,159,153,0.30);
  background: #178f8a;
}

.ap-cta__btn--secondary {
  background: rgba(255,255,255,0.80);
  color: var(--couleur-principale);
  border: 2px solid var(--couleur-principale);
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
}

.ap-cta__btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.14);
  background: #fff;
}

/* =========================
   RESPONSIVE - TABLETTE
   ========================= */

@media (min-width: 641px) and (max-width: 1024px) {
  .ap-hero__inner,
  .ap-story__grid,
  .ap-approach__grid,
  .ap-cabinet__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ap-formation__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .ap-values__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .ap-hero__photo img,
  .ap-story__photo img,
  .ap-approach__photo img,
  .ap-cabinet__photo img {
    min-height: 400px;
  }
}

/* =========================
   RESPONSIVE - MOBILE
   ========================= */

@media (max-width: 640px) {
  .ap-hero__inner,
  .ap-story__grid,
  .ap-approach__grid,
  .ap-cabinet__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ap-formation__grid {
    grid-template-columns: 1fr;
  }

  .ap-values__grid {
    grid-template-columns: 1fr;
  }

  .ap-hero__photo img,
  .ap-story__photo img,
  .ap-approach__photo img,
  .ap-cabinet__photo img {
    min-height: 320px;
  }

  .ap-approach__item {
    grid-template-columns: 60px 1fr;
    gap: 1.2rem;
  }

  .ap-approach__number {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .ap-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

 

 
}

/* =========================
   RESPONSIVE - GRAND ÉCRAN
   ========================= */

@media (min-width: 1600px) {
  .ap-hero__inner,
  .ap-story__grid,
  .ap-approach__grid {
    gap: 100px;
  }

  .ap-formation__grid {
    gap: 50px;
  }

  .ap-values__grid {
    gap: 60px;
  }

  .ap-hero__photo img {
    min-height: 600px;
  }

  .ap-story__photo img {
    min-height: 650px;
  }

  .ap-approach__photo img {
    min-height: 750px;
  }
}