/* Cartes de témoignages */
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.testi-card:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
}

.testi-card.accent {
  border-left: 3px solid var(--orange);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.2;
  line-height: 1;
  font-style: italic;
}

.testi-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testi-author {
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 500;
}

.testi-role {
  font-size: 0.75rem;
  color: var(--orange);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.05em;
}

/* Cartes d'offres (tarifs) */
.offer {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.25s;
}

.offer:last-child {
  border-right: none;
}

.offer:hover {
  background: rgba(255, 255, 255, 0.02);
}

.offer.production-offer.featured {
  background: rgba(126, 200, 227, 0.05);
  outline: 2.5px solid #7EC8E3;
  outline-offset: -2.5px;
  position: relative;
}

.offer.production-offer.featured::before {
  content: '★ Recommandé';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #7EC8E3;
  color: #1C2630;
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 0 0 4px 4px;
  font-weight: 500;
}

.offer.formation-offer.featured {
  background: rgba(212, 98, 42, 0.05);
  outline: 2.5px solid var(--orange);
  outline-offset: -2.5px;
  position: relative;
}

.offer.formation-offer.featured::before {
  content: '★ Recommandé';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 0 0 4px 4px;
  font-weight: 500;
}

.offer-badge {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: block;
}

.offer-badge.info {
  color: #7EC8E3;
}

.offer.formation-offer.featured .offer-badge,
.offer.production-offer.featured .offer-badge {
  margin-top: 0.75rem;
}

.offer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.offer-tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.5;
  min-height: 2.5rem;
}

.offer-price-wrap {
  margin-bottom: 0.3rem;
}

.offer-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.offer.formation-offer .offer-price {
  color: var(--orange);
}

.offer.production-offer .offer-price {
  color: #7EC8E3;
}

.offer-unit {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.offer-duration {
  font-size: 0.74rem;
  color: #6ECB8A;
  margin-bottom: 1.25rem;
  min-height: 1rem;
}

.offer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
}

.offer-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.offer-feats li {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.offer-feats li::before {
  content: '-';
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.offer.formation-offer .offer-feats li::before {
  color: var(--orange);
}

.offer.production-offer .offer-feats li::before {
  color: #7EC8E3;
}

/* Cartes de boosters */
.booster {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}

.booster:hover {
  border-color: rgba(126, 200, 227, 0.4);
  transform: translateY(-2px);
}

.booster.best::after {
  content: 'Meilleur tarif';
  position: absolute;
  top: -9px;
  right: 1rem;
  background: #6ECB8A;
  color: #1C2630;
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  font-weight: 500;
}

.booster-name {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.booster-hours {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.booster-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #7EC8E3;
  margin-bottom: 0.3rem;
}

.booster-rate {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Cartes de profil (Pour qui) */
.profile {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s;
}

.profile:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
}

.profile:hover .profile-icon {
  transform: scale(1.05);
}

.profile-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
}

.profile-icon svg {
  width: 24px;
  height: 24px;
}

.profile h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.profile-sub {
  font-size: 0.85rem;
  color: var(--orange);
  font-style: italic;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.profile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.profile li {
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
  font-weight: 300;
}

.profile li::before {
  content: '-';
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-weight: 500;
}

/* Encart (info boxes) */
.encart {
  background: var(--bg-warm);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: 300;
}

.encart strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: 0.4rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
}

.encart.cool {
  background: var(--bg-cool);
  border-left-color: var(--blue);
}

/* Placeholder boxes (pour le configurateur) */
.placeholder-box {
  background: var(--bg-2);
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.25rem 0;
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  color: var(--text-mute);
  line-height: 1.9;
}

.placeholder-box .ph-label {
  display: block;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.placeholder-box ul {
  list-style: none;
  padding: 0;
}

.placeholder-box li {
  padding-left: 1.2rem;
  position: relative;
}

.placeholder-box li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--blue);
}

/* Reco box (résultat configurateur) */
.reco {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  animation: fade 0.4s ease;
}

.reco-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.reco-tag.cool {
  color: var(--blue);
}

.reco h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.reco h2 em {
  font-style: italic;
  color: var(--orange);
}
