.rdv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: #fbd784;
  color: #0b1d26;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(11, 29, 38, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.rdv-button:hover {
  background: #ffe29f;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(11, 29, 38, 0.24);
}

.rdv-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.rdv-button--nav {
  margin-left: 0.25rem;
}

.rdv-button--floating {
  position: fixed;
  left: 50%;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 120;
  min-width: 0;
  padding: 0.5rem 0.85rem;
}

.rdv-button--floating:hover {
  transform: translateX(-50%) translateY(-1px);
}

@media (min-width: 769px) {
  .rdv-button--floating {
    display: none;
  }
}

@media (max-width: 768px) {
  body.has-mobile-rdv-cta {
    padding-bottom: 5.75rem;
  }

  .rdv-button--nav {
    display: none !important;
  }
}

.rdv-page .hero {
  min-height: 56vh;
  background-image: none !important;
}

.rdv-page .hero::before {
  background: linear-gradient(
    to bottom,
    rgba(11, 29, 38, 0.25),
    rgba(11, 29, 38, 0.94)
  );
}

.rdv-page .hero-content {
  max-width: 760px;
}

.rdv-page .hero-subtitle {
  max-width: 640px;
}

.rdv-page .rdv-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.rdv-page .rdv-panel h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.rdv-page .rdv-panel p:last-child {
  margin-bottom: 0;
}

.rdv-page .rdv-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.rdv-page .rdv-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.25rem;
}

.rdv-page .rdv-step strong {
  display: block;
  margin-bottom: 0.6rem;
  color: #fbd784;
  letter-spacing: 0.04em;
}

.rdv-page .rdv-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.rdv-page .rdv-detail {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.25rem;
}

.rdv-page .rdv-detail strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #fbd784;
}

.rdv-page .cta .rdv-button {
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .rdv-page .rdv-steps,
  .rdv-page .rdv-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .rdv-page .rdv-panel {
    padding: 1.4rem;
    border-radius: 20px;
  }
}
