/* ============================================================
   OFFRE — styles spécifiques (préfixe offre-)
   .hero / .hero-inner / .hero-lead globaux → renommés
   ============================================================ */

:root {
  --night-2:    #162035;
  --night-3:    #1E2D47;
  --coral-lt:   #F07050;
  --cream-2:    #EDE8DF;
  --on-dark:    rgba(255,255,255,0.88);
  --muted-dark: rgba(255,255,255,0.50);
  --on-light:   #1A1F2E;
  --muted-light:#6B7280;
  --offre-max:  1100px;
}

/* ── HERO ─────────────────────────────────────────── */
.offre-hero {
  background: var(--night);
  padding: 140px 56px 96px;
  position: relative; overflow: hidden;
}
.offre-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 75% 30%, rgba(224,90,58,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 5% 85%, rgba(30,45,71,0.7) 0%, transparent 60%);
}
.offre-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
}
.offre-hero-inner {
  max-width: var(--offre-max); margin: 0 auto;
  position: relative; z-index: 1;
}
.offre-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,90,58,0.13); border: 0.5px solid rgba(224,90,58,0.3);
  color: var(--coral); border-radius: 40px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; margin-bottom: 28px;
  animation: offreFadeUp 0.5s 0.1s ease both;
}
.offre-hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }

.offre-hero-inner h1 {
  font-family: var(--serif); font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 500; line-height: 1.08; color: white;
  letter-spacing: -0.01em; margin-bottom: 20px;
  animation: offreFadeUp 0.5s 0.22s ease both;
  max-width: 780px;
}
.offre-hero-inner h1 em { font-style: italic; color: var(--coral); }

.offre-hero-lead {
  font-size: 18px; font-weight: 300; color: var(--muted-dark);
  line-height: 1.7; max-width: 620px; margin-bottom: 52px;
  animation: offreFadeUp 0.5s 0.36s ease both;
}

/* 3 vignettes format dans le hero */
.offre-hero-formats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  animation: offreFadeUp 0.6s 0.5s ease both;
}
.offre-hero-formats > * { min-width: 0; }
.hf-card {
  background: var(--night-2); border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 24px 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer; text-decoration: none;
}
.hf-card:hover { border-color: rgba(224,90,58,0.3); transform: translateY(-3px); }
.hf-num     { font-family: var(--serif); font-size: 36px; font-weight: 400; color: rgba(224,90,58,0.2); line-height: 1; }
.hf-title   { font-size: 17px; font-weight: 500; color: white; }
.hf-tagline { font-size: 13px; font-weight: 300; color: var(--muted-dark); line-height: 1.45; }
.hf-cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 500; color: var(--coral);
  margin-top: auto; padding-top: 8px; border-top: 0.5px solid rgba(255,255,255,0.07);
  transition: gap 0.2s;
}
.hf-card:hover .hf-cta { gap: 9px; }

/* ── COMMUNS AUX SECTIONS ─────────────────────────── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 16px;
}
.section-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--coral); display: block; }
.offre-section-title {
  font-family: var(--serif); font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 500; line-height: 1.15; margin-bottom: 16px;
}
.offre-section-title em { font-style: italic; color: var(--coral); }
.offre-section-lead {
  font-size: 15px; font-weight: 300; color: var(--muted-light);
  line-height: 1.7; max-width: 560px; margin-bottom: 52px;
}

/* ── AIDE AU CHOIX (QUIZ) ─────────────────────────── */
.choix       { background: var(--cream); padding: 96px 56px; }
.choix-inner { max-width: var(--offre-max); margin: 0 auto; }

.quiz-wrap {
  background: white; border-radius: 28px; padding: 48px;
  border: 0.5px solid rgba(26,31,46,0.08);
  box-shadow: 0 16px 56px rgba(0,0,0,0.06);
}
.quiz-question {
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  color: var(--on-light); margin-bottom: 28px; line-height: 1.3;
}
.quiz-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.quiz-opt {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--cream); border: 0.5px solid rgba(26,31,46,0.1);
  border-radius: 12px; padding: 16px 18px;
  cursor: pointer; transition: all 0.15s; user-select: none;
}
.quiz-opt:hover    { border-color: rgba(224,90,58,0.3); background: rgba(224,90,58,0.03); }
.quiz-opt.selected { border-color: var(--coral); background: rgba(224,90,58,0.06); }
.quiz-opt-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid rgba(26,31,46,0.2); flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center; transition: all 0.15s;
}
.quiz-opt.selected .quiz-opt-dot { border-color: var(--coral); background: var(--coral); }
.quiz-opt.selected .quiz-opt-dot::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: white; }
.quiz-opt-label { font-size: 14.5px; font-weight: 500; color: var(--on-light); margin-bottom: 2px; }
.quiz-opt-sub   { font-size: 13px;   font-weight: 300; color: var(--muted-light); }

