*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #2e2e2e;
  background: #f7f7fb;
  line-height: 1.42;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

:root {
  --violet: #4a43b3;
  --violet-dark: #2f267e;
  --turquoise: #10d4dc;
  --light-left: #d8cdf8;
  --light-right: #e4f8fb;
  --text-dark: #2f2f36;
  --footer-bg: #322a83;
  --white: #ffffff;
  --hero-overlay: rgba(6, 17, 74, 0.48);
  --border-soft: rgba(16, 212, 220, 0.9);
  --shadow-pill: 0 0 14px rgba(129, 115, 230, 0.45), inset 0 0 8px rgba(94, 82, 196, 0.18);
}

.container {
  width: min(1380px, calc(100% - 72px));
  margin: 0 auto;
}

.bg-standard {
  background: linear-gradient(90deg, var(--light-left) 0%, var(--light-right) 100%);
}

.bg-light {
  background: linear-gradient(90deg, #ece6fc 0%, #f6fdff 100%);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #08174b 0%, #0f2562 35%, #113169 100%);
  border-top: 3px solid #ff00c8;
}

.site-header .container {
  width: min(1380px, calc(100% - 40px));
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 88px;
  padding: 8px 0;
}

.logo-link {
  flex: 0 0 auto;
}

.logo {
  width: 86px;
  background: #fff;
  padding: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
  flex: 1;
  margin-left: 16px;
}

.main-nav a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.main-nav a.active {
  color: var(--turquoise);
}

.main-nav a.nav-highlight {
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-left: auto;
}

/* HERO */
.hero {
  position: relative;
  min-height: 390px;
  background:
    linear-gradient(rgba(7, 16, 66, 0.22), rgba(7, 16, 66, 0.22)),
    url("../images/hero.png") center center / cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 8px;
  min-height: 320px;
  padding: 12px 0 12px;
}

.hero-text {
  max-width: 860px;
}

.hero-text h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 3.25vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 780px;
}

.hero-text h1 span {
  display: block;
  white-space: nowrap;
}

.hero-text p {
  margin: 0;
  font-size: clamp(17px, 1.35vw, 27px);
  line-height: 1.22;
  max-width: 760px;
  white-space: nowrap;
}

.hero-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 8px;
  padding-right: 4px;
  transform: translateY(135px);
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 74px;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f6ff 100%);
  color: #5a57c9;
  font-size: clamp(22px, 1.8vw, 31px);
  font-weight: 500;
  box-shadow: var(--shadow-pill);
  border: 2px solid rgba(133, 120, 228, 0.4);
  position: relative;
  
}

.hero .pill-btn {
  left: 88px;
}

.contact-pill {
  left: 0;
}

/* INTRO */
.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  padding: 62px 0 42px;
}

.left-col {
  padding-right: 14px;
}

.right-col {
  padding-left: 48px;
  border-left: 5px solid var(--turquoise);
}

.problem-item + .problem-item {
  margin-top: 64px;
}

.problem-item h3 {
  margin: 0 0 12px;
  color: #575757;
  font-size: clamp(22px, 1.8vw, 31px);
  line-height: 1.24;
  font-weight: 700;
}

.problem-item p {
  margin: 0;
  color: #676767;
  font-size: clamp(17px, 1.42vw, 24px);
  line-height: 1.42;
  max-width: 580px;
}

.right-col h2 {
  margin: 0 0 36px;
  color: var(--violet);
  font-size: clamp(42px, 4vw, 72px);
  line-height: 1.08;
  font-weight: 800;
}

.cta-block {
  margin-top: 18px;
}

.diagnostic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 540px;
  min-height: 84px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 500;
  color: var(--turquoise);
  background: linear-gradient(180deg, #2f267e 0%, #24307a 100%);
  box-shadow:
    0 0 18px rgba(54, 43, 141, 0.55),
    inset 0 0 8px rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(89, 72, 197, 0.55);
}

.cta-block p {
  margin: 14px 0 0;
  font-size: clamp(15px, 1.1vw, 21px);
  color: #3f3f3f;
  max-width: 560px;
}

.separator-copy {
  text-align: center;
  padding: 18px 0 52px;
}

.mini-copy {
  margin: 0 0 14px;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 700;
  color: #2f2f2f;
}

.big-mantra {
  margin: 0;
  font-size: clamp(28px, 2.65vw, 52px);
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #262626;
  line-height: 1.22;
}

.no-break-desktop {
  white-space: nowrap;
}

/* TITRES */
.section-title {
  margin: 0 0 10px;
  color: var(--violet);
  font-size: clamp(38px, 3.2vw, 60px);
  line-height: 1.08;
  font-weight: 800;
}

.section-subtitle {
  margin: 0 0 42px;
  color: #515151;
  font-size: clamp(19px, 1.55vw, 30px);
}

/* SOLUTIONS */
.solutions-section .container:first-child {
  padding-top: 44px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 72px 110px;
  padding: 22px 0 18px;
}

.solution-card {
  display: flex;
  align-items: flex-start;
  position: relative;
  min-height: 170px;
}

.card-step {
  position: relative;
  z-index: 2;
  width: 94px;
  min-width: 94px;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -18px;
  border: 2px solid var(--border-soft);
  border-radius: 18px;
  background: #f7f7f7;
  color: var(--violet);
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
}

.card-body {
  margin-left: -10px;
  padding: 30px 32px 24px 42px;
  min-height: 148px;
  width: 100%;
  border: 2px solid var(--border-soft);
  border-radius: 0 18px 18px 18px;
  background: rgba(255, 255, 255, 0.30);
}

.card-body h3 {
  margin: 0 0 18px;
  color: var(--violet);
  font-size: clamp(22px, 1.8vw, 31px);
  line-height: 1.18;
  font-weight: 800;
  max-width: 92%;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--violet);
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1.1;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

