/*
 * offre-visio.less — écran "Offre Visio" (template-offre-visio.php).
 * Tout le layout vient du partiel _offre-page.less, commun aux deux offres.
 */
/*
 * _offre-page.less — layout commun des pages Offre Solo et Offre Visio.
 * Partiel importé (avec émission de CSS) par offre-solo.less et offre-visio.less :
 * chaque écran ne charge que son propre .css compilé.
 */
/* --- Bandeau d'entête --- */
.op-hero {
  background: linear-gradient(160deg, #322752 0%, #261D3E 100%);
  color: #fff;
  padding: 72px 64px;
  text-align: center;
}
.op-hero .op-hero__inner {
  max-width: 780px;
  margin: 0 auto;
}
.op-hero h1 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 18px;
  text-wrap: pretty;
}
.op-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: #C0B7D2;
  margin: 0;
  text-wrap: pretty;
}
/* --- Corps 2 colonnes : contenu + carte prix sticky --- */
.op-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 40px 88px;
  align-items: start;
}
.op-main {
  /* Liste de bénéfices détaillés */
  /* Étapes numérotées */
  /* Encart RGPD */
  /* Renvoi vers l'autre offre */
}
.op-main .op-block {
  margin-bottom: 56px;
}
.op-main .op-block h2 {
  font-size: 28px;
  font-weight: 600;
  color: #322752;
  margin: 0 0 28px;
}
.op-main .op-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}
.op-main .op-features li {
  display: flex;
  gap: 16px;
}
.op-main .op-features li i {
  flex: none;
  width: 8px;
  height: 8px;
  background: #9B7ED4;
  transform: rotate(45deg);
  margin-top: 7px;
}
.op-main .op-features li b {
  display: block;
  font-size: 16px;
  color: #322752;
  margin-bottom: 3px;
}
.op-main .op-features li span {
  font-size: 14.5px;
  line-height: 1.6;
  color: #5F5970;
}
.op-main .op-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  counter-reset: none;
}
.op-main .op-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.op-main .op-steps li > span {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #9B7ED4;
  color: #322752;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.op-main .op-steps li > div {
  font-size: 14.5px;
  line-height: 1.6;
  color: #5F5970;
  padding-top: 5px;
}
.op-main .op-steps li > div b {
  display: block;
  font-size: 16px;
  color: #322752;
  margin-bottom: 2px;
}
.op-main .op-privacy {
  background: #F5F3F9;
  border-radius: 12px;
  padding: 28px 32px;
}
.op-main .op-privacy h3 {
  font-size: 18px;
  color: #322752;
  margin: 0 0 10px;
}
.op-main .op-privacy p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #5F5970;
  margin: 0;
}
.op-main .op-crosssell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid #E8E4EE;
  border-radius: 12px;
  padding: 26px 30px;
}
.op-main .op-crosssell b {
  display: block;
  font-size: 16px;
  color: #322752;
  margin-bottom: 4px;
}
.op-main .op-crosssell span {
  font-size: 14.5px;
  line-height: 1.55;
  color: #5F5970;
}
.op-main .op-crosssell .hp-btn {
  flex: none;
}
/* --- Carte prix (colonne droite, sticky) --- */
.op-aside {
  position: sticky;
  top: 24px;
}
.op-card {
  border: 1px solid #E8E4EE;
  border-radius: 14px;
  padding: 34px 32px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(50, 39, 82, 0.1);
  position: relative;
}
.op-card .op-card__flag {
  position: absolute;
  top: -13px;
  left: 32px;
  background: #9B7ED4;
  color: #322752;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.op-card .op-card__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6E51A8;
  margin-bottom: 10px;
}
.op-card .op-card__price {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 46px;
  font-weight: 700;
  color: #322752;
  margin-bottom: 20px;
}
.op-card .op-card__price small {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #5F5970;
}
.op-card .op-card__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 11px;
  font-size: 14.5px;
  color: #453D57;
}
.op-card .op-card__list li::before {
  content: '✓\00a0\00a0';
  color: #6E51A8;
  font-weight: 700;
}
.op-card .op-card__soon {
  font-size: 13px;
  color: #948CA3;
  text-align: center;
  margin: 10px 0 0;
}
.op-card .op-card__badges {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #E8E4EE;
}
.op-card.op-card--visio {
  border: 2px solid #9B7ED4;
  background: #FAF8FD;
}
/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .op-body {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 40px 72px;
  }
  .op-aside {
    position: static;
    max-width: 480px;
  }
}
@media (max-width: 640px) {
  .op-hero {
    padding: 48px 20px;
  }
  .op-hero h1 {
    font-size: 30px;
  }
  .op-body {
    padding: 40px 20px 56px;
  }
  .op-main .op-crosssell {
    flex-direction: column;
    align-items: flex-start;
  }
}