.quiz-result {
  display: none; background: var(--night); border-radius: 20px;
  padding: 32px 36px; animation: offreFadeUp 0.4s ease both;
}
.quiz-result.visible { display: flex; gap: 24px; align-items: flex-start; }
.quiz-result-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(224,90,58,0.15); border: 0.5px solid rgba(224,90,58,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.quiz-result-icon svg { width: 22px; height: 22px; color: var(--coral); }
.quiz-result-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }
.quiz-result-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: white; margin-bottom: 8px; }
.quiz-result-desc  { font-size: 14px; font-weight: 300; color: var(--muted-dark); line-height: 1.65; margin-bottom: 16px; }
.quiz-result-links { display: flex; gap: 12px; flex-wrap: wrap; }
.qrl-primary {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--coral); color: white; padding: 10px 20px;
  border-radius: 6px; font-size: 13px; font-weight: 500; text-decoration: none;
  transition: background 0.2s;
}
.qrl-primary:hover { background: var(--coral-lt); }
.qrl-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: var(--muted-dark); padding: 10px 20px;
  border-radius: 6px; border: 0.5px solid rgba(255,255,255,0.15);
  font-size: 13px; font-weight: 300; text-decoration: none; transition: all 0.2s;
}
.qrl-ghost:hover { color: white; border-color: rgba(255,255,255,0.35); }

/* ── 3 OFFRES DÉTAILLÉES ──────────────────────────── */
.offres       { background: var(--night); padding: 96px 56px; }
.offres-inner { max-width: var(--offre-max); margin: 0 auto; }
.offres-header { margin-bottom: 64px; }

.offres-stack { display: flex; flex-direction: column; gap: 24px; }

.offre-card {
  background: var(--night-2); border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 28px; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.offre-card:hover { border-color: rgba(224,90,58,0.28); transform: translateY(-2px); }

.offre-inner {
  display: grid; grid-template-columns: 72px 1fr 320px; gap: 0;
}
.offre-inner > * { min-width: 0; }

.offre-accent {
  background: rgba(224,90,58,0.08);
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-start; padding-top: 36px; gap: 8px;
}
.offre-accent-num  { font-family: var(--serif); font-size: 28px; font-weight: 500; color: rgba(224,90,58,0.4); line-height: 1; }
.offre-accent-line { width: 1px; height: 40px; background: rgba(224,90,58,0.15); }

.offre-main { padding: 40px 40px 40px 32px; border-right: 0.5px solid rgba(255,255,255,0.06); }
.offre-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}
.offre-tag::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--coral); }
.offre-title    { font-family: var(--serif); font-size: 30px; font-weight: 500; color: white; line-height: 1.15; margin-bottom: 12px; }
.offre-subtitle { font-size: 15px; font-weight: 300; color: var(--muted-dark); line-height: 1.65; margin-bottom: 24px; max-width: 520px; }

.offre-pour       { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.offre-pour-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 2px; }
.offre-pour-items { display: flex; flex-wrap: wrap; gap: 8px; }
.pour-pill {
  background: rgba(255,255,255,0.06); border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 40px; padding: 5px 13px;
  font-size: 12.5px; font-weight: 300; color: var(--muted-dark);
}
.offre-points { display: flex; flex-direction: column; gap: 8px; }
.offre-point {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; font-weight: 300; color: var(--muted-dark); line-height: 1.45;
}
.offre-point::before {
  content: ''; width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='6' fill='%23E05A3A' opacity='.15'/%3E%3Cpath d='M4.5 7l2 2 3-3' stroke='%23E05A3A' stroke-width='1.3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.offre-aside { padding: 40px 32px; display: flex; flex-direction: column; gap: 20px; }
.oab-label    { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 6px; }
.oab-value    { font-size: 13.5px; font-weight: 400; color: var(--on-dark); line-height: 1.4; }
.oab-value strong { font-weight: 500; color: white; }
.offre-aside-sep  { height: 0.5px; background: rgba(255,255,255,0.07); }
.offre-aside-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.oa-tag {
  background: rgba(255,255,255,0.06); border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 40px; padding: 4px 11px;
  font-size: 12px; color: var(--muted-dark);
}
.offre-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--coral); color: white; padding: 12px;
  border-radius: 6px; font-size: 13.5px; font-weight: 500;
  text-decoration: none; transition: background 0.2s; margin-top: 8px;
}
.offre-btn:hover { background: var(--coral-lt); }
.offre-btn-ghost {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--muted-dark); padding: 11px;
  border-radius: 6px; border: 0.5px solid rgba(255,255,255,0.12);
  font-size: 13.5px; font-weight: 300; text-decoration: none; transition: all 0.2s;
}
.offre-btn-ghost:hover { color: white; border-color: rgba(255,255,255,0.3); }

/* ── COMPARATIF ───────────────────────────────────── */
.comparatif       { background: var(--cream-2); padding: 96px 56px; }
.comparatif-inner { max-width: var(--offre-max); margin: 0 auto; }
.comp-header      { margin-bottom: 52px; }