.card-link .arrow {
  font-size: 1.25em;
  line-height: 1;
}

/* ABOUT */
.about-section .container:first-child {
  padding-top: 36px;
}

.about-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 42px;
  align-items: stretch;
  margin-top: 20px;
}

.about-photo img {
  width: 240px;
  height: 100%;
  max-height: 430px;
  object-fit: cover;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
}

.about-text p {
  margin: 0;
  font-size: clamp(18px, 1.48vw, 28px);
  line-height: 1.48;
  color: #404040;
}

.about-text strong {
  color: #333;
}

.role-block {
  margin-top: 48px;
  max-width: 980px;
}

.role-block h3 {
  margin: 0 0 18px;
  color: #2b2b2b;
  font-size: clamp(30px, 2.5vw, 48px);
  font-weight: 500;
}

.role-list {
  border-left: 5px solid var(--turquoise);
  padding-left: 18px;
}

.role-list p {
  margin: 0 0 16px;
  color: #3f3f3f;
  font-size: clamp(18px, 1.48vw, 28px);
  line-height: 1.46;
}

.role-list p:last-child {
  margin-bottom: 0;
}

.about-separator {
  padding-top: 44px;
  padding-bottom: 50px;
}

/* TESTIMONIALS */
.testimonials-section {
  padding-top: 10px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
}

.testimonial-card:last-child {
  border-right: none;
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(2, 8, 40, 0.62), rgba(2, 8, 40, 0.76)),
    url("../images/temoignages.jpg") center center / cover no-repeat;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 40px 52px 18px;
}

.testimonial-logo {
  height: 78px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 24px;
  background: #fff;
}

.testimonial-content h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 1.7vw, 34px);
  line-height: 1.16;
  font-weight: 800;
  text-align: center;
}

.testimonial-role {
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(16px, 1.25vw, 23px);
  color: #f5f5ff;
}

.testimonial-content p {
  margin: 0 0 14px;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.48;
  color: #f6f7ff;
}

.testimonial-content p:last-child {
  margin-bottom: 0;
}

.testimonial-content strong {
  color: #ffffff;
  font-weight: 800;
}

/* CONTACT */
.contact-section {
  padding-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
  padding: 46px 0 24px;
}

.contact-left {
  padding-right: 28px;
}

.contact-left h2 {
  margin: 0;
  color: var(--violet);
  font-size: clamp(44px, 4vw, 76px);
  line-height: 1.18;
  font-weight: 800;
}

