.quiz-step {
  background: #FFF;
  border-radius: 14px;
  padding : 30px;
}

.quiz-choices--vertical {
  flex-direction: column;
  gap: 12px;
}

.quiz-choice--full {
  width: 476px;
  height: 65px;
  border-radius: 10px;
  border: 1px solid #E3E3E3;
  background: #FFF;
  padding: 0 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quiz-choice--full:hover {
  border-color: #00BFE5;
  box-shadow: 0 0 0 2px rgba(0, 191, 229, 0.15);
}

.quiz-choice--full.selected {
  border-color: #00BFE5;
  box-shadow: 0 0 0 2px rgba(0, 191, 229, 0.25);
}

.quiz-choice-label {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding-top: 20px;
}

.sol-section {
  width: 1440px;
  margin: 0 auto;
  background: #FFF;
  padding: 80px 80px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.sol-title {
  width: 794px;
  color: #002964;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 120%;
}

.sol-subtitle {
  width: 689px;
  color: #3F4955;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.sol-grid {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sol-card {
  width: 411px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.04);
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sol-card--486 {
  min-height: 486px;
  height: auto;
}

.sol-card--664 {
  min-height: 664px;
  height: auto;
}

.sol-card-title {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
}

.sol-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sol-flow svg { flex-shrink: 0; }

/* Sous-boîtes */
.sol-subbox {
  display: flex;
  width: 308px;
  height: 55px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
}

.sol-subbox span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.sol-subbox--grey {
  background: #F8F8F8;
}
.sol-subbox--grey span {
  color: #000;
  font-weight: 500;
}

.sol-subbox--orange {
  background: #FFF4ED;
}
.sol-subbox--orange span {
  color: #D38751;
  font-weight: 600;
  text-transform: uppercase;
}

.sol-subbox--violet {
  background: #F5F2F9;
}
.sol-subbox--violet span {
  color: #8E5EC0;
  font-weight: 600;
  text-transform: uppercase;
}

.sol-subbox--cyan {
  background: #F2FDFF;
}
.sol-subbox--cyan span {
  color: #00BFE5;
  font-weight: 600;
}

.sol-divider-dash {
  width: 308px;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    #B4B4B4 0,
    #B4B4B4 6px,
    transparent 6px,
    transparent 12px
  );
  align-self: center;
  margin: 8px 0;
}

.sol-card {
  align-items: center;
}

.coup-section {
  width: 1440px;
  margin: 0 auto;
  background: #FFF;
  padding: 20px 80px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.coup-title {
  width: 794px;
  color: #002964;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 120%;
}

.coup-grid {
  display: grid;
  grid-template-columns: repeat(3, 411px);
  gap: 20px;
}

.coup-card {
  width: 411px;
  height: 541px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.04);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.coup-card--photo {
  padding: 0;
  overflow: hidden;
}

.coup-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.coup-card-title {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.coup-card-text {
  color: #3F4955;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.coup-card-bold {
  font-weight: 600;
  color: #3F4955;
}

.coup-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}

.coup-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.coup-list li svg { flex-shrink: 0; }

.coup-list li span {
  color: #3F4955;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.coup-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: auto;
  margin-top: auto;
  width: fit-content;
  transition: opacity 0.2s;
}
.coup-link:hover { opacity: 0.7; }

.ded-section {
  width: 1440px;
  margin: 0 auto;
  background: #FFF;
  padding: 80px 80px 90px;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

/* Colonne gauche */
.ded-left {
  flex: 0 0 480px;
  width: 480px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 50px;
}

.ded-tag {
  display: inline-flex;
  padding: 10px 20px;
  align-items: flex-end;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid #00BFE5;
  color: #00BFE5;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  width: fit-content;
}

.ded-title {
  color: #002964;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 120%;
}

.ded-subtitle {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.ded-desc {
  color: #3F4955;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.ded-ideal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ded-ideal-title {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}

.ded-ideal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.ded-ideal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ded-ideal-list li svg { flex-shrink: 0; margin-top: 8px; }

.ded-ideal-list li span {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.ded-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ded-btn-primary {
  display: inline-flex;
  height: 62px;
  padding: 16px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  background: #00BFE5;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.ded-btn-primary:hover { opacity: 0.85; }

.ded-btn-outline {
  display: inline-flex;
  height: 62px;
  padding: 16px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  border: 2px solid #00BFE5;
  color: #00BFE5;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.ded-btn-outline:hover { opacity: 0.7; }

/* Colonne droite */
.ded-right {
  position: relative;
  flex-shrink: 0;
  margin-left: 140px;
}

.ded-photo {
  width: 533px;
  height: 582px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.ded-obtenez-box {
  position: absolute;
  bottom: 24px;
  left: -150px;
  width: 446px;
  height: 294px;
  border-radius: 14px;
  background: #FFF;
  box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.08);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ded-obtenez-title {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}

.ded-obtenez-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.ded-obtenez-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ded-obtenez-list li svg { flex-shrink: 0; margin-top: 8px; }

.ded-obtenez-list li span {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

/* Tag violet */
.ded-tag--violet {
  border-color: #8E5EC0;
  color: #8E5EC0;
}

/* Boîte obtenez à droite (inversée) */
.ded-obtenez-box--right {
  left: auto;
  right: -60px;
}

.ded-right2 {
  position: relative;
  flex-shrink: 0;
  margin-left: 40px;
}

.ded-tag--green {
  border-color: #51D383;
  color: #51D383;
}

.ded-tag--pink {
  border-color: #F03E6B;
  color: #F03E6B;
}

.comp2-section {
  width: 1440px;
  margin: 0 auto;
  background: #F5F5F5;
  padding: 80px 80px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.comp2-title {
  color: #002964;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 120%;
}

.comp2-subtitle {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.comp2-box {
  width: 1285px;
  border-radius: 16px;
  background: #FFF;
  padding: 0 40px;
  overflow: hidden;
}

.comp2-table {
  width: 100%;
  border-collapse: collapse;
}

.comp2-head-row {
  border-bottom: 1px solid #B4B4B4;
}

.comp2-th {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  padding: 28px 16px;
  text-align: center;
}

.comp2-th--left { text-align: left; }

.comp2-row {
  border-bottom: 1px solid #B4B4B4;
}

.comp2-row--last { border-bottom: none; }

.comp2-critere {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  padding: 28px 16px;
  text-align: left;
}

.comp2-cell {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  padding: 28px 16px;
  text-align: center;
  vertical-align: middle;
}

.banner-section {
  width: 1440px;
  margin: 0 auto;
  background: #F5F5F5;
  padding: 0 80px 80px;
  display: flex;
  justify-content: center;
}

.banner-box {
  position: relative;
  width: 1285px;
  height: 165px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.banner-title {
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 137%;
}

.banner-subtitle {
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 137%;
}

.banner-btn {
  display: inline-flex;
  height: 62px;
  padding: 16px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  background: #FFF;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.banner-btn:hover { opacity: 0.85; }

.socle-section {
  width: 1440px;
  margin: 0 auto;
  background: #FFF;
  padding: 80px 80px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.socle-title {
  width: 807px;
  color: #002964;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 120%;
}

.socle-outer {
  position: relative;
  width: 100%;
}

.socle-clip {
  overflow: hidden;
  width: 100%;
  padding-bottom: 20px;
}

.socle-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.socle-card {
  flex-shrink: 0;
  width: 232px;
  height: 182px;
  border-radius: 13px;
  background: #FFF;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.socle-card-text {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}

.socle-next {
  position: absolute;
  right: -42px;
  top: 50%;
  transform: translateY(-50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #F3F3F3;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.socle-next:hover { background: #E5E5E5; }

.scen-section {
  width: 1440px;
  margin: 0 auto;
  background: #FFF;
  padding: 20px 80px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.scen-title {
  width: 807px;
  color: #002964;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 120%;
}

.scen-cards {
  display: flex;
  gap: 20px;
}

.scen-card {
  width: 411px;
  height: 234px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.04);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.scen-card-title {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.scen-card-text {
  color: #5E5E5E;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}

.scen-btn {
  display: inline-flex;
  height: 62px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  border: 1px solid #002D6D;
  color: #002D6D;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.scen-btn:hover {
  background: #002D6D;
  color: #FFF;
}