/* Jérémy Bernardo — styles complémentaires (tarif unique, conformité, modules) */

/* ===== Page conformité : sous-titre du hero ===== */
.modules-hero__subtitle {
  max-width: 640px;
}

/* ===== Section tarif unique ===== */
.pricing {
  background: var(--color-bg-dark);
}
.pricing::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -160px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgb(255 127 33 / 14%), rgb(19 19 19 / 0%) 100%);
  pointer-events: none;
}
.pricing .audit__intro,
.pricing .audit__content,
.pricing .audit__summary {
  min-width: 0;
  max-width: 100%;
}
.pricing .audit__steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 100%;
}
.pricing .audit__step {
  min-width: 0;
  min-height: 210px;
  overflow-wrap: break-word;
}
@media (max-width: 767px) {
  .pricing .audit__steps {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing .audit__cta {
    padding: 16px 30px 15px;
    font-size: 16px;
  }
  .audit__step h3 {
    font-size: 38px;
    line-height: 1.1;
  }
}

.pricing__amount {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin-bottom: 26px;
  max-width: 100%;
  font-family: var(--font-title);
  line-height: 1;
}
.pricing__amount-value {
  font-size: clamp(64px, 8vw, 104px);
  letter-spacing: -1.5px;
  max-width: 100%;
  overflow-wrap: break-word;
}
.pricing__amount-unit {
  font-size: clamp(22px, 2.4vw, 30px);
  color: rgb(255 255 255 / 70%);
}
@media (max-width: 767px) {
  .pricing__amount-value { font-size: 56px; }
  .pricing__amount-unit { font-size: 20px; }
}
@media (max-width: 400px) {
  .pricing__amount-value { font-size: 46px; }
  .pricing__amount-unit { font-size: 18px; }
}

/* Encart "Le tarif unique s'applique" : contenu centré verticalement */
.training-pricing__payment-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== Déroulement en 4 étapes (désactivé, conservé pour réactivation) ===== */
.v2-process .modules-process__steps {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .v2-process .modules-process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .v2-process .modules-process__steps { grid-template-columns: 1fr; }
}

/* ===== Bandeau "Sur mesure" / "conseil" ===== */
.banner--conseil .banner__title {
  line-height: 1;
  margin-bottom: 40px;
}
.sur-mesure__break {
  display: none;
}
@media (max-width: 767px) {
  .sur-mesure__break { display: block; }
}

/* ===== Modules — variante claire (mêmes couleurs que "échange gratuit") ===== */
.tools--light {
  background: #fff3e2;
  color: var(--color-black);
}
.tools--light .tools__description {
  color: #54504c;
}
.tools--light .tools__logo {
  border-color: rgb(115 67 23 / 20%);
  background: rgb(255 255 255 / 70%);
  color: #2f160a;
}
.tools__logo-mark {
  display: inline-block;
  width: 100%;
  max-width: 136px;
  height: 38px;
  background-color: #644d3d;
  -webkit-mask-image: var(--icon-url);
  mask-image: var(--icon-url);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.tools--light .tools__logo-label {
  border-top-color: rgb(0 0 0 / 15%);
  color: #54504c;
}
.tools--light .tools__cta {
  border-color: var(--color-black);
  color: var(--color-black);
}
.tools--light .tools__cta:hover {
  background: transparent;
  color: var(--color-black);
}

/* ===== Section conformité / données sensibles ===== */
.secure {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  background-color: var(--color-bg-darker);
  background-image:
    linear-gradient(rgb(0 0 0 / 70%), rgb(0 0 0 / 70%)),
    url("../assets/img/rgpd/1.jpg");
  background-position: center;
  background-size: cover;
  color: var(--color-white);
}
@media (max-width: 767px) {
  .secure {
    background-image: none;
  }
  .secure::before {
    content: "";
    position: absolute;
    top: -240px;
    right: -160px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgb(255 127 33 / 14%), rgb(19 19 19 / 0%) 100%);
    pointer-events: none;
  }
}
.secure__inner {
  position: relative;
  z-index: 1;
}
.secure__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.secure__eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}
.secure__title {
  max-width: 680px;
  margin-top: 18px;
  font-family: var(--font-title);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.5px;
}
.secure__text {
  margin-top: 22px;
  max-width: 710px;
  color: rgb(255 255 255 / 72%);
  font-size: 16px;
  line-height: 1.65;
}
.secure__cta {
  margin-top: 34px;
  border-color: var(--color-accent);
}
.secure__cta:hover {
  background-color: rgb(255 255 255 / 8%);
}
