/* --- Lead Gen Wizard & CRO 2026 --- */
.wizard-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  color: var(--dark);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wizard-card-header {
  margin-bottom: 1.5rem;
}

.wizard-badge {
  display: inline-block;
  background-color: var(--brand-light);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.wizard-card-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}

.wizard-card-header p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Progress */
.wizard-progress {
  height: 5px;
  background-color: #edf2f7;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.wizard-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), #e87c3e);
  width: 33%;
  transition: width 0.3s ease;
}

/* Steps */
.wizard-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.wizard-step.active {
  display: block;
}

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

.wizard-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

/* Radio Options Grid */
.service-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.radio-card {
  position: relative;
  cursor: pointer;
}

.radio-card input {
  position: absolute;
  opacity: 0;
}

.radio-card-content {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 0.75rem;
  text-align: center;
  transition: all 0.2s ease;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.radio-card-content span.icon {
  font-size: 1.4rem;
}

.radio-card-content span.label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.radio-card input:checked + .radio-card-content {
  border-color: var(--brand);
  background-color: var(--brand-light);
  color: var(--brand);
  box-shadow: 0 4px 10px rgba(217, 101, 39, 0.15);
}

.radio-card input:checked + .radio-card-content span.label {
  color: var(--brand);
}

/* Form Fields */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--dark);
  background-color: #f8fafc;
  transition: border-color 0.2s, background-color 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--brand);
  background-color: #ffffff;
}

/* Buttons */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-prev {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--muted);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-prev:hover {
  background-color: #f1f5f9;
  color: var(--dark);
}

.btn-next, .btn-submit-wizard {
  flex-grow: 1;
  background-color: var(--brand);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(217, 101, 39, 0.25);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-next:hover, .btn-submit-wizard:hover {
  background-color: var(--brand-hover);
  transform: translateY(-1px);
}

.wizard-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.wizard-guarantee span {
  color: var(--success);
  font-weight: 700;
}

/* --- Sticky Mobile Call Bar --- */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(15, 38, 62, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.65rem 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-mobile-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.75rem;
}

.sticky-btn-call {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.sticky-btn-devis {
  background-color: var(--brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}

@media (max-width: 768px) {
  .sticky-mobile-bar {
    display: block;
  }
  body {
    padding-bottom: 60px;
  }
}
