/* =========================
   TARIFS
   ========================= */

.pricing-page{
  padding: 12px 0 90px;
}

/* HERO */
.pricing-hero{
  padding: 26px 0 18px;
}

.pricing-hero-inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
}

.pricing-kicker{
  color: rgba(255,255,255,.62);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 10px;
  margin-bottom: 6px;
}

.pricing-title{
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.1;
}

.pricing-sub{
  margin: 0;
  color: rgba(255,255,255,.70);
  line-height: 1.65;
  max-width: 62ch;
  font-size: 14px;
}

.pricing-hero-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 10px;
  transition: transform .12s ease, background .18s ease, border-color .18s ease;
}

.pricing-hero-cta:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.26);
}

/* PACKS */
.pricing-packs{
  padding-top: 16px;
}

.packs-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.pack{
  grid-column: span 4;
  position: relative;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  padding: 18px;
}

.pack.is-featured{
  border-color: rgba(138,161,89,.55);
  background: rgba(138,161,89,.08);
}

.pack-badge{
  position:absolute;
  top: 12px;
  right: 12px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(138,161,89,.65);
  background: rgba(138,161,89,.16);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 10px;
  display:flex;
  align-items:center;
}

.pack-head{
  padding-right: 86px; /* place pour le badge */
}

.pack-name{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: .01em;
}

.pack-price{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .01em;
  margin-bottom: 6px;
}

.pack-tag{
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  font-size: 13px;
}

.pack-list{
  margin: 14px 0 16px;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.6;
}

.pack-list li{
  padding-left: 18px;
  position: relative;
  margin: 8px 0;
}

.pack-list li::before{
  content: "✓";
  position:absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.pack-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 11px;
  transition: transform .12s ease, background .18s ease, border-color .18s ease;
}

.pack-cta:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.24);
}

/* OPTIONS */
.pricing-options{
  padding-top: 34px;
}

.options-head{
  margin-bottom: 14px;
}

.options-title{
  margin: 0 0 6px;
  font-size: 20px;
}

.options-sub{
  margin: 0;
  color: rgba(255,255,255,.70);
  font-size: 13px;
  line-height: 1.6;
}

.options-grid{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  overflow:hidden;
}

.option-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.option-row:first-child{ border-top: 0; }

.option-name{
  color: rgba(255,255,255,.86);
  font-weight: 700;
}

.option-price{
  color: rgba(255,255,255,.75);
  font-weight: 900;
}

/* FAQ */
.pricing-faq{
  padding-top: 34px;
}

.faq-head{
  margin-bottom: 14px;
}

.faq-title{
  margin: 0 0 6px;
  font-size: 20px;
}

.faq-sub{
  margin: 0;
  color: rgba(255,255,255,.70);
  font-size: 13px;
  line-height: 1.6;
}

.faq-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.faq-item{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 14px 16px;
}

.faq-item summary{
  cursor:pointer;
  font-weight: 900;
  color: rgba(255,255,255,.88);
  letter-spacing: .01em;
}

.faq-item p{
  margin: 10px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  font-size: 14px;
}

.faq-cta{
  margin-top: 16px;
  display:flex;
  align-items:center;
  gap: 14px;
}

.faq-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  color: #0b0b0f;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 11px;
  transition: transform .12s ease, opacity .12s ease;
}

.faq-btn:hover{ transform: translateY(-1px); }
.faq-hint{ color: rgba(255,255,255,.62); font-size: 13px; }

/* Responsive */
@media (max-width: 900px){
  .pricing-hero-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .pack{
    grid-column: span 12;
  }

  .faq-grid{
    grid-template-columns: 1fr;
  }
}