/* =========================================================
   FDPL — DESIGN SYSTEM ELITE
========================================================= */

:root {

  --fdpl-navy: #0f172a;
  --fdpl-blue: #1e40af;

  --fdpl-gray-950: #0b1220;
  --fdpl-gray-900: #111827;
  --fdpl-gray-700: #374151;
  --fdpl-gray-600: #4b5563;
  --fdpl-gray-500: #6b7280;
  --fdpl-gray-200: #e5e7eb;
  --fdpl-gray-100: #f9fafb;

  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-strong: 0 25px 60px rgba(15, 23, 42, 0.12);

  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}


/* =========================================================
   BASE
========================================================= */

body.home {
  background: #ffffff;
  font-size: 16px;
  line-height: 1.75;
  color: var(--fdpl-gray-700);
  -webkit-font-smoothing: antialiased;
}
/* FDPL – Home layout fix */
body.home #content.site-content {
    display: flex;
    justify-content: center;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  position: relative;
}


/* =========================================================
   H2 PREMIUM SYSTEM
========================================================= */

.section-title {
  font-size: clamp(30px, 2.6vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--fdpl-gray-950);
  text-align: center;
  margin-bottom: 26px;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--fdpl-blue);
  border-radius: 2px;
  margin: 18px auto 0;
}


/* =========================================================
   HERO — VERSION PREMIUM
========================================================= */

.heroHome {
  align-items: center;
  padding: 30px 0 120px 0;
  gap: 60px;
}

.heroInner {
  max-width: 620px;
}

.home-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fdpl-gray-500);
  margin-bottom: 22px;
}

.home-title {
  font-size: clamp(48px, 5vw, 66px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--fdpl-gray-950);
  margin-bottom: 28px;
}

.home-title strong {
  color: var(--fdpl-blue);
}

.heroInner p {
  font-size: 19px;
  line-height: 1.75;
  color: var(--fdpl-gray-600);
  margin-bottom: 42px;
}

.heroImage img {
  max-height: 720px;
  height: auto;
}


/* =========================================================
   BOUTON ELITE
========================================================= */

.home-buttons {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 44px;
  border-radius: 16px;

  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff !important;

  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;

  text-decoration: none;

  box-shadow:
    0 15px 40px rgba(15, 23, 42, 0.18),
    0 5px 14px rgba(15, 23, 42, 0.08);

  transition: all 0.25s ease;
}

.home-buttons:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}


/* =========================================================
   SECTION DEFINITION
========================================================= */

.home-definition {
  padding: 160px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--fdpl-gray-100) 100%);
}

.home-definition .section-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.85;
  text-align: center;
}


/* =========================================================
   SECTION PROFESSIONS
========================================================= */

.home-professions {
  padding: 160px 0;
}

.profession-list {
  list-style: none;
  padding: 0;
  margin: 70px auto 0;
  max-width: 950px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.profession-list li {
  background: #ffffff;
  border: 1px solid var(--fdpl-gray-200);
  border-radius: var(--radius-lg);
  padding: 26px;

  font-size: 16px;
  font-weight: 500;

  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.profession-list li:hover {
  transform: translateY(-6px);
  border-color: var(--fdpl-blue);
  box-shadow: var(--shadow-strong);
}


/* =========================================================
   SECTION FAQ
========================================================= */

.home-faq {
  padding: 160px 0;
  background: var(--fdpl-gray-100);
}

.faq-items {
  max-width: 850px;
  margin: 70px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  position: relative;
  padding-right: 30px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
  color: var(--fdpl-blue);
}


/* =========================================================
   SECTION LEVIERS
========================================================= */

/* =========================================================
   SECTION LEVIERS
========================================================= */

/* SECTION GLOBALE */
.besoinHome {
  max-width: 1200px;
  margin: 160px auto;
  padding: 0 40px;
  text-align: center;
}

/* HEADER (titre + intro) */
.besoinHeader {
  max-width: 760px;
  margin: 0 auto 80px;
}

.besoinIntro {
  font-size: 17px;
  color: var(--fdpl-gray-600);
  line-height: 1.75;
  margin-top: 20px;
}

/* GRID UNIQUEMENT POUR LES CARDS */
.besoinGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* =========================================================
   CARDS (INCHANGÉES VISUELLEMENT)
========================================================= */

.besoinPro {
  padding: 36px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--fdpl-gray-200);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  text-align: left;
}

.besoinPro:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.besoinPro h3 {
  font-size: 19px;
  margin-bottom: 14px;
  color: var(--fdpl-gray-900);
}

.besoinPro p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--fdpl-gray-600);
}



/* =========================================================
   SECTION AUTORITÉ
========================================================= */

.home-authority {
  padding: 140px 80px;
  margin: 160px auto;
  max-width: 1100px;

  background: linear-gradient(
    180deg,
    var(--fdpl-gray-100) 0%,
    #ffffff 100%
  );

  border-radius: var(--radius-xl);
}

.home-authority p {
  max-width: 720px;
  margin: 0 auto 22px;
  text-align: center;
}

.home-authority ul {
  list-style: none;
  padding: 0;
  margin: 50px 0;
  text-align: center;
}
.section-cta{
	display: flex;
    justify-content: center;
}


/* =========================================================
   RESPONSIVE — VERSION HAUT DE GAMME
========================================================= */

@media (max-width: 768px) {

  /* Container principal */
  .heroHome {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }

  /* Bloc texte */
  .heroInner {
    padding: 40px 24px 20px 24px !important;
    max-width: 100%;
  }

  /* Eyebrow */
  .home-eyebrow {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
  }

  /* H1 plus compact */
  .home-title {
    font-size: 28px !important;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  /* Sous-texte */
  .heroInner p:not(.home-eyebrow) {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  /* Bouton full width élégant */
  .home-buttons {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border-radius: 12px;
  }

  .profession-list {
    grid-template-columns: 1fr 1fr;
  }

  .besoinGrid {
    grid-template-columns: 1fr;
  }
    .besoinHome {
    padding: 0 24px;
  }

  .besoinHeader {
    margin-bottom: 60px;
  }

  .home-authority {
    padding: 80px 30px;
  }

}

@media (max-width: 600px) {

  .profession-list {
    grid-template-columns: 1fr;
  }

  .home-definition,
  .home-faq,
  .home-professions {
    padding: 90px 0;
  }

  .home-title {
    font-size: 28px !important;
  }

  .heroInner p {
    font-size: 16px;
  }

}