.contact-right {
  border-left: 5px solid var(--turquoise);
  padding-left: 54px;
  min-height: 396px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-pill {
  min-width: 390px;
  min-height: 84px;
  font-size: clamp(24px, 2vw, 34px);
  align-self: flex-start;
}

.reply-note {
  margin: 14px 0 24px;
  color: #555;
  font-size: clamp(15px, 1.08vw, 21px);
}

.contact-benefits {
  margin: 0;
  padding-left: 28px;
  color: #2f2f2f;
}

.contact-benefits li {
  margin-bottom: 16px;
  font-size: clamp(17px, 1.34vw, 25px);
  line-height: 1.42;
}

.final-copy {
  padding-top: 10px;
  padding-bottom: 34px;
}

/* FOOTER */
.site-footer {
  background: var(--footer-bg);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.92fr 1.05fr;
  gap: 44px;
  align-items: start;
  padding: 34px 0 6px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.footer-logo {
  width: 84px;
  background: #fff;
  padding: 8px;
  margin-top: 0;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand-text p,
.footer-contact p,
.footer-links a {
  margin: 0;
  color: #fff;
  font-size: clamp(15px, 1.08vw, 21px);
  line-height: 1.34;
}

.footer-brand-text p:nth-child(3) {
  max-width: 470px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.linkedin-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.linkedin-icon {
  width: 28px;
  height: 28px;
}

.footer-bottom {
  text-align: center;
  padding: 4px 0 16px;
}

.footer-bottom p {
  margin: 0;
  color: #fff;
  font-size: clamp(14px, 0.95vw, 18px);
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 1380px) {
  .no-break-desktop {
    white-space: normal;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 15px;
  }
}

@media (max-width: 1280px) {
  .main-nav {
    gap: 18px;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .main-nav a.nav-highlight {
    margin-left: 0;
  }

  .hero-content,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    justify-content: flex-start;
    padding-top: 10px;
    padding-right: 0;
  }

  .right-col,
  .contact-right {
    border-left: none;
    padding-left: 0;
    min-height: auto;
  }

  .diagnostic-btn,
  .pill-btn,
  .contact-pill {
    min-width: 0;
    width: 100%;
  }

  .solutions-grid {
    gap: 44px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: auto;
  }

  .testimonial-content {
    padding-bottom: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-text p:nth-child(3) {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .container,
  .site-header .container {
    width: min(100% - 34px, 100%);
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .main-nav {
    gap: 12px 16px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-text {
    min-height: auto;
    gap: 18px;
  }

  .about-photo img {
    width: 220px;
    max-height: none;
  }

  .big-mantra {
    letter-spacing: 0.12em;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 34px 0 40px;
  }

  .card-step {
    width: 78px;
    min-width: 78px;
    height: 118px;
    font-size: 38px;
  }

  .card-body {
    padding: 22px 20px 22px 28px;
  }

  .testimonial-content {
    padding: 34px 24px 20px;
  }

  .contact-left h2 {
    font-size: 42px;
  }
}

/* PAGE HERO */
.page-hero {
    background: #3c2f7d;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.page-hero h1 {
    font-size: clamp(36px, 4vw, 52px);
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* =========================================================
   PAGE DÉDIÉE - AUDIT & DIAGNOSTIC
========================================================= */

.page-audit {
  background: #efefef;
}

/* HEADER */
.dedicated-header {
  background: #352b86;
  color: #fff;
  border-top: 2px solid #ff00d4;
}

.dedicated-header-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 180px;
  padding: 26px 0 30px;
}

.dedicated-title-wrap {
  text-align: left;
  margin-right: auto;
  margin-left: 100px;
  max-width: 720px;
}

.dedicated-title-wrap h1 {
  margin: 0 0 10px;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
}

.dedicated-title-wrap p {
  margin: 0;
  font-size: clamp(18px, 1.45vw, 30px);
  line-height: 1.25;
  color: #ffffff;
}

.dedicated-back-link {
  position: absolute;
  right: 0;
  top: 38px;
  color: #11d6e2;
  font-size: clamp(17px, 1.2vw, 25px);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ZONE VISUELLE */
.audit-visual-section {
  position: relative;
  min-height: 1040px;
  background:
    linear-gradient(rgba(235, 238, 245, 0.66), rgba(235, 238, 245, 0.66)),
    url("../images/audit-bg.png") center center / cover no-repeat;
  overflow: hidden;
}

.audit-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(222, 218, 244, 0.48) 0%, rgba(226, 237, 243, 0.38) 100%);
  pointer-events: none;
}

.audit-layout {
  position: relative;
  z-index: 1;
  padding: 62px 0 80px;
}

.audit-panel {
  display: flex;
  align-items: flex-start;
}

.audit-panel + .audit-panel {
  margin-top: 68px;
}

/* Cartouches */
.audit-panel-box {
  width: min(100%, 720px);
  background: rgba(54, 41, 132, 0.92);
  color: #fff;
  border-radius: 8px;
  padding: 20px 22px 18px;
  box-shadow: 0 8px 20px rgba(26, 24, 54, 0.22);
}

.audit-panel-box h2 {
  margin: 0 0 26px;
  font-size: clamp(19px, 1.42vw, 31px);
  line-height: 1.15;
  font-weight: 800;
  white-space: nowrap;
}

.audit-panel-box p {
  margin: 0 0 24px;
  font-size: clamp(17px, 1.28vw, 27px);
  line-height: 1.45;
  color: #ffffff;
}

.audit-panel-box p:last-child {
  margin-bottom: 0;
}

/* Traits décoratifs */
.audit-panel-line {
  width: 4px;
  background: #352b86;
  border-radius: 4px;
  flex: 0 0 4px;
  align-self: stretch;
}

.right-line {
  margin-left: 8px;
}

/* Positionnement fidèle au visuel */
.audit-panel-left {
  margin-left: 100px;
  align-items: flex-start;
}

.audit-panel-left .audit-panel-line {
  margin-top: 0;
  margin-right: 10px;
}

.audit-panel-left .audit-panel-box {
  max-width: 720px;
}

.audit-panel-right {
  justify-content: flex-end;
  margin-top: 36px;
  margin-right: 72px;
  transform: translateX(-70px);
}

.audit-panel-right .audit-panel-box {
  width: 860px;
  max-width: 860px;
}

.audit-panel-right .audit-panel-line {
  margin-top: 0;
}

.audit-panel-center {
  margin-top: 64px;
  margin-left: 108px;
}

.audit-panel-center .audit-panel-line {
  margin-top: 0;
  margin-right: 10px;
}

.audit-panel-center .audit-panel-box {
  width: 900px;
  max-width: 900px;
}

/* CTA final */
.dedicated-cta-section {
  background: #352b86;
  padding: 48px 0;
}

.dedicated-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.dedicated-cta-inner h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1.1;
  font-weight: 800;
}

.dedicated-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 560px;
  min-height: 84px;
  padding: 16px 34px;
  border-radius: 10px;
  background: #f3f3f3;
  color: #4a43b3;
  font-size: clamp(24px, 2vw, 42px);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 16px rgba(197, 187, 255, 0.22);
}

/* Footer clair */
.dedicated-footer {
  background: #f1f1f1;
  color: #232323;
  padding-top: 34px;
}

.dedicated-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 46px;
  align-items: start;
}

.dedicated-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.dedicated-footer-logo {
  width: 78px;
  background: #fff;
  padding: 8px;
}

.dedicated-footer-brand-text p,
.dedicated-footer-links a,
.dedicated-footer-contact p,
.dedicated-footer-contact a {
  margin: 0 0 10px;
  font-size: clamp(15px, 1.04vw, 21px);
  line-height: 1.4;
  color: #232323;
  text-decoration: none;
}

.dedicated-footer-links {
  display: flex;
  flex-direction: column;
}

.dedicated-footer-links a,
.dedicated-footer-contact a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dedicated-linkedin-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dedicated-linkedin-icon {
  width: 28px;
  height: 28px;
}

.dedicated-footer-bottom {
  text-align: center;
  padding: 24px 0 18px;
}

.dedicated-footer-bottom p {
  margin: 0;
  font-size: clamp(14px, 0.95vw, 18px);
  color: #232323;
}

/* Responsive */
@media (max-width: 1280px) {
  .dedicated-back-link {
    position: static;
    margin-left: auto;
  }

  .dedicated-header-inner {
    justify-content: space-between;
    align-items: center;
    min-height: auto;
  }

  .dedicated-title-wrap {
    text-align: left;
  }

  .audit-panel-left,
  .audit-panel-right,
  .audit-panel-center {
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
  }

  .audit-panel-right {
    justify-content: center;
  }

  .audit-panel-left .audit-panel-line,
  .audit-panel-center .audit-panel-line,
  .audit-panel-right .audit-panel-line {
    display: none;
  }

  .dedicated-cta-inner {
  flex-direction: column;
  align-items: flex-start;
}

.dedicated-cta-btn {
  min-width: 0;
  width: auto;
  align-self: flex-start;
}

  .dedicated-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .audit-visual-section {
    min-height: auto;
  }

  .audit-layout {
    padding: 42px 0 56px;
  }

  .audit-panel + .audit-panel {
    margin-top: 34px;
  }

  .dedicated-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .dedicated-back-link {
    margin-left: 0;
  }
}

/* =========================================================
   PAGE DÉDIÉE - CADRE OPÉRATIONNEL
========================================================= */

.page-cadre {
  background: #efefef;
}

.cadre-header {
  background: #352b86;
}

/* zone visuelle */
.cadre-visual-section {
  position: relative;
  min-height: 980px;
  background:
    linear-gradient(rgba(7, 27, 64, 0.18), rgba(7, 27, 64, 0.18)),
    url("../images/cadre-bg.png") center center / cover no-repeat;
  overflow: hidden;
}

.cadre-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 22, 48, 0.12) 0%, rgba(16, 38, 76, 0.08) 100%);
  pointer-events: none;
}

.cadre-layout {
  position: relative;
  z-index: 1;
  padding: 76px 0 64px;
}

/* panneaux */
.cadre-panel {
  display: flex;
  align-items: stretch;
}

.cadre-panel + .cadre-panel {
  margin-top: 40px;
}

.cadre-panel-box {
  width: min(100%, 720px);
  background: rgba(243, 243, 243, 0.94);
  color: #2a2a2a;
  border-radius: 6px;
  padding: 20px 22px 18px;
  box-shadow: 0 8px 18px rgba(10, 17, 33, 0.18);
}

.cadre-panel-box h2 {
  margin: 0 0 28px;
  font-size: clamp(24px, 1.45vw, 34px);
  line-height: 1.15;
  font-weight: 800;
  color: #2b2b2b;
  white-space: nowrap;
}

.cadre-panel-box p {
  margin: 0 0 28px;
  font-size: clamp(17px, 1.34vw, 29px);
  line-height: 1.45;
  color: #2f2f2f;
}

.cadre-panel-box p:last-child {
  margin-bottom: 0;
}

/* traits */
.cadre-panel-line {
  width: 4px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 4px;
  flex: 0 0 4px;
  align-self: stretch;
}

.cadre-panel .right-line {
  margin-left: 8px;
}

/* positionnement fidèle au visuel */
.cadre-panel-left {
  margin-left: 92px;
}

.cadre-panel-left .cadre-panel-line {
  margin-right: 10px;
}

.cadre-panel-left .cadre-panel-box {
  max-width: 720px;
}

.cadre-panel-right {
  justify-content: flex-end;
  margin-top: 38px;
  margin-right: 78px;
}

.cadre-panel-right .cadre-panel-box {
  max-width: 720px;
}

.cadre-panel-bottom {
  margin-top: 38px;
  margin-left: 88px;
}

.cadre-panel-bottom .cadre-panel-line {
  margin-right: 10px;
}

.cadre-panel-bottom .cadre-panel-box {
  max-width: 720px;
}

/* CTA spécifique */
.cadre-cta-section {
  background: #352b86;
}

.cadre-cta-section .dedicated-cta-inner h2 {
  line-height: 1.25;
}

/* responsive */
@media (max-width: 1280px) {
  .cadre-panel-left,
  .cadre-panel-right,
  .cadre-panel-bottom {
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
  }

  .cadre-panel-left .cadre-panel-line,
  .cadre-panel-right .cadre-panel-line,
  .cadre-panel-bottom .cadre-panel-line {
    display: none;
  }

  .cadre-visual-section {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .cadre-layout {
    padding: 42px 0 50px;
  }

  .cadre-panel + .cadre-panel {
    margin-top: 28px;
  }

  .cadre-panel-box {
    padding: 18px 18px 16px;
  }
}

.dedicated-title-wrap p {
  white-space: nowrap;
}

.dedicated-cta-btn {
  white-space: nowrap;
}

/* =========================================================
   PAGE DÉDIÉE - PILOTAGE AUTONOME
========================================================= */

.page-pilotage {
  background: #efefef;
}

.pilotage-header {
  background: #352b86;
}

/* zone visuelle */
.pilotage-visual-section {
  position: relative;
  min-height: 980px;
  background:
    linear-gradient(rgba(9, 18, 46, 0.20), rgba(9, 18, 46, 0.20)),
    url("../images/pilotage-bg.png") center center / cover no-repeat;
  overflow: hidden;
}

.pilotage-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 21, 48, 0.08) 0%, rgba(12, 31, 74, 0.10) 100%);
  pointer-events: none;
}

