.demo-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #FFF5F5, #FFF0E8);
  text-align: center;
}
.demo-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1D3557;
  margin-bottom: 20px;
  line-height: 1.2;
}
.demo-hero .text-red { color: #E63946; }
.demo-hero p {
  color: #555;
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.demo-section {
  padding: 80px 0 100px;
  background: #F8F9FA;
}
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}

.demo-pitch h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}
.demo-pitch > p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.demo-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.demo-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 1.02rem;
  line-height: 1.6;
}
.demo-steps li:last-child { border-bottom: none; }
.demo-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #E63946;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.demo-steps strong { color: #1D3557; }

.demo-reassurance {
  margin-top: 36px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.demo-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1D3557;
  background: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.demo-badge span { font-size: 1.1rem; }

.demo-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.demo-form-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}
.demo-form-card .form-subtitle {
  text-align: center;
  color: #888;
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.demo-form-card .form-group { margin-bottom: 16px; }
.demo-form-card .form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  display: block;
}
.demo-form-card .form-group input,
.demo-form-card .form-group select,
.demo-form-card .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
  background: #fff;
}
.demo-form-card .form-group input:focus,
.demo-form-card .form-group select:focus,
.demo-form-card .form-group textarea:focus {
  border-color: #E63946;
}
.demo-form-card .form-group textarea { resize: vertical; }
.demo-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.demo-form-card .btn-submit {
  width: 100%;
  margin-top: 8px;
}

.demo-success {
  text-align: center;
  padding: 40px 0;
  display: none;
}
.demo-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.demo-success h3 { font-size: 1.5rem; margin-bottom: 10px; color: #1D3557; }
.demo-success p { color: #666; font-size: 1.05rem; line-height: 1.7; }

/* ===== SCHEDULER ===== */
.btn-back {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  color: #888;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.15s;
  font-family: inherit;
}
.btn-back:hover { color: #1D3557; background: #f0f0f0; }

/* Calendar */
.cal {
  background: linear-gradient(135deg, #FFF5F5, #FFF0E8);
  border-radius: 16px;
  padding: 28px;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cal-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1D3557;
}
.cal-nav {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #1D3557;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.15s;
}
.cal-nav:hover { background: rgba(0,0,0,0.05); }
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}
.cal-weekdays span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1D3557;
  text-transform: uppercase;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.cal-day {
  padding: 10px 0;
  border-radius: 50%;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  color: #1D3557;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.cal-day:hover:not(.cal-day--disabled):not(.cal-day--empty) { background: rgba(230,57,70,0.1); }
.cal-day--selected {
  background: #E63946 !important;
  color: #fff !important;
  font-weight: 700;
}
.cal-day--today {
  border: 2px solid #E63946;
}
.cal-day--disabled {
  color: #ccc;
  cursor: default;
}
.cal-day--empty {
  cursor: default;
}

/* Time slots */
.timeslots {
  max-height: 280px;
  overflow-y: auto;
}
.timeslots-header {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1D3557;
  margin-bottom: 6px;
}
.timeslots-date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 16px;
}
.timeslot {
  display: block;
  width: 100%;
  padding: 14px;
  margin-bottom: 8px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  background: #fff;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  color: #1D3557;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.timeslot:hover {
  border-color: #E63946;
  background: #FFF5F5;
}
.timeslot--selected {
  background: #E63946 !important;
  color: #fff !important;
  border-color: #E63946 !important;
}
.timeslots-empty {
  color: #aaa;
  font-size: 0.95rem;
  text-align: center;
  padding: 40px 0;
}

.rdv-recap {
  display: inline-block;
  background: #FFF5F5;
  border: 1.5px solid #E63946;
  border-radius: 12px;
  padding: 16px 28px;
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1D3557;
}

.step-done-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.step-done-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1D3557;
}
.step-done-text {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
}
.step-scheduler-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .demo-hero { padding: 120px 0 50px; }
  .demo-hero h1 { font-size: 1.8rem; }
  .demo-hero p { font-size: 1rem; }
  .demo-section { padding: 50px 0 70px; }
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .demo-form-card { padding: 28px 20px; }
  .demo-form-card .form-row { grid-template-columns: 1fr; }
  .demo-reassurance { flex-direction: column; gap: 12px; }
  .cal { padding: 20px; }
}
@media (max-width: 600px) {
  .btn-nav { display: none; }
}
