﻿/* ===== RÉCLAMATION ACTIVE IN NAV ===== */
.btn-reclamation--active {
  color: var(--red);
  font-weight: 600;
}

/* ===== HERO ===== */
.rec-hero {
  background: var(--navy-grad);
  padding: 80px 0 96px;
  text-align: center;
}
.rec-hero__inner { max-width: 860px; margin: 0 auto; }
.rec-hero .section-eyebrow { margin-bottom: 20px; }

.rec-hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.rec-hero__title strong { font-weight: 800; }

.rec-hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ===== STEPS ===== */
.rec-steps {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.rec-steps__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.rec-step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  animation: recStepIn 0.5s ease both;
}
.rec-step:nth-child(3) { animation-delay: 0.12s; }
.rec-step:nth-child(5) { animation-delay: 0.24s; }

@keyframes recStepIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.rec-step__icon {
  width: 56px;
  height: 56px;
  background: rgba(192,57,43,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.rec-step__icon svg { width: 26px; height: 26px; }

.rec-step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.rec-step__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.rec-step__separator {
  display: flex;
  align-items: center;
  padding-top: 28px;
  color: #d1d5db;
  flex-shrink: 0;
}

/* ===== FORM SECTION ===== */
.rec-form-section {
  background: #f4f6f9;
  padding: 72px 0 80px;
}

.rec-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  max-width: 680px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow);
  animation: recStepIn 0.5s ease both;
}

.rec-form-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.rec-form-card__sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.rec-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rec-form__submit {
  margin-top: 4px;
  padding: 15px 28px;
  font-size: 15px;
  border-radius: 10px;
}

/* ===== MÉDIATEUR ===== */
.mediateur {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  animation: recStepIn 0.5s 0.1s ease both;
}

.mediateur svg { flex-shrink: 0; margin-top: 2px; }

.mediateur__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.mediateur__link {
  color: var(--red);
  font-weight: 500;
  transition: opacity 0.15s;
}
.mediateur__link:hover { opacity: 0.75; }

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  .rec-form-card { padding: 28px 20px; }
  .rec-step__separator { display: none; }
  .rec-steps__grid { flex-direction: column; align-items: center; gap: 32px; }
  .rec-hero__subtitle br { display: none; }
}