.pilotage-layout {
  position: relative;
  z-index: 1;
  padding: 76px 0 64px;
}

/* panneaux */
.pilotage-panel {
  display: flex;
  align-items: stretch;
}

.pilotage-panel + .pilotage-panel {
  margin-top: 40px;
}

.pilotage-panel-box {
  width: min(100%, 760px);
  background: rgba(88, 72, 196, 0.82);
  color: #ffffff;
  border-radius: 6px;
  padding: 20px 22px 18px;
  box-shadow: 0 8px 18px rgba(10, 17, 33, 0.20);
}

.pilotage-panel-box h2 {
  margin: 0 0 28px;
  font-size: clamp(24px, 1.72vw, 36px);
  line-height: 1.18;
  font-weight: 800;
  color: #ffffff;
}

.pilotage-panel-box p {
  margin: 0 0 28px;
  font-size: clamp(17px, 1.28vw, 27px);
  line-height: 1.45;
  color: #ffffff;
}

.pilotage-panel-box p:last-child {
  margin-bottom: 0;
}

/* traits */
.pilotage-panel-line {
  width: 4px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  flex: 0 0 4px;
  align-self: stretch;
}

.pilotage-panel .right-line {
  margin-left: 8px;
}

/* positionnement */
.pilotage-panel-left {
  margin-left: 92px;
}

