/* =====================================================
   LobbyLink — Wizard RDV (inspiré architecture Techline)
   ===================================================== */

.rdv-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 992px) {
  .rdv-layout {
    grid-template-columns: 1fr;
  }
}

.ll-wizard {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--ll-gray-100);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.ll-wizard::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--grad-gold);
}

.ll-wizard__steps {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.ll-wizard__step-dot {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: var(--ll-gray-100);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}

.ll-wizard__step-dot.is-active,
.ll-wizard__step-dot.is-done {
  background: var(--grad-gold);
}

.ll-wizard__step-dot.is-active {
  transform: scaleY(1.35);
}

.ll-wizard__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ll-wizard__meta span {
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ll-teal);
}

.ll-wizard__title {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.55rem);
  margin-bottom: 1.15rem;
}

.ll-wizard__options {
  display: grid;
  gap: 0.75rem;
}

.ll-wizard__option {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border: 1.5px solid var(--ll-gray-100);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease),
              transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  background: #fff;
}

.ll-wizard__option:hover {
  border-color: rgba(0, 149, 171, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.ll-wizard__option:has(input:checked) {
  border-color: var(--ll-teal);
  background: rgba(0, 149, 171, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 149, 171, 0.12);
}

.ll-wizard__option input {
  margin-top: 0.25rem;
  accent-color: var(--ll-teal);
}

.ll-wizard__option-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 149, 171, 0.1);
  color: var(--ll-teal);
  flex-shrink: 0;
}

.ll-wizard__option strong {
  display: block;
  color: var(--ll-navy);
  font-family: var(--ff-display);
  font-size: var(--fs-sm);
  margin-bottom: 0.15rem;
}

.ll-wizard__option small {
  color: var(--ll-gray-500);
  font-size: var(--fs-xs);
  line-height: 1.45;
}

.ll-wizard__nav {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.ll-wizard__summary {
  background: var(--ll-gray-50);
  border: 1px solid var(--ll-gray-100);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  color: var(--ll-gray-700);
  font-size: var(--fs-sm);
  line-height: 1.7;
  white-space: pre-wrap;
}

.ll-wizard__slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (max-width: 520px) {
  .ll-wizard__slots {
    grid-template-columns: 1fr;
  }
}

.ll-wizard__slot {
  text-align: center;
  padding: 0.85rem;
  border: 1.5px solid var(--ll-gray-100);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: all 0.25s var(--ease);
  background: #fff;
}

.ll-wizard__slot:hover,
.ll-wizard__slot:has(input:checked) {
  border-color: var(--ll-teal);
  background: rgba(0, 149, 171, 0.08);
  color: var(--ll-teal-dark);
}

.ll-wizard__slot input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rdv-aside {
  display: grid;
  gap: 1rem;
}

.rdv-aside__card {
  background: var(--grad-navy);
  color: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.rdv-aside__card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 149, 171, 0.35), transparent 70%);
}

.rdv-aside__card h3 {
  color: #fff;
  font-size: var(--fs-lg);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.rdv-aside__card p,
.rdv-aside__card li {
  position: relative;
  z-index: 1;
  font-size: var(--fs-sm);
}

.rdv-aside__card ul {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.rdv-aside__card li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.rdv-aside__card i {
  color: var(--ll-teal-soft);
  margin-top: 0.2rem;
}

.rdv-info-card {
  background: #fff;
  border: 1px solid var(--ll-gray-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.rdv-info-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--ll-gray-100);
}

.rdv-info-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.rdv-info-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 149, 171, 0.1);
  color: var(--ll-teal);
  flex-shrink: 0;
}

.rdv-info-item__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ll-teal);
  margin-bottom: 0.2rem;
}

.rdv-info-item__value {
  font-size: var(--fs-sm);
  color: var(--ll-navy);
  font-weight: 500;
}

.rdv-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .rdv-benefits {
    grid-template-columns: 1fr;
  }
}

.btn-ll--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
}

.btn-ll--whatsapp:hover {
  color: #fff;
  filter: brightness(1.05);
}

.ll-wizard [hidden] {
  display: none !important;
}

.rdv-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.rdv-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.88);
}
