* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(140, 214, 221, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 50%, #f6f9fb 100%);
  color: #18424c;
}

.agenda-page {
  position: relative;
  overflow: hidden;
}

.agenda-page .container {
  max-width: calc(100% - 120px);
  padding-left: 0;
  padding-right: 0;
}

.agenda-shell {
  padding: 62px 0 64px;
}

.agenda-heading {
  text-align: center;
}

.agenda-heading h1 {
  margin: 0;
  color: #006176;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.agenda-heading p {
  margin: 8px 0 0;
  color: #a1a4ab;
  font-size: 1.15rem;
  line-height: 1.5;
}

.agenda-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  max-width: 920px;
  margin: 44px auto 36px;
}

.agenda-stepper-line {
  position: absolute;
  top: 50%;
  left: 6%;
  right: 6%;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #e7ebf1;
}

.agenda-step {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.agenda-step span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff2f6;
  color: #c7ccd5;
  font-weight: 800;
  box-shadow: 0 0 0 10px rgba(239, 242, 246, 0.55);
}

.agenda-step.is-active span {
  background: #7caec0;
  color: #ffffff;
  box-shadow: 0 0 0 8px rgba(124, 174, 192, 0.3);
}

.agenda-card {
  border-radius: 10px;
  border: 1px solid #dde4ec;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(51, 70, 93, 0.08);
  overflow: hidden;
}

.agenda-card-body {
  padding: 24px 26px 46px;
}

.agenda-card-body h2 {
  margin: 0 0 44px;
  color: #0d6d93;
  font-size: 1.1rem;
  font-weight: 500;
}

.agenda-form {
  max-width: 760px;
  margin: 0 auto;
}

.agenda-form .row + .row {
  margin-top: 18px;
}

.form-label {
  margin-bottom: 10px;
  color: #454c55;
  font-size: 1rem;
  font-weight: 500;
}

.agenda-input,
.agenda-select {
  min-height: 42px;
  border: 1px solid #edf1f5;
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  color: #495463;
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(35, 49, 66, 0.03);
}

.agenda-input::placeholder,
.agenda-select {
  color: #a7aeb8;
}

.agenda-input:focus,
.agenda-select:focus {
  border-color: #8eb5c4;
  box-shadow: 0 0 0 0.18rem rgba(124, 174, 192, 0.2);
}

.agenda-passport-btn {
  min-width: 142px;
  min-height: 42px;
  border: 1px solid #d9e0e8;
  border-radius: 10px;
  background: #ffffff;
  color: #434e5a;
  padding: 0.65rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 16px rgba(35, 49, 66, 0.03);
}

.agenda-passport-btn:hover {
  background: #f8fbfd;
  border-color: #b8d4df;
  color: #2b5867;
}

.agenda-card-footer {
  display: flex;
  justify-content: flex-end;
  padding: 12px 24px;
  background: #f5f7fa;
  border-top: 1px solid #edf1f5;
}

.agenda-continue-btn {
  min-width: 122px;
  min-height: 38px;
  border: none;
  border-radius: 6px;
  background: #8dbbcc;
  color: #ffffff;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: none;
}

.agenda-continue-btn:hover {
  background: #77aabb;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .agenda-page .container {
    max-width: calc(100% - 48px);
  }

  .agenda-card-body {
    padding: 22px 20px 34px;
  }

  .agenda-card-body h2 {
    margin-bottom: 28px;
  }
}

@media (max-width: 767.98px) {
  .agenda-shell {
    padding-top: 46px;
  }

  .agenda-page .container {
    max-width: calc(100% - 28px);
  }

  .agenda-stepper {
    margin-top: 34px;
    margin-bottom: 26px;
  }

  .agenda-step span {
    width: 34px;
    height: 34px;
    box-shadow: 0 0 0 6px rgba(239, 242, 246, 0.55);
  }

  .agenda-step.is-active span {
    box-shadow: 0 0 0 6px rgba(124, 174, 192, 0.3);
  }

  .agenda-passport-btn,
  .agenda-continue-btn {
    width: 100%;
  }

  .agenda-card-footer {
    padding: 14px 18px 18px;
  }
}