.pilotage-panel-left .pilotage-panel-line {
  margin-right: 10px;
}

.pilotage-panel-left .pilotage-panel-box {
  max-width: 760px;
}

.pilotage-panel-right {
  justify-content: flex-end;
  margin-top: 40px;
  margin-right: 78px;
}

.pilotage-panel-right .pilotage-panel-box {
  max-width: 760px;
}

.pilotage-panel-bottom {
  margin-top: 42px;
  margin-left: 96px;
}

.pilotage-panel-bottom .pilotage-panel-line {
  margin-right: 10px;
}

.pilotage-panel-bottom .pilotage-panel-box {
  max-width: 760px;
}

/* CTA spécifique */
.pilotage-cta-section {
  background: #352b86;
}

.dedicated-cta-inner h2 {
  margin: 0;
  color: #ffffff;

  font-size: clamp(36px, 3vw, 56px);
  line-height: 1.2;
  font-weight: 800;

  max-width: 520px; /* ← CONTRÔLE LE RETOUR À LA LIGNE */
}

/* responsive */
@media (max-width: 1280px) {
  .pilotage-panel-left,
  .pilotage-panel-right,
  .pilotage-panel-bottom {
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
  }

  .pilotage-panel-left .pilotage-panel-line,
  .pilotage-panel-right .pilotage-panel-line,
  .pilotage-panel-bottom .pilotage-panel-line {
    display: none;
  }

  .pilotage-visual-section {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .pilotage-layout {
    padding: 42px 0 50px;
  }

  .pilotage-panel + .pilotage-panel {
    margin-top: 28px;
  }

  .pilotage-panel-box {
    padding: 18px 18px 16px;
  }
}

/* =========================================================
   PAGE DÉDIÉE - APPUIS CIBLÉS
========================================================= */

.page-appuis {
  background: #efefef;
}

.appuis-header {
  background: #352b86;
}

/* zone visuelle */
.appuis-visual-section {
  position: relative;
  min-height: 1160px;
  background:
    linear-gradient(rgba(7, 18, 54, 0.38), rgba(7, 18, 54, 0.38)),
    url("../images/hero.png") center center / cover no-repeat;
  overflow: hidden;
}

.appuis-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 8, 28, 0.18) 0%, rgba(10, 29, 64, 0.16) 100%);
  pointer-events: none;
}

.appuis-layout {
  position: relative;
  z-index: 1;
  padding: 34px 0 44px;
}

.appuis-big-title {
  margin: 0 0 54px 112px;
  font-size: clamp(34px, 2.65vw, 54px);
  line-height: 1.15;
  font-weight: 800;
  color: #10d4dc;
  max-width: 1240px;
  text-shadow: 0 0 6px rgba(6, 20, 46, 0.3);
}

/* blocs */
.appuis-block {
  display: flex;
  align-items: stretch;
  margin-left: 96px;
  margin-bottom: 66px;
}

.appuis-block-line {
  width: 6px;
  flex: 0 0 6px;
  background: #10d4dc;
  border-radius: 4px;
  margin-right: 12px;
}

.appuis-block-content {
  max-width: 1180px;
  color: #ffffff;
}

.appuis-block-content h3 {
  margin: 0 0 28px;
  font-size: clamp(24px, 1.7vw, 34px);
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
}

.appuis-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 58px;
  margin-bottom: 28px;
  max-width: 1180px;
}

.appuis-list-grid ul {
  margin: 0;
  padding-left: 28px;
  list-style: disc;
}

.appuis-list-grid li {
  margin-bottom: 24px;
  font-size: clamp(19px, 1.38vw, 29px);
  line-height: 1.42;
  color: #10d4dc;
  font-weight: 700;
  text-shadow: 0 0 4px rgba(8, 20, 42, 0.35);
}

.appuis-list-grid li::marker {
  color: #10d4dc;
}

.appuis-objective {
  margin: 0;
  font-size: clamp(22px, 1.55vw, 31px);
  line-height: 1.35;
  color: #ffffff;
  font-weight: 700;
}

/* CTA */
.appuis-cta-section {
  background: #352b86;
  padding: 36px 0 30px;
}

.appuis-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.appuis-cta-inner h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3vw, 62px);
  line-height: 1.15;
  font-weight: 800;
}

.appuis-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 550px;
  min-height: 72px;
  padding: 14px 30px;
  border-radius: 10px;
  background: #f3f3f3;
  color: #4a43b3;
  font-size: clamp(22px, 2vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(197, 187, 255, 0.18);
}

/* responsive */
@media (max-width: 1280px) {
  .appuis-big-title {
    margin-left: 0;
  }

  .appuis-block {
    margin-left: 0;
  }

  .appuis-list-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .appuis-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .appuis-cta-btn {
    min-width: 0;
    width: auto;
    align-self: flex-start;
  }
}

@media (max-width: 900px) {
  .appuis-visual-section {
    min-height: auto;
  }

  .appuis-layout {
    padding: 28px 0 30px;
  }

  .appuis-big-title {
    margin-bottom: 34px;
  }

  .appuis-block {
    margin-bottom: 42px;
  }

  .appuis-list-grid li {
    margin-bottom: 16px;
  }
}

/* =========================================================
   PAGE DÉDIÉE - TARIFS
========================================================= */

.page-tarifs {
  background: #efefef;
}

.tarifs-header {
  background: #352b86;
}

