.dc-hero {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.dc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,255,255,0.05)"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="40" r="1.5"/><circle cx="40" cy="80" r="1"/><circle cx="70" cy="20" r="1.5"/></svg>');
}

.dc-hero-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: .5rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.dc-hero-subtitle {
  font-size: 1rem;
  opacity: .9;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.dc-content {
  padding: 2rem;
  background: #fff; /* ← IMPORTANT */
}
@media (max-width: 768px) {
  .dc-hero {
    padding: 2rem 1.5rem;
  }
  
  .dc-content {
    padding: 1.5rem;
  }
}

.dc-progress {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  margin-top: 1.5rem;
  border: 1px solid var(--border-light);
  margin: 2rem 1rem 1rem 1rem; /* ← AJOUT: haut droite bas gauche */
}

.dc-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.dc-progress-bar {
  height: 8px;
  background: var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.dc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-red), var(--success));
  border-radius: 4px;
  transition: width .5s ease;
}

.dc-progress-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

.dc-step {
  padding: 1rem;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  text-align: center;
  font-size: .9rem;
  font-weight: 500;
  transition: all .3s ease;
}

.dc-step--done {
  border-color: var(--success);
  background: rgba(16, 185, 129, 0.05);
  color: var(--success);
}

.success-message {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.12) 100%);
  border: 2px solid rgba(16, 185, 129, 0.25);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
  animation: fadeInUp 0.6s ease-out;
}

.success-message::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

.success-message h3 {
  color: #059669;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.success-message p {
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.success-message p strong {
  color: #111827;
  font-weight: 600;
}

.success-message__name {
  color: #6b7280;
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 0;
  margin-bottom: 1rem;
}

.success-message__name strong {
  font-style: italic;
}

.success-message__lead {
  margin-bottom: 0;
}

.dc-actions {
  text-align: center;
  margin-bottom: 2rem;
}

/* Lien site public Delimart (header rouge) */
.dc-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.dc-link-delimart-home {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.dc-link-delimart-home:hover {
  color: #fff;
  opacity: 0.92;
}

.dc-actions--stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.dc-actions--stack .dc-btn-delimart-home {
  justify-content: center;
  text-align: center;
}

.dc-actions--stack .dc-btn--vcard {
  width: 100%;
  justify-content: center;
}

.dc-btn--vcard {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fff;
  color: #c02923;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.95rem 1.5rem;
  border-radius: 14px;
  text-decoration: none;
  border: 3px solid #c02923;
  outline: 2px solid rgba(192, 41, 35, 0.35);
  outline-offset: 2px;
  box-shadow:
    0 0 0 1px #c02923,
    0 4px 14px rgba(192, 41, 35, 0.2);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 56px;
}

.dc-btn--vcard:hover {
  background: #c02923;
  color: #fff;
  outline-color: rgba(192, 41, 35, 0.55);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px #9a211d,
    0 6px 20px rgba(192, 41, 35, 0.35);
}

.dc-btn--vcard:active {
  transform: translateY(0);
}

.dc-btn--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-height: 56px;
  position: relative;
  overflow: hidden;
}

.dc-btn--whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.dc-btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.dc-btn--whatsapp:hover::before {
  left: 100%;
}

.dc-btn--whatsapp:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
  .success-message {
    padding: 2rem 1.25rem;
    border-radius: 16px;
  }

  .success-message h3 {
    font-size: 1.5rem;
  }

  .dc-btn--whatsapp {
    width: 100%;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  .dc-actions--stack .dc-btn-delimart-home {
    width: 100%;
  }

  .dc-header-right {
    align-items: flex-start;
    width: 100%;
    margin-top: 4px;
  }
}
.dc-footer-disclaimer {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
  margin: 2rem 1rem 3rem 1rem; /* ← MÊMES MARGES LATÉRALES */
  text-align: center;
}

.dc-footer-disclaimer a {
  color: #b32323;
  font-weight: 600;
  text-decoration: none;
}

.dc-footer-disclaimer a:hover {
  text-decoration: underline;
}

@media (min-width: 769px) {
  .dc-progress {
    margin: 2.5rem 1.5rem 1.5rem 1.5rem; /* ← Plus d'espace sur desktop */
  }
}

@media (max-width: 768px) {
  .dc-progress {
    margin: 1.5rem 0.75rem 1rem 0.75rem; /* ← Espace réduit mais présent */
    padding: 1.25rem; /* ← Padding légèrement réduit */
  }
}