:root {
  --pink: #E91E8C;
  --orange: #F97316;
  --grad: linear-gradient(135deg, #E91E8C 0%, #F97316 100%);
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: var(--grad);
}

body {
  background: linear-gradient(160deg, #fff9fb 0%, #fff4f0 40%, #f8f9ff 100%);
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp .55s cubic-bezier(.22,.68,0,1.1) both;
}

.delay-1 {
  animation-delay: .08s;
}

.delay-2 {
  animation-delay: .16s;
}

/* Accordéon FAQ */
.faq-item {
  border-bottom: 1px solid #f1f5f9;
  transition: background .2s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-btn {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: background .15s ease;
}

.faq-btn:hover {
  background: rgba(233,30,140,.03);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .3s ease;
}

.faq-item.open .faq-chevron {
  background: var(--grad);
  transform: rotate(180deg);
}

.faq-chevron svg {
  transition: stroke .2s;
}

.faq-item.open .faq-chevron svg {
  stroke: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease, opacity .3s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  opacity: 1;
}

/* Badge catégorie */
.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(233,30,140,.08);
  color: #E91E8C;
  border: 1px solid rgba(233,30,140,.15);
  margin-bottom: 16px;
}

/* Scroll reveal */
.sr {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}

.sr.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Déco */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.deco {
  animation: float 8s ease-in-out infinite;
}