.tarifs-visual-section {
  background: linear-gradient(90deg, #ddd3f6 0%, #e8f6f8 100%);
  padding: 50px 0 40px;
}

.tarifs-layout {
  display: flex;
  flex-direction: column;
  gap: 62px;
}

/* grille tarifs */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 70px 150px;
}

.tarif-card {
  display: flex;
  flex-direction: column;
}

.tarif-card-box {
  min-height: 215px;
  border: 1.8px solid #10d4dc;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
  padding: 24px 24px 18px;
}

.tarifs-grid .tarif-card:nth-child(2) .tarif-card-box {
  width: 620px;
  max-width: 620px;
}

.tarif-card-box h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 1.9vw, 40px);
  line-height: 1.22;
  font-weight: 800;
  color: #262626;
}

.tarif-card-box p {
  margin: 0 0 10px;
  font-size: clamp(18px, 1.4vw, 29px);
  line-height: 1.45;
  color: #545d69;
}

.tarif-card-box strong {
  color: #545d69;
  font-weight: 800;
}

.tarif-note {
  margin: 4px 0 0 6px;
  font-size: clamp(9px, 0.62vw, 12px);
  line-height: 1.3;
  color: #2a2a2a;
  font-style: italic;
}

/* carte FE */
.tarif-card-fe .tarif-card-box {
  min-height: 212px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tarif-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 350px;
  min-height: 84px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.8px solid #10d4dc;
  color: #4a43b3;
  background: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  font-size: clamp(20px, 1.6vw, 32px);
  line-height: 1.1;
  letter-spacing: 0.16em;
  font-weight: 500;
  align-self: flex-start;
}

/* engagement */
.engagement-section {
  padding-top: 10px;
}

.engagement-section h2 {
  margin: 0 0 44px 10px;
  font-size: clamp(28px, 2vw, 42px);
  line-height: 1.2;
  font-weight: 800;
  color: #262626;
  position: relative;
  display: inline-block;
}

.engagement-section h2::after {
  content: "";
  display: block;
  width: 280px;
  height: 3px;
  background: #10d4dc;
  margin-top: 12px;
}

.engagement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 120px;
}

.engagement-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.engagement-grid li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 28px;
  font-size: clamp(16px, 1.12vw, 24px);
  line-height: 1.35;
  color: #2f3e4d;
  white-space: nowrap;
}

.engagement-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #10d4dc;
  font-weight: 800;
}

/* CTA */
.tarifs-cta-section {
  background: #352b86;
  padding: 56px 0 56px;
}

.tarifs-cta-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tarifs-big-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 880px;
  min-height: 88px;
  padding: 18px 36px;
  border-radius: 10px;
  background: #f1f1f1;
  color: #4a43b3;
  font-size: clamp(34px, 3vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

/* responsive */
@media (max-width: 1280px) {
  .tarifs-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .engagement-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tarif-pill-btn {
    min-width: 0;
    width: 100%;
    letter-spacing: 0.08em;
  }

  .tarifs-big-cta-btn {
    min-width: 0;
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .tarifs-visual-section {
    padding: 34px 0 28px;
  }

  .tarifs-layout {
    gap: 40px;
  }

  .tarif-card-box {
    min-height: auto;
  }

  .engagement-section h2::after {
    width: 200px;
  }
}

.page-tarifs .dedicated-header {
  padding: 20px 0 14px !important;
}

.page-tarifs .dedicated-title-wrap {
  margin-left: 0 !important;
  text-align: left !important;
}

/* =========================================================
   PAGE DÉDIÉE - FACTURATION ÉLECTRONIQUE
========================================================= */

.page-fe {
  background: #efefef;
}

.fe-header {
  background: #352b86;
}

/* intro claire */
.fe-intro-section {
  background: linear-gradient(90deg, #ddd3f6 0%, #e7f4f7 100%);
  padding: 44px 0 34px;
}

.fe-intro-inner h2 {
  margin: 0 0 42px;
  font-size: clamp(34px, 2.45vw, 52px);
  line-height: 1.15;
  font-weight: 800;
  color: #242424;
}

.fe-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  margin-bottom: 54px;
}

.fe-reason {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.fe-reason-line {
  width: 6px;
  min-width: 6px;
  height: 64px;
  background: #352b86;
  border-radius: 3px;
  margin-top: 6px;
}

.fe-reason p {
  margin: 0;
  font-size: clamp(20px, 1.45vw, 30px);
  line-height: 1.4;
  color: #2b2b2b;
  font-weight: 700;
}

.fe-intro-copy p {
  margin: 0 0 24px;
  font-size: clamp(21px, 1.45vw, 29px);
  line-height: 1.45;
  color: #323842;
}

.fe-intro-copy strong {
  color: #1f1f1f;
  font-weight: 800;
}

/* bloc principal */
.fe-journey-section {
  background: linear-gradient(90deg, #ddd3f6 0%, #e7f4f7 100%);
  padding: 12px 0 42px;
}

.fe-journey-wrap {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.fe-journey-card {
  background: rgba(245, 248, 252, 0.72);
  border: 1px solid rgba(85, 91, 116, 0.18);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(40, 46, 66, 0.16);
  padding: 26px 28px 18px;
}

.fe-step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  align-items: flex-start;
}

.fe-step + .fe-step {
  margin-top: 26px;
}

.fe-step-number {
  font-size: clamp(44px, 3.6vw, 80px);
  line-height: 1;
  font-weight: 800;
  color: #4a43b3;
  text-align: center;
}

.fe-step-content h3 {
  margin: 4px 0 8px;
  font-size: clamp(24px, 1.8vw, 38px);
  line-height: 1.15;
  font-weight: 800;
  color: #4a43b3;
}

.fe-step-content h4 {
  margin: 0 0 18px;
  font-size: clamp(24px, 1.7vw, 36px);
  line-height: 1.18;
  font-weight: 800;
  color: #4a43b3;
}

.fe-step-content p {
  margin: 0 0 22px;
  font-size: clamp(19px, 1.32vw, 28px);
  line-height: 1.42;
  color: #2f3a47;
}

.fe-step-subblock h5 {
  margin: 0 0 14px;
  font-size: clamp(19px, 1.32vw, 28px);
  line-height: 1.3;
  font-weight: 800;
  color: #232323;
}

.fe-step-subblock ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fe-step-subblock li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: clamp(18px, 1.28vw, 27px);
  line-height: 1.42;
  color: #2f3a47;
}

.fe-step-subblock li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #4a43b3;
  font-weight: 800;
}

/* zone basse */
.fe-bottom-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 96px;
  align-items: start;
}

.fe-price-card {
  background: #352b86;
  color: #ffffff;
  border-radius: 12px;
  padding: 28px 22px 24px;
  border: 4px solid rgba(255, 255, 255, 0.9);
}

.fe-price-card h3 {
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(26px, 1.8vw, 38px);
  line-height: 1.15;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.fe-price-item {
  margin-bottom: 28px;
}

.fe-price-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.fe-price-line .label,
.fe-price-line .value {
  font-size: clamp(20px, 1.35vw, 28px);
  line-height: 1.3;
  color: #ffffff;
}

.fe-price-item p,
.fe-price-footer p {
  margin: 0 0 8px;
  font-size: clamp(17px, 1.16vw, 23px);
  line-height: 1.45;
  color: #ffffff;
}

.fe-price-note {
  margin: 0 0 34px;
  font-size: clamp(11px, 0.72vw, 14px);
  line-height: 1.3;
  color: #ffffff;
  font-style: italic;
}

.fe-argument-box {
  padding-top: 26px;
}

.fe-argument-box p {
  margin: 0 0 46px;
  font-size: clamp(22px, 1.55vw, 33px);
  line-height: 1.55;
  color: #2f3a47;
}

.fe-argument-box strong {
  color: #222;
  font-weight: 800;
}

/* CTA */
.fe-cta-section {
  background: #352b86;
  padding: 58px 0 58px;
}

.fe-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
}

.fe-cta-inner h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 58px);
  line-height: 1.45;
  font-weight: 800;
  max-width: 820px;
}