.comp-table {
  background: white; border-radius: 28px; overflow: hidden;
  border: 0.5px solid rgba(26,31,46,0.08);
}
.comp-thead {
  display: grid; grid-template-columns: 220px repeat(3, 1fr);
  background: var(--night); border-bottom: 0.5px solid rgba(255,255,255,0.07);
}
.comp-th {
  padding: 20px; font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-dark);
}
.comp-th:first-child  { color: rgba(255,255,255,0.2); }
.comp-th--active      { color: var(--coral) !important; position: relative; }
.comp-th--active::after { content: ''; position: absolute; bottom: 0; left: 20px; right: 20px; height: 2px; background: var(--coral); }

.comp-row {
  display: grid; grid-template-columns: 220px repeat(3, 1fr);
  border-bottom: 0.5px solid rgba(26,31,46,0.07); transition: background 0.15s;
}
.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: rgba(224,90,58,0.02); }
.comp-cell {
  padding: 16px 20px; font-size: 13.5px; font-weight: 300; color: var(--muted-light);
  display: flex; align-items: center;
  border-right: 0.5px solid rgba(26,31,46,0.05);
}
.comp-cell:last-child  { border-right: none; }
.comp-cell:first-child { font-weight: 400; color: var(--on-light); font-size: 13px; }
.comp-check {
  width: 20px; height: 20px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='%23E05A3A' opacity='.12'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%23E05A3A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.comp-dash {
  width: 20px; height: 20px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='rgba(26,31,46,0.06)'/%3E%3Cpath d='M7 10h6' stroke='rgba(26,31,46,0.25)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.comp-partial {
  width: 20px; height: 20px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='%23E05A3A' opacity='.07'/%3E%3Cpath d='M7 10h6' stroke='%23E05A3A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.comp-legend { margin-top: 16px; font-size: 12px; color: var(--muted-light); display: flex; gap: 20px; flex-wrap: wrap; }
.comp-legend-item { display: flex; align-items: center; gap: 6px; }
.comp-legend-icon { width: 14px; height: 14px; flex-shrink: 0; }

/* ── SPÉCIALITÉ PE ────────────────────────────────── */
.spe       { background: white; padding: 96px 56px; }
.spe-inner {
  max-width: var(--offre-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.spe-inner > * { min-width: 0; }
.spe-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--coral); text-decoration: none;
  transition: gap 0.2s;
}
.spe-link:hover { gap: 12px; }

.spe-right { display: flex; flex-direction: column; gap: 14px; }
.spe-card {
  background: var(--cream); border-radius: 20px; padding: 24px 26px;
  border: 0.5px solid rgba(26,31,46,0.08);
  display: flex; gap: 16px; align-items: flex-start;
  text-decoration: none; transition: border-color 0.2s, transform 0.15s;
}
.spe-card:hover { border-color: rgba(224,90,58,0.22); transform: translateY(-2px); }
.spe-card-icon {
  width: 40px; height: 40px; border-radius: 6px;
  background: rgba(224,90,58,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.spe-card-icon svg { width: 18px; height: 18px; color: var(--coral); }
.spe-card-tag   { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 4px; }
.spe-card-title { font-size: 14.5px; font-weight: 500; color: var(--on-light); margin-bottom: 3px; }
.spe-card-sub   { font-size: 12.5px; font-weight: 300; color: var(--muted-light); }

/* ── CTA FINAL ────────────────────────────────────── */
.cta-final { background: var(--coral); padding: 96px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 110%, rgba(0,0,0,0.18) 0%, transparent 70%); }
.cta-inner-offre { position: relative; max-width: 720px; margin: 0 auto; }
.cta-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.cta-title   { font-family: var(--serif); font-size: clamp(38px, 5vw, 60px); font-weight: 500; color: white; line-height: 1.1; margin-bottom: 18px; }
.cta-lead    { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 40px; }
.cta-dual    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.cta-dual > * { min-width: 0; }
.cta-box {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px; padding: 26px 24px; text-align: left;
  text-decoration: none; color: white;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.cta-box:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.cta-box-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.cta-box-title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: white; margin-bottom: 6px; }
.cta-box-desc  { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.68); margin-bottom: 14px; line-height: 1.5; }
.cta-box-link  { font-size: 13px; font-weight: 500; color: white; display: flex; align-items: center; gap: 5px; }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ── ANIMATION ────────────────────────────────────── */
@keyframes offreFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .offre-inner        { grid-template-columns: 56px 1fr; }
  .offre-aside        { display: none; }
  .offre-hero-formats { grid-template-columns: 1fr; }
  .spe-inner          { grid-template-columns: 1fr; }
  .comp-thead, .comp-row { grid-template-columns: 180px repeat(3, 1fr); }
  .offre-hero, .choix, .offres, .comparatif, .spe, .cta-final { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 768px) {
  .comp-thead, .comp-row    { grid-template-columns: 130px repeat(3, 1fr); }
  .comp-cell                { padding: 12px; font-size: 12px; }
  .comp-th                  { padding: 12px; }
  .cta-dual                 { grid-template-columns: 1fr; }
  .offre-inner              { grid-template-columns: 1fr; }
  .offre-accent             { display: none; }
  .offre-main               { padding: 28px; }
  .offre-hero, .choix, .offres, .comparatif, .spe, .cta-final { padding-left: 24px; padding-right: 24px; }
}
