.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.merci-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.merci-content {
  text-align: center;
  color: var(--white);
  max-width: 600px;
}
.merci-content h1 {
  color: var(--white);
}

.merci-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.merci-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.merci-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.merci-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.merci-actions .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn-white {
  background: white;
  color: #0277bd;
}
.btn-white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-outline:hover {
  background: white;
  color: #0277bd;
}
.merci-phone {
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
}

.hero-spacing {
  padding-top: var(--header-height);
}

.pluginPadding {
  padding-block: 80px;
}

@media (max-width: 1024px) {
  .pluginPadding {
    padding-block: 60px;
  }
}