.fe-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 580px;
  min-height: 76px;
  padding: 14px 28px;
  border-radius: 10px;
  background: #f3f3f3;
  color: #4a43b3;
  font-size: clamp(30px, 2.2vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

/* responsive */
@media (max-width: 1280px) {
  .fe-reasons-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fe-bottom-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .fe-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .fe-cta-btn {
    min-width: 0;
    width: auto;
    align-self: flex-start;
  }
}

@media (max-width: 900px) {
  .fe-intro-section,
  .fe-journey-section {
    padding-left: 0;
    padding-right: 0;
  }

  .fe-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fe-step-number {
    text-align: left;
  }

  .fe-cta-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

/* =========================================================
   CORRECTIFS - PAGE FACTURATION ÉLECTRONIQUE
========================================================= */

@media (min-width: 1281px) {

  /* 1) BANDEAU HAUT */
  .page-fe .dedicated-header-inner {
    min-height: 138px;
    padding: 18px 0 12px;
  }

  .page-fe .dedicated-title-wrap {
    margin-left: 0;
    max-width: 980px;
    text-align: left;
  }

  .page-fe .dedicated-title-wrap h1 {
    margin: 0 0 8px;
    line-height: 1.02;
  }

  .page-fe .dedicated-title-wrap p {
    margin: 0;
    line-height: 1.15;
  }

  /* 2) INTRO - paragraphes sous le titre */
  .page-fe .fe-intro-copy {
    margin-left: 10px;
    max-width: 1240px;
  }

  /* 3) BLOC ÉTAPES - cascade */
  .page-fe .fe-journey-card {
    position: relative;
    padding: 28px 34px 210px;
  }

  .page-fe .fe-step {
    grid-template-columns: 92px 1fr;
    gap: 24px;
    align-items: flex-start;
  }

  .page-fe .fe-step-1 {
    max-width: 1180px;
    margin-left: 0;
  }

  .page-fe .fe-step-2 {
    max-width: 980px;
    margin-left: 340px;
  }

  .page-fe .fe-step-3 {
    max-width: 900px;
    margin-left: 600px;
  }

  /* 4) BLOC TARIFS - remonte à cheval sur le grand conteneur */
  .page-fe .fe-bottom-grid {
    grid-template-columns: 430px 1fr;
    gap: 96px;
    align-items: start;
    margin-top: -490px;
  }

  .page-fe .fe-price-box {
    position: relative;
    z-index: 2;
  }

  .page-fe .fe-price-card {
    margin-left: 35px;
  }

  .page-fe .fe-argument-box {
    padding-top: 505px;
  }

  /* 5) BANDEAU BAS */
  .page-fe .fe-cta-inner h2 {
    max-width: 760px;
    font-size: clamp(34px, 2.45vw, 52px);
    line-height: 1.28;
  }

  .page-fe .fe-cta-btn {
    min-width: 720px;
    padding: 16px 34px;
    font-size: clamp(30px, 2.05vw, 48px);
    white-space: nowrap;
  }
}

.fe-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.fe-price-line .value {
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}

.fe-price-line .value strong {
  font-size: inherit;
  font-weight: 800;
  line-height: inherit;
}

.fe-price-line .value-long {
  margin-right: 4px;
}

/* =========================================================
   PAGE DÉDIÉE - POLITIQUE DE CONFIDENTIALITÉ
========================================================= */

.page-confidentialite {
  background: #352b86;
}

.confidentialite-header {
  background: #352b86;
  border-top: 2px solid #ff00d4;
}

.confidentialite-header-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 120px;
  padding: 18px 0 8px;
}

.confidentialite-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 3.8vw, 72px);
  line-height: 1.08;
  font-weight: 300;
  text-align: center;
}

/* contenu */
.confidentialite-content {
  background: #352b86;
  padding: 10px 0 44px;
}

.confidentialite-wrap {
  max-width: 1020px;
  margin: 0 auto;
  padding-left: 170px;
}

.confidentialite-block {
  margin-bottom: 54px;
}

.confidentialite-block h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(24px, 1.9vw, 40px);
  line-height: 1.2;
  font-weight: 800;
}

.confidentialite-block p {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(22px, 1.55vw, 34px);
  line-height: 1.55;
  font-weight: 400;
}

/* footer déjà existant, on le garde clair */

/* responsive */
@media (max-width: 1280px) {
  .confidentialite-wrap {
    padding-left: 40px;
    max-width: none;
  }
}

@media (max-width: 900px) {
  .confidentialite-header-inner {
    justify-content: flex-start;
    min-height: auto;
    padding: 18px 0 10px;
  }

  .confidentialite-title {
    text-align: left;
    max-width: 80%;
  }

  .confidentialite-wrap {
    padding-left: 0;
  }

  .confidentialite-block {
    margin-bottom: 34px;
  }
}

/* =========================================================
   PAGE DÉDIÉE - MENTIONS LÉGALES
========================================================= */

.page-mentions {
  background: #352b86;
}

.mentions-header {
  background: #352b86;
  border-top: 2px solid #ff00d4;
}

.mentions-header-inner {
  position: relative;
  display: flex;
  justify-content: flex-start; /* ⬅️ plus centré */
  align-items: flex-start;
  padding: 18px 0 8px;
}

.mentions-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 3.8vw, 72px);
  line-height: 1.08;
  font-weight: 300;

  text-align: left;       /* ⬅️ important */
  padding-left: 170px;    /* ⬅️ alignement avec le contenu */
}

/* contenu */
.mentions-content {
  background: #352b86;
  padding: 10px 0 24px;
}

.mentions-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 170px;
}

.mentions-block {
  margin-bottom: 56px;
}

.mentions-block h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(24px, 1.9vw, 40px);
  line-height: 1.2;
  font-weight: 800;
}

.mentions-block p {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(22px, 1.55vw, 34px);
  line-height: 1.55;
  font-weight: 400;
}

/* responsive */
@media (max-width: 1280px) {
  .mentions-wrap {
    padding-left: 40px;
    max-width: none;
  }
}

@media (max-width: 900px) {
  .mentions-header-inner {
    justify-content: flex-start;
    min-height: auto;
    padding: 18px 0 10px;
  }

  .mentions-title {
    text-align: left;
    max-width: 80%;
  }

  .mentions-wrap {
    padding-left: 0;
  }

  .mentions-block {
    margin-bottom: 34px;
  }
}

/* =========================================================
   PAGE DÉDIÉE - POLITIQUE DE COOKIES
========================================================= */

.page-cookies {
  background: #352b86;
}

.cookies-header {
  background: #352b86;
  border-top: 2px solid #ff00d4;
}

.cookies-header-inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 120px;
  padding: 18px 0 8px 0;
}

.cookies-title {
  margin: 0;
  padding-left: 110px;
  color: #ffffff;
  font-size: clamp(34px, 3.4vw, 68px);
  line-height: 1.08;
  font-weight: 300;
  text-align: left;
}

/* contenu */
.cookies-content {
  background: #352b86;
  padding: 14px 0 18px;
}

.cookies-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 165px;
}

.cookies-block {
  max-width: 1160px;
  margin-bottom: 38px;
}

.cookies-block h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(22px, 1.7vw, 36px);
  line-height: 1.25;
  font-weight: 800;
}

.cookies-block p {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(21px, 1.48vw, 33px);
  line-height: 1.42;
  font-weight: 400;
}

/* paragraphes centrés */
.cookies-centered-copy {
  max-width: 1040px;
  margin: 56px auto 34px;
  text-align: center;
}

.cookies-centered-copy p {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: clamp(21px, 1.48vw, 33px);
  line-height: 1.42;
  font-weight: 400;
}

/* liste liens */
.cookies-links-block {
  max-width: 920px;
  margin: 0 auto 58px;
}

.cookies-links-list {
  margin: 0;
  padding-left: 38px;
  list-style: disc;
}

.cookies-links-list li {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(21px, 1.48vw, 33px);
  line-height: 1.35;
}

.cookies-links-list a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* lien google */
.cookies-google-copy {
  margin-top: 70px;
  margin-bottom: 54px;
}

.cookies-google-link {
  font-size: clamp(23px, 1.7vw, 38px);
  line-height: 1.35;
}

/* dernier bloc */
.cookies-final-block {
  max-width: 1100px;
  margin-left: 0;
  margin-bottom: 8px;
}

/* responsive */
@media (max-width: 1280px) {
  .cookies-title {
    padding-left: 40px;
  }

  .cookies-wrap {
    padding-left: 40px;
  }
}

@media (max-width: 900px) {
  .cookies-header-inner {
    padding: 18px 0 10px;
  }

  .cookies-title {
    padding-left: 0;
    max-width: 82%;
    text-align: left;
  }

  .cookies-wrap {
    padding-left: 0;
  }

  .cookies-centered-copy,
  .cookies-links-block {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    text-align: left;
  }

  .cookies-links-list {
    padding-left: 24px;
  }

  .cookies-google-copy {
    text-align: left;
  }
}